/* ===========================================================
   ANETE — moderní web
   Barvy a logo dle brandu, design 2025
   =========================================================== */

:root {
  --navy:      #00193a;
  --navy-900:  #001127;
  --navy-800:  #0a2148;
  --navy-700:  #14315f;
  --coral:     #e4572e;
  --coral-600: #cf491f;
  --white:     #ffffff;
  --bg-soft:   #f4f6f9;
  --bg-mute:   #eef1f6;
  --text:      #17233b;
  --muted:     #5b6577;
  --line:      rgba(0, 21, 52, .10);
  --card-sh:   0 18px 50px -22px rgba(0, 21, 52, .28);
  --card-sh-h: 0 26px 60px -20px rgba(0, 21, 52, .40);
  --radius:    20px;
  --radius-sm: 12px;
  --maxw:      1200px;
  --header-h:  76px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.12; color: var(--navy); font-weight: 700; letter-spacing: -.01em; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: "Poppins", sans-serif; font-weight: 600;
  text-transform: none; color: var(--navy);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  letter-spacing: -.02em; margin-bottom: 8px;
}
.eyebrow::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 34px;
  background-image: radial-gradient(var(--coral) 42%, transparent 46%);
  background-size: 6px 9px; background-repeat: repeat-y;
}
.eyebrow.on-dark { color: #fff; }

.dots-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Poppins", sans-serif; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
}
.dots-label::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--coral);
}

.section { padding: clamp(64px, 8vw, 118px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: 10px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 12px 24px -10px rgba(228, 87, 46, .7); }
.btn-primary:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 18px 30px -10px rgba(228, 87, 46, .8); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ======================= HEADER ======================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(0, 21, 52, .35); border-color: var(--line); }
.site-header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.brand { justify-self: start; }
.brand img { height: 57.6px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 48.96px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a.navlink {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .97rem; color: var(--navy);
  position: relative; padding: 6px 0;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; justify-self: end; }
.header-cta .btn { padding: 11px 22px; font-size: .92rem; }
/* menu na střed (grid 1fr auto 1fr); CTA vpravo. Mobilní CTA jen v roletce. */
.nav-cta-mobile { display: none; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--navy);
  transform: translate(-50%, -50%); transition: .3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

/* ======================= HERO ======================= */
.hero { position: relative; padding-top: calc(var(--header-h) + 40px); padding-bottom: 110px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 600px at 82% -8%, #12345f 0%, transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-bottom: 120px;
}
.hero-copy { color: #fff; padding-block: 30px; }
.hero-copy .kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 7px 15px 7px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: #e7ecf5;
}
.hero-copy .kicker b { color: var(--coral); font-weight: 700; }
.hero h1 {
  color: #fff; font-size: clamp(2.15rem, 1.3rem + 3.6vw, 3.7rem); line-height: 1.06;
  letter-spacing: -.025em; margin-bottom: 20px;
}
.hero h1 .hl { color: var(--coral); }
.hero-copy .lead { color: #c9d3e4; font-size: 1.14rem; max-width: 30ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  aspect-ratio: 5 / 4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  background: #fff; color: var(--navy); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--card-sh); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-badge .ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; background: rgba(228,87,46,.12); color: var(--coral); display: grid; place-items: center; }
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge b { display: block; font-family: "Poppins", sans-serif; font-size: 1.35rem; line-height: 1; }
.hero-badge span { font-size: .84rem; color: var(--muted); }

/* stat strip */
.hero-stats {
  position: relative; margin-top: -70px; z-index: 5;
}
.hero-stats .wrap {
  background: #fff; border-radius: var(--radius); box-shadow: var(--card-sh);
  display: grid; grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.hero-stats .item { padding: 30px 34px; display: flex; flex-direction: column; gap: 4px; }
.hero-stats .item + .item { border-left: 1px solid var(--line); }
.hero-stats .num { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 2.1rem; color: var(--navy); letter-spacing: -.02em; }
.hero-stats .num span { color: var(--coral); }
.hero-stats .lbl { color: var(--muted); font-size: .96rem; }

/* wave divider */
.wave { display: block; width: 100%; height: auto; }

/* ======================= SOLUTIONS ======================= */
#reseni { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--card-sh); transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--card-sh-h); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(0, 21, 52, .82); color: #fff; backdrop-filter: blur(4px);
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .78rem;
  padding: 6px 13px; border-radius: 999px;
}
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 2px; }
.card-body .sub { color: var(--coral); font-weight: 600; font-size: .95rem; margin-bottom: 18px; font-family: "Poppins", sans-serif; }
.feat { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.feat li { position: relative; padding-left: 30px; color: var(--text); font-size: 1rem; }
.feat li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(228, 87, 46, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e4572e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.card-body .btn { margin-top: auto; }

/* ======================= ABOUT ======================= */
#o-anete { background: var(--bg-soft); position: relative; }
.about-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.about-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--card-sh); aspect-ratio: 16 / 11; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .eyebrow { margin-bottom: 18px; }
.about-copy p { color: var(--muted); font-size: 1.12rem; max-width: 46ch; }
.about-copy .sig { margin-top: 26px; display: inline-flex; align-items: center; gap: 16px; }
.about-copy .sig img { height: 34px; }
.about-copy .sig span { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); font-size: .92rem; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: 0 14px 40px -26px rgba(0, 21, 52, .30);
}
.pillar .p-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.pillar .p-ico svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 16px; }
.pillar ul { display: flex; flex-direction: column; gap: 11px; }
.pillar li { position: relative; padding-left: 26px; color: var(--muted); font-size: .99rem; }
.pillar li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
}

