:root{
  --navy: #17204D;
  --navy-soft: #4A5384;
  --gold: #D99A2E;
  --paper: #FBF9F4;
  --paper-2: #F3EFE4;
  --ink: #1C1F2E;
  --ink-soft: #61657A;
  --line: rgba(23,32,77,0.10);
  --max: 1160px;
  /* vertical rhythm */
  --section-y: 72px;
  --head-gap: 40px;
}

@media (max-width:820px){
  :root{
    --section-y: 52px;
    --head-gap: 32px;
  }
}

*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
/* kill the blue flash + the 300ms double-tap delay on touch devices */
a, button, [role="button"], input, select, textarea{
  -webkit-tap-highlight-color:rgba(217,154,46,0.18);
  touch-action:manipulation;
}
/* keep anchor targets clear of the sticky header */
section[id], .form-card[id]{ scroll-margin-top:88px; }

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-wrap:break-word;
}

h1,h2,h3{
  font-family:'Space Grotesk', sans-serif;
  margin:0;
  line-height:1.1;
  letter-spacing:-0.015em;
  font-weight:600;
}

a{color:inherit;}
img,svg{display:block;max-width:100%;}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:560px){
  .wrap{ padding:0 20px; }
}
@media (max-width:380px){
  .wrap{ padding:0 16px; }
}

/* generic section rhythm, shared by all pages */
.section{ padding:var(--section-y) 0; }
.section-top-0{ padding-top:0; }

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,249,244,0.92);
  backdrop-filter:blur(10px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 32px;
  max-width:var(--max); margin:0 auto;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Space Grotesk', sans-serif;
  font-weight:700; font-size:1.15rem;
  color:var(--navy);
  letter-spacing:-0.01em;
  text-decoration:none;
  flex-shrink:0;
}
.logo-mark{ width:44px; height:44px; flex-shrink:0; }
.nav-links{
  display:flex; gap:36px;
  font-size:0.93rem; font-weight:500;
  color:var(--navy-soft);
}
.nav-links a{text-decoration:none;}
.nav-links a:hover{color:var(--navy);}
.nav-links a[aria-current="page"]{
  color:var(--navy);
  font-weight:600;
  box-shadow:inset 0 -1px 0 var(--gold);
}
/* hamburger button and the in-menu phone link are mobile-only */
.nav-toggle{ display:none; }
.nav-menu-phone{ display:none; }

@media (max-width:820px){
  /* backdrop-filter is expensive to repaint while scrolling on phones */
  header{
    background:var(--paper);
    backdrop-filter:none;
    border-bottom:1px solid var(--line);
  }
  /* single compact row: brand + hamburger. Collapsing the links into a menu frees
     the whole row for the full company name, and the phone CTA lives in the fixed
     call bar at the bottom. */
  .nav{ padding:10px 20px; gap:12px; flex-wrap:nowrap; }
  .brand{
    font-size:clamp(0.88rem, 3.7vw, 1.15rem);
    gap:8px;
    min-width:0;
    flex-shrink:1;
    margin-right:auto;
  }
  /* backstop for very narrow phones: the name wraps to a second line rather than
     being clipped or pushing the page sideways */
  .brand-name{ white-space:normal; line-height:1.15; }
  .logo-mark{ width:clamp(26px, 8vw, 34px); height:clamp(26px, 8vw, 34px); }

  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px;
    padding:0;
    flex-shrink:0;
    background:transparent;
    border:1px solid var(--line);
    border-radius:2px;
    color:var(--navy);
    cursor:pointer;
  }
  .nav-toggle-bars{
    position:relative;
    display:block;
    width:20px; height:14px;
  }
  .nav-toggle-bars span{
    position:absolute; left:0; right:0;
    height:2px;
    background:currentColor;
    border-radius:2px;
    transition:transform .18s ease, opacity .18s ease;
  }
  .nav-toggle-bars span:nth-child(1){ top:0; }
  .nav-toggle-bars span:nth-child(2){ top:6px; }
  .nav-toggle-bars span:nth-child(3){ top:12px; }
  header.nav-open .nav-toggle-bars span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  header.nav-open .nav-toggle-bars span:nth-child(2){ opacity:0; }
  header.nav-open .nav-toggle-bars span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

  /* the links become a drop-down panel under the header row */
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    padding:4px 20px 10px 20px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    box-shadow:0 10px 24px rgba(23,32,77,0.10);
    font-size:1rem;
  }
  header.nav-open .nav-links{ display:flex; }
  .nav-links a{
    display:flex; align-items:center;
    min-height:52px;
    color:var(--navy);
    border-top:1px solid var(--line);
  }
  .nav-links a:first-child{ border-top:0; }
  .nav-links a[aria-current="page"]{
    box-shadow:none;
    color:var(--gold);
  }
  .nav-menu-phone{ display:flex; font-weight:600; }
}
@media (max-width:380px){
  .nav{ padding:8px 16px; gap:10px; }
  .nav-links{ padding-left:16px; padding-right:16px; }
}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px;
  border-radius:2px;
  font-weight:600; font-size:0.9rem;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:opacity .15s ease;
}
.btn-gold{ background:var(--gold); color:#fff; }
.btn-gold:hover{ opacity:0.88; }
.btn-line{ border-color:var(--navy); color:var(--navy); }
.btn-line:hover{ background:var(--navy); color:var(--paper); }
.btn-ghost-light{ border-color:rgba(251,249,244,0.4); color:var(--paper); }
.btn-ghost-light:hover{ background:var(--paper); color:var(--navy); }

/* On phones the header keeps just the brand and links; calling is handled by the
   fixed call bar at the bottom. Must come after .btn so it wins the cascade. */
@media (max-width:820px){
  .nav-phone{ display:none; }
}

/* ---------- HERO ---------- */
.hero{ padding:64px 0 48px 0; }
@media (max-width:820px){ .hero{ padding:44px 0 36px 0; } }
.hero-grid{
  max-width:640px;
}

.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-size:0.82rem; font-weight:600;
  letter-spacing:0.04em;
  color:var(--gold);
  margin-bottom:16px;
  text-transform:uppercase;
}
.eyebrow-line{ width:28px; height:1px; background:var(--gold); }

