/* ============================================================
   Language Access Hub — Master Stylesheet
   languageaccesshub.com · Powered by Taika Translations + TVPTeam
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Core palette */
  --navy:           #0B1E35;
  --navy-deep:      #071529;
  --navy-mid:       #132842;
  --navy-card:      #0F2238;
  --gold:           #B8913A;
  --gold-light:     #D4A94E;
  --gold-pale:      #F0DCA8;
  --gold-bg:        rgba(184,145,58,0.08);
  --white:          #F9F8F5;
  --pure-white:     #FFFFFF;
  --slate:          #4A5E74;
  --slate-light:    #6B7F94;
  --mist:           #E2E8F0;
  --mist-dark:      #C8D4E0;
  --body-bg:        #F9F8F5;
  --card-bg:        #FFFFFF;

  /* Semantic colors */
  --emerald:        #1A6B4A;
  --emerald-light:  #2D9166;
  --emerald-bg:     #EBF5F0;
  --red:            #DC2626;
  --red-bg:         #FEF2F2;
  --red-text:       #991B1B;
  --sky:            #1D6FA4;
  --sky-bg:         #EBF4FB;

  /* Borders */
  --border:         rgba(11,30,53,0.10);
  --border-strong:  rgba(11,30,53,0.18);
  --border-gold:    rgba(184,145,58,0.30);
  --border-white:   rgba(255,255,255,0.10);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(11,30,53,0.08);
  --shadow-md:      0 8px 24px rgba(11,30,53,0.10);
  --shadow-lg:      0 20px 60px rgba(11,30,53,0.14);
  --shadow-gold:    0 6px 24px rgba(184,145,58,0.15);

  /* Typography scale */
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad:    96px;
  --section-pad-sm: 64px;
  --container:      1160px;
  --container-pad:  32px;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--slate-light); }

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--navy); }
.nav-logo-wordmark { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 16px; line-height: 1.1;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 10px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.60);
  padding: 6px 13px; border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 14px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-trust {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--gold-light);
  opacity: 0.85; white-space: nowrap;
}
.nav-trust::before { content: '★★★★★ '; letter-spacing: 1px; }
.btn-nav-ghost {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  transition: all 0.15s; white-space: nowrap;
}
.btn-nav-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-nav-cta {
  font-size: 13px; font-weight: 700;
  color: var(--navy); background: var(--gold);
  padding: 8px 18px; border-radius: var(--radius-sm);
  transition: background 0.15s; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--gold-light); }

/* ── URGENCY BANNER ───────────────────────────────────────── */
.urgency-bar {
  background: #7C2D12;
  padding: 10px var(--container-pad);
  text-align: center;
}
.urgency-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.urgency-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #FED7AA;
  background: rgba(255,255,255,0.12);
  padding: 3px 10px; border-radius: 4px; flex-shrink: 0;
}
.urgency-copy { font-size: 13px; color: #FEF2E6; }
.urgency-copy strong { font-weight: 700; }
.urgency-link { font-size: 13px; font-weight: 600; color: #FED7AA; text-decoration: underline; white-space: nowrap; }

/* ── TRUST WALL ───────────────────────────────────────────── */
.trust-wall {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px var(--container-pad);
}
.trust-wall-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.trust-seals {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: center;
  align-items: stretch; flex-wrap: nowrap;
  overflow-x: auto;
}
.trust-seal {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 10px 12px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1 1 0; min-width: 0;
}
.trust-seal:last-child { border-right: none; }
.trust-seal-icon { font-size: 18px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.trust-seal-name {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--gold-light); text-align: center; line-height: 1.3;
}
.trust-seal-desc { font-size: 9px; color: rgba(255,255,255,0.30); text-align: center; line-height: 1.3; }

/* ── PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.page-hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white); line-height: 1.08;
  letter-spacing: -0.5px; margin-bottom: 20px;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.58);
  max-width: 640px; line-height: 1.65;
  font-weight: 300; margin-bottom: 36px;
}
.page-hero-sub strong { color: rgba(255,255,255,0.88); font-weight: 500; }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}

/* Compliance badges on hero */
.hero-compliance-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}
.comp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(26,107,74,0.15);
  border: 1px solid rgba(26,107,74,0.3);
  color: #6EE7B7;
  padding: 4px 10px; border-radius: 4px;
}
.comp-badge::before { content: '✓'; font-weight: 700; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-md);
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap; line-height: 1;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary-lg {
  font-size: 16px; padding: 17px 36px;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.72);
  font-size: 14px; font-weight: 500;
  padding: 13px 22px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.22);
  transition: all 0.15s; cursor: pointer; white-space: nowrap;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong);
  transition: all 0.15s; cursor: pointer;
}
.btn-ghost-navy:hover { border-color: var(--gold); color: var(--gold); }
.btn-inline {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600; color: var(--gold);
  transition: gap 0.15s;
}
.btn-inline:hover { gap: 9px; }
.arrow { display: inline-block; }