/* ======================= REFERENCES ======================= */
#reference { background: var(--navy); position: relative; color: #fff; }
#reference .eyebrow { color: #fff; }
#reference .section-head p { color: #aeb9cd; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(228, 87, 46, .55); }
.quote .mark { font-family: Georgia, serif; font-size: 4.2rem; line-height: .6; color: var(--coral); height: 40px; }
.quote p { color: #dce3ef; font-size: 1.01rem; margin: 10px 0 24px; flex: 1; }
.quote .author { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 18px; }
.quote .author b { display: block; font-family: "Poppins", sans-serif; color: #fff; font-size: 1.02rem; }
.quote .author span { color: #9fabc2; font-size: .9rem; }

/* ======================= CTA / FORM ======================= */
#kontakt-cta { background: linear-gradient(165deg, var(--navy-800), var(--navy-900)); color: #fff; position: relative; overflow: hidden; }
#kontakt-cta::after { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(228,87,46,.22), transparent 65%); }
.cta-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.cta-copy h2 { color: #fff; font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem); margin-bottom: 18px; }
.cta-copy h2 .hl { color: var(--coral); }
.cta-copy p { color: #c3cdde; font-size: 1.12rem; max-width: 40ch; }
.cta-copy .contacts-inline { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.cta-copy .contacts-inline a { display: inline-flex; align-items: center; gap: 12px; color: #eaf0f9; font-weight: 500; }
.cta-copy .contacts-inline .ci { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.09); display: grid; place-items: center; }
.cta-copy .contacts-inline svg { width: 19px; height: 19px; color: var(--coral); }

.form-card { background: #fff; border-radius: 24px; padding: 34px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--navy); font-family: "Poppins", sans-serif; }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg-mute); border: 1.5px solid transparent; border-radius: 12px; padding: 13px 15px;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.captcha { display: flex; align-items: center; gap: 10px; font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); }
.captcha input { width: 70px; text-align: center; background: var(--bg-mute); border: 1.5px solid transparent; border-radius: 10px; padding: 10px; font-size: 1rem; }
.captcha input:focus { outline: none; border-color: var(--coral); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-msg { font-size: .92rem; font-weight: 600; margin-top: 12px; display: none; }
.form-msg.ok { display: block; color: #1a7f4b; }
.form-msg.err { display: block; color: var(--coral-600); }

/* ======================= FOOTER ======================= */
.site-footer { background: var(--navy-900); color: #cdd6e6; padding: 70px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand img { height: 44px; margin-bottom: 18px; }
.foot-brand .zone-label { font-family: "Poppins", sans-serif; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: .02em; }
.foot-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-family: "Poppins", sans-serif; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: #b7c1d3; font-size: .98rem; transition: color .2s; }
.foot-col a:hover { color: var(--coral); }
.foot-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #8b97ac; }

/* ======================= KONTAKTY PAGE ======================= */
.page-hero { background: linear-gradient(160deg, var(--navy), var(--navy-900)); color: #fff; padding: calc(var(--header-h) + 70px) 0 90px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: #c3cdde; font-size: 1.14rem; max-width: 50ch; margin-inline: auto; }
.page-hero .eyebrow { justify-content: center; color: #fff; margin-bottom: 20px; }

.contact-bar { margin-top: -46px; position: relative; z-index: 5; }
.contact-bar .wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--card-sh); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.contact-bar a { display: flex; align-items: center; gap: 16px; padding: 26px 32px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--navy); transition: background .2s; }
.contact-bar a + a { border-left: 1px solid var(--line); }
.contact-bar a:hover { background: var(--bg-soft); }
.contact-bar .ci { width: 50px; height: 50px; border-radius: 14px; background: rgba(228,87,46,.12); color: var(--coral); display: grid; place-items: center; flex: 0 0 auto; }
.contact-bar .ci svg { width: 24px; height: 24px; }

.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dept { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--card-sh); }
.dept .d-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--navy); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.dept .d-ico svg { width: 25px; height: 25px; }
.dept h3 { font-size: 1.25rem; margin-bottom: 16px; }
.dept ul { display: flex; flex-direction: column; gap: 10px; }
.dept li a, .dept li { color: var(--text); font-size: 1.02rem; }
.dept li a:hover { color: var(--coral); }
.dept .muted { color: var(--muted); font-size: .92rem; }

.company { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.company-info { background: var(--navy); color: #dbe3f0; border-radius: var(--radius); padding: 42px; }
.company-info h2 { color: #fff; font-size: 1.9rem; margin-bottom: 24px; }
.company-info .rows { display: flex; flex-direction: column; gap: 16px; }
.company-info .row { display: flex; flex-direction: column; gap: 2px; }
.company-info .row .k { color: var(--coral); font-family: "Poppins", sans-serif; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.company-info .row .v { color: #eef2f9; font-size: 1.02rem; }
.company-info a { color: #eef2f9; }
.company-info a:hover { color: var(--coral); }
.company-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-sh); min-height: 380px; }
.company-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ======================= LEGAL / POVINNÉ ÚDAJE ======================= */
.legal { max-width: 880px; margin-inline: auto; }
.legal-block { margin-bottom: 46px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 { display: flex; align-items: center; gap: 14px; font-size: 1.5rem; margin-bottom: 22px; }
.legal-block h2::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 26px;
  background-image: radial-gradient(var(--coral) 42%, transparent 46%);
  background-size: 6px 9px; background-repeat: repeat-y;
}
.legal-block > p { color: var(--muted); margin-bottom: 14px; font-size: 1.04rem; }
.legal-block a { color: var(--coral); font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }
.data-list { display: grid; grid-template-columns: 230px 1fr; gap: 14px 28px; }
.data-list dt { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); font-size: .96rem; }
.data-list dd { color: var(--text); font-size: 1.04rem; }
.legal-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 34px; box-shadow: 0 14px 40px -28px rgba(0, 21, 52, .28);
}
@media (max-width: 620px) {
  .data-list { grid-template-columns: 1fr; gap: 4px 0; }
  .data-list dd { margin-bottom: 12px; }
}

/* ======================= reveal animation ======================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 90px; }
  .hero-visual { max-width: 560px; }
  .cards, .quotes, .pillars, .dept-grid { grid-template-columns: 1fr; }
  .about-top, .cta-grid, .company { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats .wrap { grid-template-columns: 1fr; }
  .hero-stats .item + .item { border-left: none; border-top: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-bar .wrap { grid-template-columns: 1fr; }
  .contact-bar a + a { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(0,21,52,.35);
    transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 90;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a.navlink { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav .btn { margin-top: 14px; }
  .header-cta .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
}
@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