.hero h1{
  /* kept in step with .section-head h2 so the hero doesn't tower over the page */
  font-size:clamp(1.75rem, 3vw, 2.3rem);
  color:var(--navy);
}
.hero h1 .light{ color:var(--navy-soft); font-weight:500; }

.hero-sub{
  max-width:460px;
  margin-top:18px;
  font-size:1rem;
  color:var(--ink-soft);
}
.hero-ctas{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-top:28px;
}

.hero-stats{
  display:flex; gap:48px;
  margin-top:40px;
  padding-top:26px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.stat-num{
  font-family:'Space Grotesk', sans-serif;
  font-size:1.7rem; font-weight:600; color:var(--navy);
}
.stat-label{
  font-size:0.82rem;
  color:var(--ink-soft);
  margin-top:2px;
}

/* page hero: inner pages, a touch shorter than the home hero */
.page-hero{ padding:52px 0 36px 0; }
@media (max-width:820px){ .page-hero{ padding:36px 0 28px 0; } }
.page-hero h1{
  font-size:clamp(1.9rem, 3.35vw, 2.6rem);
  color:var(--navy);
  max-width:720px;
}
.page-hero p{
  max-width:520px;
  margin:18px 0 0 0;
  font-size:1.05rem;
  color:var(--ink-soft);
}

/* signature mark (used as nav logo) */
.logo-bolt{
  fill:none;
  stroke:var(--navy);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.logo-bolt-accent{
  stroke:var(--gold);
}
.logo-ring{
  fill:none;
  stroke:var(--line);
  stroke-width:2;
}

/* ---------- BADGES ---------- */
.badges{ padding:0; }
.badge-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
@media (max-width:820px){
  .badge-grid{ grid-template-columns:1fr; }
}
.badge-card{
  background:var(--paper);
  padding:26px 24px;
}
.badge-icon{ width:26px; height:26px; color:var(--gold); margin-bottom:12px; }
.badge-title{
  font-family:'Space Grotesk', sans-serif;
  font-size:1.02rem; font-weight:600;
  color:var(--navy);
  margin-bottom:6px;
}
.badge-text{
  font-size:0.86rem;
  color:var(--ink-soft);
}

@media (max-width:820px){
  /* two lines per card instead of three: icon sits beside the title, description
     runs full width underneath. Keeps the stacked list short on phones. */
  .badge-card{
    padding:18px 20px;
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    column-gap:11px;
    row-gap:5px;
  }
  .badge-icon{ width:22px; height:22px; margin-bottom:0; }
  .badge-title{ margin-bottom:0; }
  .badge-text{ grid-column:1 / -1; }
}
@media (max-width:380px){
  .badge-card{ padding:16px; column-gap:10px; }
}

/* ---------- AUDIENCE ---------- */
.audience{ padding:var(--section-y) 0; }
.audience-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
}
@media (max-width:820px){ .audience-grid{ grid-template-columns:repeat(2,1fr); gap:28px; } }
.audience-card{ text-align:left; }
.audience-icon{ width:30px; height:30px; color:var(--navy); margin-bottom:12px; }
.audience-title{
  font-family:'Space Grotesk', sans-serif;
  font-size:1.05rem; font-weight:600;
  color:var(--navy);
}
.audience-text{
  font-size:0.88rem;
  color:var(--ink-soft);
  margin-top:6px;
}
/* each audience gets its own ask, phrased for that reader */
.audience-cta{
  display:inline-block;
  margin-top:12px;
  font-size:0.85rem; font-weight:600;
  line-height:1.45;
  color:var(--navy);
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-bottom:3px;
  transition:color .15s ease, border-color .15s ease;
}
.audience-cta .arrow{ margin-left:5px; }
.audience-cta:hover{ color:var(--gold); border-bottom-color:var(--gold); }

/* ---------- SERVICES ---------- */
.services{ padding:0 0 var(--section-y) 0; }
.section-head{ max-width:600px; margin-bottom:var(--head-gap); }
.section-head h2{
  font-size:clamp(1.8rem, 3vw, 2.3rem);
  color:var(--navy);
}
.section-head p{
  margin-top:14px;
  color:var(--ink-soft);
  max-width:520px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}
@media (max-width:820px){ .service-grid{ grid-template-columns:1fr; gap:32px; } }

.service-card{ padding-top:24px; border-top:1px solid var(--line); }
.service-icon{ width:32px; height:32px; margin-bottom:18px; color:var(--navy); }
.service-card h3{
  font-size:1.15rem;
  color:var(--navy);
  margin-bottom:8px;
  font-weight:600;
}
.service-card p{
  color:var(--ink-soft);
  font-size:0.96rem;
  margin:0 0 14px 0;
}
.service-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:9px;
}
.service-list li{
  display:flex; align-items:baseline; gap:10px;
  font-size:0.9rem;
  color:var(--navy-soft);
}
.service-list li::before{
  content:"";
  width:5px; height:5px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
  transform:translateY(-2px);
}