/* ── SECTION PRIMITIVES ───────────────────────────────────── */
.section         { padding: var(--section-pad) 0; }
.section-navy    { background: var(--navy-deep); color: var(--white); padding: var(--section-pad) 0; }
.section-navy-mid { background: var(--navy-mid); color: var(--white); padding: var(--section-pad) 0; }
.section-mist    { background: #EEF2F7; padding: var(--section-pad) 0; }
.section-gold-bg { background: #FDF8EE; padding: var(--section-pad) 0; }
.section-white   { background: var(--pure-white); padding: var(--section-pad) 0; }

.section-sm      { padding: var(--section-pad-sm) 0; }
.section-navy.section-sm,
.section-mist.section-sm { padding: var(--section-pad-sm) 0; }

/* Section headers */
.kicker {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.kicker-light { color: var(--gold-light); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.1; letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-heading-white { color: var(--white); }
.section-lead {
  font-size: 17px; color: var(--slate);
  max-width: 620px; line-height: 1.65;
  margin-bottom: 48px;
}
.section-lead-white { color: rgba(255,255,255,0.55); }
.section-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px;
  margin-bottom: 48px; flex-wrap: wrap;
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.card-dark:hover {
  border-color: rgba(184,145,58,0.4);
  background: rgba(184,145,58,0.05);
}

/* ── ICON BLOCK ───────────────────────────────────────────── */
.icon-block {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
}
.icon-block-sm { width: 40px; height: 40px; font-size: 18px; margin-bottom: 14px; border-radius: var(--radius-sm); }
.icon-block-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

/* ── CALLOUT / HIGHLIGHT BOX ──────────────────────────────── */
.callout {
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}
.callout-title { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.callout p { font-size: 14px; color: var(--navy); line-height: 1.65; }
.callout-navy {
  background: rgba(11,30,53,0.04);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 24px 28px; margin: 28px 0;
}
.callout-emerald {
  background: var(--emerald-bg);
  border: 1px solid rgba(26,107,74,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 20px 0;
}
.callout-emerald p { font-size: 14px; color: var(--navy); line-height: 1.6; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 20px; position: relative; z-index: 1;
}
.step-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; color: var(--gold-light);
  margin-bottom: 20px; flex-shrink: 0;
}
.step-num-light { background: rgba(255,255,255,0.06); }
.step h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 10px; }
.step h3.white { color: var(--white); }
.step p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.step p.white { color: rgba(255,255,255,0.52); }
.step-note { margin-top: 12px; font-family: var(--font-mono); font-size: 10.5px; color: var(--gold-light); opacity: 0.7; }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--navy); text-align: left; gap: 16px;
  transition: background 0.15s;
}
.faq-q-dark { color: var(--white); }
.faq-q:hover { background: rgba(11,30,53,0.03); }
.faq-q-dark:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--slate);
  flex-shrink: 0; transition: transform 0.25s, background 0.2s;
  line-height: 1;
}
.faq-icon-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.faq-item.open .faq-icon,
.faq-item-dark.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 22px;
  font-size: 14.5px; color: var(--slate); line-height: 1.7;
}
.faq-a-dark { color: rgba(255,255,255,0.55); }
.faq-item.open .faq-a,
.faq-item-dark.open .faq-a {
  max-height: 600px;
  padding: 0 22px 20px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.testimonial-quote { font-size: 14.5px; color: var(--navy); line-height: 1.68; font-style: italic; flex: 1; }
.testimonial-byline {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--mist);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
  color: var(--gold-light); flex-shrink: 0;
}
.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: 11.5px; color: var(--slate-light); }