@media (max-width:820px){
  /* lead each card with a single compact line: icon beside a smaller heading,
     with the description and list running full width underneath */
  .service-card{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    column-gap:12px;
    row-gap:12px;
  }
  .service-card .service-icon{ width:26px; height:26px; margin-bottom:0; }
  .service-card h3{ font-size:1rem; margin-bottom:0; }
  .service-card p{ grid-column:1 / -1; margin-bottom:0; }
  .service-list{ grid-column:1 / -1; }
}

/* ---------- SERVICE DETAIL (services page) ---------- */
.detail{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:48px;
  padding:36px 0;
  border-top:1px solid var(--line);
}
.detail:last-of-type{ border-bottom:1px solid var(--line); }
@media (max-width:900px){
  .detail{ grid-template-columns:1fr; gap:24px; padding:28px 0; }
}
.detail-aside .service-icon{ margin-bottom:14px; }
.detail-aside h2{
  font-size:1.5rem;
  color:var(--navy);
}
.detail-aside p{
  margin:10px 0 0 0;
  font-size:0.93rem;
  color:var(--ink-soft);
}
.detail-cta{ margin-top:18px; }
.detail-items{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px 40px;
}
@media (max-width:560px){ .detail-items{ grid-template-columns:1fr; gap:20px; } }
.detail-item h3{
  font-size:1rem;
  color:var(--navy);
  margin-bottom:5px;
}
.detail-item p{
  margin:0;
  font-size:0.88rem;
  color:var(--ink-soft);
}