/* ── STAT BLOCKS ──────────────────────────────────────────── */
.stat-block { display: flex; flex-direction: column; gap: 3px; }
.stat-num { font-family: var(--font-display); font-size: 38px; line-height: 1; }
.stat-num-sm { font-size: 28px; }
.stat-label { font-size: 13px; color: var(--slate-light); }
.stat-label-white { color: rgba(255,255,255,0.45); }
.stats-row { display: flex; gap: 40px; flex-wrap: wrap; }

/* ── COMPLIANCE TAGS ──────────────────────────────────────── */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  border: 1px solid; white-space: nowrap;
}
.tag-emerald { background: var(--emerald-bg); border-color: rgba(26,107,74,0.25); color: var(--emerald); }
.tag-gold    { background: var(--gold-bg);    border-color: var(--border-gold);    color: var(--gold); }
.tag-navy    { background: rgba(11,30,53,0.07); border-color: var(--border-strong); color: var(--slate); }
.tag-sky     { background: var(--sky-bg);     border-color: rgba(29,111,164,0.25); color: var(--sky); }
.tag-white   { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); }

/* ── QUOTE / ORDER FORM ───────────────────────────────────── */
.quote-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.quote-card-header {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.quote-card-body { padding: 32px; }
.quote-card-title { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.quote-card-sub { font-size: 13px; color: var(--slate-light); margin-bottom: 24px; }
.field { margin-bottom: 14px; }
.label {
  display: block;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--slate);
  margin-bottom: 5px;
}
.input, .select, .textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--mist-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--navy);
  background: var(--body-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,58,0.14);
}
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5E74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-size: 14.5px; font-weight: 700;
  padding: 13px; border-radius: var(--radius-md);
  border: none; cursor: pointer;
  transition: background 0.15s; margin-top: 8px;
}
.btn-submit:hover { background: var(--navy-mid); }
.form-trust-line {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 12px;
  font-size: 11.5px; color: var(--slate-light);
}

/* ── LEAD MAGNET STRIP ────────────────────────────────────── */
.lead-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.lead-strip-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white); margin-bottom: 10px; line-height: 1.15;
}
.lead-strip-sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.lead-strip-form { display: flex; gap: 10px; flex-shrink: 0; }
.lead-strip-input {
  padding: 11px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07); color: var(--white);
  font-family: var(--font-body); font-size: 14px;
  width: 240px; transition: border-color 0.15s;
}
.lead-strip-input::placeholder { color: rgba(255,255,255,0.35); }
.lead-strip-input:focus { outline: none; border-color: var(--gold); }
.btn-lead {
  background: var(--gold); color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 11px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.15s;
}
.btn-lead:hover { background: var(--gold-light); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0F2A47 100%);
  padding: var(--section-pad) var(--container-pad);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,58,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-kicker {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px; opacity: 0.8; display: block;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white); line-height: 1.14;
  max-width: 720px; margin: 0 auto 16px;
}
.cta-band-sub {
  font-size: 17px; color: rgba(255,255,255,0.52);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.6;
}
.cta-band-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust-items {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,0.38);
}
.cta-trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #050D17;
  padding: 64px var(--container-pad) 32px;
}
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 10px;
}
.footer-brand-copy { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; margin-bottom: 16px; }
.footer-family-label { font-size: 11px; color: rgba(255,255,255,0.25); margin-bottom: 8px; }
.footer-family-links { display: flex; flex-direction: column; gap: 6px; }
.footer-family-link { font-size: 12.5px; color: var(--gold-light); opacity: 0.65; transition: opacity 0.15s; }
.footer-family-link:hover { opacity: 1; }
.footer-comp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.footer-comp-tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px; padding: 3px 7px;
  color: rgba(255,255,255,0.30);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.40); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.50); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 12.5px; color: rgba(255,255,255,0.28); transition: color 0.15s; }
.footer-social a:hover { color: var(--gold-light); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex; gap: 8px; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.38);
}
.breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: rgba(255,255,255,0.65); }

/* ── GRIDS ────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.divider-gold { border-color: var(--border-gold); }

/* ── HAMBURGER ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 4px; color: var(--white);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.site-nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── TRUST WALL SCROLLABLE ────────────────────────────────── */
.trust-seals {
  scrollbar-width: none;
}
.trust-seals::-webkit-scrollbar { display: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }
  .page-hero-split { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .lead-strip { grid-template-columns: 1fr; padding: 36px 32px; }
  .lead-strip-form { flex-wrap: wrap; }
  .lead-strip-input { width: 100%; }
}
@media (max-width: 640px) {
  :root { --container-pad: 16px; --section-pad: 40px; }

  /* Nav: hamburger on, links as dropdown overlay */
  .nav-hamburger { display: flex; }
  .nav-trust { display: none; }
  .btn-nav-ghost { display: none; }
  .nav-logo-sub { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-mid);
    border-bottom: 2px solid rgba(255,255,255,0.08);
    flex-direction: column; align-items: stretch;
    padding: 8px 0; gap: 0; z-index: 199;
  }
  .site-nav.nav-open .nav-links { display: flex; }
  .site-nav { position: relative; }
  .nav-links a { padding: 13px 20px; border-radius: 0; font-size: 15px; }
  .nav-links .nav-dropdown > a::after { float: right; }
  .nav-dropdown-menu {
    position: static; display: none; box-shadow: none;
    border: none; border-radius: 0; min-width: 0;
    background: rgba(255,255,255,0.04); padding: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 11px 32px; font-size: 13.5px; }

  /* Trust wall: fixed-width seals, scroll horizontally */
  .trust-seal { flex: 0 0 130px; min-width: 130px; }

  /* Hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero-sub { font-size: 15px; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* CTA */
  .cta-band-buttons { flex-direction: column; align-items: center; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  /* Quote card full width */
  .quote-card { margin: 0; }

  /* Lead strip */
  .lead-strip { padding: 28px 20px; }

  /* Buttons */
  .btn-primary-lg { font-size: 15px; padding: 13px 22px; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.animate-fade-up { animation: fadeUp 0.5s ease both; }
.animate-fade-up-delay { animation: fadeUp 0.5s 0.15s ease both; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── FILE UPLOAD DROP ZONE ────────────────────────────────── */
.upload-drop {
  position: relative;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 18px 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--body-bg);
}
.upload-drop:hover, .upload-drop.drag-over {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.upload-drop.has-file {
  border-color: var(--emerald);
  background: var(--emerald-bg);
  border-style: solid;
}
.upload-input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.upload-icon {
  width: 24px; height: 24px;
  color: var(--slate-light);
  margin: 0 auto 6px; display: block;
}
.upload-drop.has-file .upload-icon { color: var(--emerald); }
.upload-label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--navy); margin-bottom: 3px;
}
.upload-hint {
  display: block; font-size: 11.5px; color: var(--slate-light);
}
.upload-filename {
  display: none; font-size: 12.5px; font-weight: 600;
  color: var(--emerald); margin-top: 4px;
}
.upload-drop.has-file .upload-filename { display: block; }
.upload-drop.has-file .upload-hint { display: none; }