/* ---------- FAQ (services page) ---------- */
.faq-list{
  max-width:840px;
  border-top:1px solid var(--line);
}
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:24px;
  padding:20px 0;
  cursor:pointer;
  list-style:none;
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  font-size:1.05rem;
  line-height:1.35;
  letter-spacing:-0.015em;
  color:var(--navy);
  transition:color 0.2s ease;
}
/* hide the native disclosure triangle in favour of the gold plus */
.faq-q::-webkit-details-marker{ display:none; }
.faq-q::marker{ content:""; }
.faq-q:hover{ color:var(--gold); }
.faq-icon{
  width:16px; height:16px;
  color:var(--gold);
  transition:transform 0.25s ease;
}
/* plus rotates into a close icon while the answer is open */
.faq-item[open] .faq-icon{ transform:rotate(45deg); }
.faq-a{
  margin:0;
  padding:0 0 22px 0;
  max-width:680px;
  color:var(--ink-soft);
  font-size:0.93rem;
}
@media (max-width:560px){
  .faq-q{ font-size:0.98rem; gap:16px; padding:18px 0; }
  .faq-a{ font-size:0.9rem; padding-bottom:18px; }
}

/* ---------- CONTACT ---------- */
.contact{
  background:var(--navy);
  color:var(--paper);
  padding:var(--section-y) 0;
}
.contact-single{
  max-width:600px;
}

.contact h2{
  font-size:clamp(1.9rem, 3.2vw, 2.5rem);
  max-width:420px;
  font-weight:600;
}
.contact-sub{
  color:rgba(251,249,244,0.7);
  margin-top:14px;
  max-width:400px;
}
.contact-ctas{
  margin-top:26px;
  display:flex; gap:14px; flex-wrap:wrap;
}

/* ---------- CONTACT PAGE ---------- */
.contact-cols{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:56px;
  align-items:start;
}
@media (max-width:900px){
  .contact-cols{ grid-template-columns:1fr; gap:40px; }
}

.form-card{
  border:1px solid var(--line);
  background:#fff;
  padding:32px;
}
@media (max-width:560px){ .form-card{ padding:22px; } }
.form-card h2{
  font-size:1.4rem;
  color:var(--navy);
  margin-bottom:6px;
}
.form-card > p{
  margin:0 0 24px 0;
  font-size:0.92rem;
  color:var(--ink-soft);
}

/* audience tabs: one form per tab, all going to the same inbox */
.tab-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:26px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}
.tab-btn{
  font-family:'Inter', sans-serif;
  font-size:0.84rem;
  font-weight:600;
  color:var(--navy-soft);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:2px;
  padding:10px 15px;
  min-height:42px;
  cursor:pointer;
  transition:color .15s ease, background-color .15s ease, border-color .15s ease;
}
.tab-btn:hover{ color:var(--navy); border-color:rgba(23,32,77,0.24); }
.tab-btn.active{
  background:var(--navy);
  border-color:var(--navy);
  color:var(--paper);
}
@media (max-width:560px){
  .tab-buttons{ display:grid; grid-template-columns:1fr 1fr; }
  .tab-btn{ padding:10px 8px; }
}

.tab-panel{ display:none; }
.tab-panel.active{ display:block; }
.field input[type="file"]{
  padding:11px 14px;
  line-height:1.4;
}

.field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width:560px){ .field-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.field-full{ grid-column:1 / -1; }
.field label{
  font-size:0.82rem;
  font-weight:600;
  color:var(--navy);
  letter-spacing:0.01em;
}
.field .req{ color:var(--gold); }
.field input,
.field select,
.field textarea{
  font-family:'Inter', sans-serif;
  /* 16px minimum, otherwise iOS Safari zooms the page in on focus */
  font-size:1rem;
  color:var(--ink);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:2px;
  padding:12px 14px;
  width:100%;
  min-height:48px;
  transition:border-color .15s ease;
}
/* native select chrome varies wildly across mobile browsers, so draw our own caret */
.field select{
  appearance:none;
  -webkit-appearance:none;
  padding-right:38px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%234A5384' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:12px 8px;
}
.field textarea{ resize:vertical; min-height:130px; line-height:1.6; }
.field input:hover,
.field select:hover,
.field textarea:hover{ border-color:rgba(23,32,77,0.24); }
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(217,154,46,0.16);
}
.field-hint{
  font-size:0.78rem;
  color:var(--ink-soft);
}
.field-hint a{ color:var(--navy); font-weight:600; }
.form-actions{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  margin-top:6px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.form-note{
  font-size:0.78rem;
  color:var(--ink-soft);
  margin:0;
}

/* contact details column */
.info-block{ margin-bottom:32px; }
.info-block:last-child{ margin-bottom:0; }
.info-label{
  font-size:0.78rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.05em;
  color:var(--gold);
  margin-bottom:10px;
}
.info-big{
  font-family:'Space Grotesk', sans-serif;
  font-size:1.55rem; font-weight:600;
  color:var(--navy);
  text-decoration:none;
  letter-spacing:-0.01em;
}
.info-big:hover{ color:var(--gold); }
.info-text{
  font-size:0.92rem;
  color:var(--ink-soft);
  margin:0;
}
.info-rows{
  list-style:none; margin:0; padding:0;
  font-size:0.92rem;
}
.info-rows li{
  display:flex; justify-content:space-between; gap:16px;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  color:var(--ink-soft);
}
.info-rows li:first-child{ border-top:1px solid var(--line); }
.info-rows strong{ color:var(--navy); font-weight:600; }

/* ---------- THANK YOU ---------- */
.thanks{
  padding:96px 0 var(--section-y) 0;
  text-align:center;
}
@media (max-width:820px){ .thanks{ padding:60px 0 var(--section-y) 0; } }
.thanks-inner{ max-width:520px; margin:0 auto; }
.thanks-mark{
  width:52px; height:52px;
  margin:0 auto 22px auto;
  color:var(--gold);
}
.thanks h1{
  font-size:clamp(1.9rem, 3.4vw, 2.5rem);
  color:var(--navy);
}
.thanks p{
  margin:16px 0 0 0;
  color:var(--ink-soft);
}
.thanks .hero-ctas{ justify-content:center; }

footer{ padding:24px 0; }
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
  color:var(--ink-soft);
  font-size:0.83rem;
}
.footer-inner a{ color:var(--navy); text-decoration:none; font-weight:600; }

/* ---------- MOBILE CALL BAR ---------- */
/* Thumb-reachable, always-visible primary actions. Hidden on desktop, where the
   header phone button and inline CTAs already cover this. */
.callbar{ display:none; }
.callbar-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:50px;
  padding:12px 14px;
  border:1px solid transparent;
  border-radius:2px;
  font-weight:600; font-size:0.95rem; line-height:1.1;
  text-decoration:none;
}
.callbar-call{ background:var(--gold); color:#fff; }
.callbar-quote{ border-color:var(--navy); color:var(--navy); background:var(--paper); }
.callbar-icon{ width:17px; height:17px; flex-shrink:0; }

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width:820px){
  .callbar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    position:fixed; left:0; right:0; bottom:0; z-index:60;
    background:var(--paper);
    border-top:1px solid var(--line);
    box-shadow:0 -6px 18px rgba(23,32,77,0.08);
    padding:10px 14px;
    /* clear the iOS home indicator */
    padding-bottom:calc(10px + env(safe-area-inset-bottom));
  }
  /* keep the footer from sitting underneath the fixed bar */
  body{ padding-bottom:calc(82px + env(safe-area-inset-bottom)); }

  .btn{ min-height:48px; padding:13px 22px; }
  .hero-stats{ gap:32px; }
}

@media (max-width:480px){
  /* full-width, centred CTAs are far easier to hit one-handed than side-by-side pills */
  .hero-ctas .btn,
  .contact-ctas .btn{ flex:1 1 100%; justify-content:center; }
  .form-actions{ flex-direction:column; align-items:stretch; gap:12px; }
  .form-actions .btn{ width:100%; justify-content:center; }
  .form-note{ text-align:center; }
  .audience-grid{ gap:24px 20px; }
  .footer-inner{ flex-direction:column; align-items:flex-start; gap:6px; }
}

@media (max-width:380px){
  .hero h1{ font-size:1.6rem; }
  .hero-sub{ font-size:0.95rem; }
  .callbar{ gap:8px; padding-left:10px; padding-right:10px; }
  .callbar-btn{ font-size:0.88rem; padding:12px 8px; }
}

/* short landscape screens: a sticky header and tall hero leave nothing to read */
@media (max-height:480px) and (orientation:landscape){
  header{ position:static; }
  .hero{ padding:28px 0 24px 0; }
  .page-hero{ padding:24px 0 20px 0; }
  .thanks{ padding:40px 0 var(--section-y) 0; }
}
