/* ═══════════════════════════════════════════════
   Ai Lawyers Lab — main.css
   Design system: Navy & Gold — Premium Polish
   Fonts: EB Garamond (headings) + Lato (body)
   ═══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
  --navy-deep:   #0A1838;
  --navy:        #102960;
  --navy-mid:    #142E6E;
  --navy-light:  #1A3578;
  --navy-card:   #122A62;

  --gold:        #C9943A;
  --gold-light:  #E8B84B;
  --gold-dim:    #8B6420;
  --gold-pale:   rgba(201, 148, 58, 0.10);
  --gold-border: rgba(201, 148, 58, 0.28);
  --gold-grad:   linear-gradient(120deg, #E8B84B 0%, #C9943A 55%, #B07F2C 100%);

  --text:        #FFFFFF;
  --text-mid:    rgba(255, 255, 255, 0.74);
  --text-muted:  rgba(255, 255, 255, 0.42);
  --border:      rgba(201, 148, 58, 0.20);
  --white:       #FFFFFF;

  --ink:         #0E1B3D;
  --ink-mid:     #3D4A6B;
  --ink-muted:   #6B7694;

  --font-heading: 'EB Garamond', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:        1140px;
  --pad-x:        clamp(20px, 5vw, 48px);
  --section-pad:  clamp(72px, 9vw, 116px);
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 6px 28px rgba(8, 16, 45, 0.45);
  --shadow-lg:    0 18px 56px rgba(8, 16, 45, 0.55);
  --shadow-gold:  0 8px 40px rgba(201, 148, 58, 0.22);
  --shadow-card:  0 2px 8px rgba(14, 27, 61, 0.06), 0 12px 32px rgba(14, 27, 61, 0.10);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--navy); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--navy-deep); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn--gold {
  background: var(--gold-grad);
  color: #1A1303;
  box-shadow: 0 4px 18px rgba(201,148,58,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 30px rgba(201,148,58,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn--outline { background: transparent; color: var(--gold-light); border: 2px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy-deep); }

.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.8rem; }

/* ── Type helpers ───────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-light); }

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}
h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}
h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }

em { font-style: italic; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 620px;
  margin-top: 18px;
}

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-top: 6px; }
.section-header--center { text-align: center; }
.section-header--center .eyebrow { justify-content: center; }
.section-header--center .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-header--center .section-intro { margin-left: auto; margin-right: auto; }
.section-header--light h2 { color: var(--white); }

/* ── Layout ─────────────────────────────────────── */
.section-wrap { padding: var(--section-pad) var(--pad-x); background: var(--navy); position: relative; }
.section-wrap--dark {
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(201,148,58,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.section-wrap--muted {
  background:
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(201,148,58,0.05) 0%, transparent 60%),
    var(--navy-mid);
}
.section-wrap--white { background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FC 100%); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── White section text overrides ───────────────── */
.section-wrap--white h2,
.section-wrap--white h3 { color: var(--ink); }
.section-wrap--white .eyebrow { color: var(--gold-dim); }
.section-wrap--white .eyebrow::before { background: var(--gold-dim); }
.section-wrap--white .section-intro { color: var(--ink-mid); }
.section-wrap--white strong { color: var(--ink); }

/* ── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal--zoom  { transform: scale(0.9); }
.reveal--blur  { filter: blur(10px); transform: translateY(16px); }
.reveal.visible { opacity: 1; transform: none; filter: none; }
.reveal-delay-1.visible { transition-delay: 0.14s; }
.reveal-delay-2.visible { transition-delay: 0.28s; }

/* Staggered children — add .stagger alongside .reveal on a grid/list */
.stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.27s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.38s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.49s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.60s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.71s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.82s; }

/* Anchored sections clear the sticky nav */
section[id] { scroll-margin-top: 84px; }

/* ── Scroll-driven animations (GPU, Chrome/Edge) ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-grad);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root);
  }
  @keyframes progress-grow { to { transform: scaleX(1); } }

  /* Hero recedes as you scroll past it */
  .hero__inner {
    animation: hero-recede linear both;
    animation-timeline: scroll(root);
    animation-range: 0 85vh;
  }
  @keyframes hero-recede {
    to { opacity: 0.15; transform: translateY(70px) scale(0.96); }
  }

  /* Timeline line draws itself as it enters view */
  .timeline::before {
    transform-origin: top;
    animation: draw-line linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 65%;
  }
  @keyframes draw-line {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
  }
}

/* Gentle float on the hero cost card */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.cost-card { animation: floaty 6.5s ease-in-out 1.2s infinite; }


/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 24, 56, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo em { color: var(--gold); font-style: italic; }
.nav__logo-img {
  height: 48px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.15s;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--pad-x) 24px;
  border-top: 1px solid var(--border);
  background: var(--navy-deep);
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 2px; }
.nav__mobile ul a {
  display: block;
  padding: 11px 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.nav__mobile ul a:hover { background: var(--gold-pale); color: var(--gold-light); }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse 65% 80% at 78% 42%, rgba(201,148,58,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 8% 90%, rgba(232,184,75,0.05) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 58%, var(--navy-mid) 100%);
  padding: clamp(80px, 10vw, 124px) var(--pad-x) clamp(88px, 11vw, 132px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero__copy h1 { color: var(--white); margin-bottom: 22px; }
.hero__em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 36px;
}
.hero__ctas { margin-bottom: 20px; }
.hero__note {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Cost card */
.cost-card {
  background: linear-gradient(170deg, var(--navy-card) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,148,58,0.10);
  overflow: hidden;
}
.cost-card__header {
  background: var(--gold-grad);
  color: #1A1303;
  padding: 15px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,148,58,0.14);
}
.cost-item {
  background: linear-gradient(170deg, var(--navy-card) 0%, rgba(10,24,56,0.97) 100%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cost-item--highlight {
  background: linear-gradient(150deg, rgba(201,148,58,0.16) 0%, rgba(201,148,58,0.05) 100%);
}
.cost-item--highlight .cost-item__val { color: var(--gold-light); }
.cost-item--highlight .cost-item__label { color: var(--text-mid); }
.cost-item__val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.cost-item__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cost-card__footer {
  padding: 15px 22px;
  font-size: 0.78rem;
  color: var(--gold-light);
  background: rgba(201,148,58,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-deep);
  padding: 16px var(--pad-x);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { color: var(--gold-border); font-size: 1rem; }


/* ═══════════════════════════════════════════════
   PROBLEM / WHAT WE AUTOMATE  (white section)
   ═══════════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: #fff;
  border: 1px solid #E5EAF3;
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
}
.work-card:hover {
  box-shadow: 0 6px 16px rgba(14, 27, 61, 0.08), 0 24px 48px rgba(14, 27, 61, 0.14);
  transform: translateY(-4px);
  border-top-color: var(--gold);
}
.work-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.work-card__icon--navy  { background: linear-gradient(135deg, #E3EAFB, #D2DDF7); color: var(--navy); }
.work-card__icon--gold  { background: linear-gradient(135deg, #FBEFD8, #F6E2B8); color: var(--gold-dim); }
.work-card__icon--teal  { background: linear-gradient(135deg, #E3EAFB, #F6E2B8); color: var(--navy-mid); }
.work-card h3 { margin-bottom: 14px; color: var(--ink); }
.work-list { display: flex; flex-direction: column; gap: 10px; }
.work-list li {
  font-size: 0.87rem;
  color: var(--ink-mid);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.work-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,58,0.15);
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS — PILLARS  (dark section)
   ═══════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pillar-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(201,148,58,0.16);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent 60%);
}
.pillar-card:hover {
  background: linear-gradient(165deg, rgba(201,148,58,0.09) 0%, rgba(201,148,58,0.02) 100%);
  border-color: rgba(201,148,58,0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.pillar-card__num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.pillar-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.12rem; }
.pillar-card p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }


/* ═══════════════════════════════════════════════
   TIMELINE  (white section)
   ═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201,148,58,0.5) 0%, rgba(201,148,58,0.12) 80%, transparent 100%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 30px;
  padding: 22px 0;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 82px;
  top: 30px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,148,58,0.14);
  z-index: 1;
}
.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dim);
  padding-top: 2px;
  text-align: right;
  padding-right: 18px;
  font-style: italic;
}
.timeline-content p {
  font-size: 0.96rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.pull-quote {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 34px 38px;
  max-width: 680px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pull-quote::before {
  content: '“';
  position: absolute;
  top: -12px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 7rem;
  color: rgba(201,148,58,0.14);
  line-height: 1;
  pointer-events: none;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 14px;
  position: relative;
}
.pull-quote cite {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════
   STEPS  (muted navy section)
   ═══════════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: stretch;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  background: linear-gradient(170deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201,148,58,0.18);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  border-color: rgba(201,148,58,0.5);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.step__num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; font-size: 1.12rem; color: var(--white); }
.step p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.step__arrow {
  color: var(--gold);
  align-self: flex-start;
  margin-top: 56px;
  flex-shrink: 0;
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════
   Q&A  (white section)
   ═══════════════════════════════════════════════ */
.faq {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(14, 27, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s;
  overflow: hidden;
}
.faq-item:hover,
.faq-item[open] { border-color: var(--gold-border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -3px;
  border-radius: var(--radius);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-pale);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-dim);
  border-radius: 1px;
  transition: background 0.3s ease;
}
.faq-item__icon::before { width: 12px; height: 2px; }
.faq-item__icon::after  { width: 2px;  height: 12px; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--gold); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: #fff; }

.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 62ch;
}
.faq-item[open] .faq-item__body { animation: faq-open 0.35s ease both; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.faq-foot { font-size: 0.92rem; color: var(--ink-mid); }
.faq-foot a {
  color: var(--gold-dim);
  font-weight: 700;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.2s;
}
.faq-foot a:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.cta-final {
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(201,148,58,0.16) 0%, transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: var(--section-pad) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border) 30%, var(--gold-border) 70%, transparent);
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-final__inner .eyebrow { justify-content: center; }
.cta-final__inner .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.cta-final__inner h2 { color: var(--white); margin-bottom: 18px; margin-top: 8px; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.cta-final__inner h2 em {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 38px;
}
.cta-final__email {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cta-final__email a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.cta-final__email a:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 56px var(--pad-x) 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,148,58,0.12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__logo em { color: var(--gold); }
.footer__logo-img {
  height: 64px;
  width: auto;
}
.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  max-width: 210px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.15s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.74rem;
  flex-wrap: wrap;
}
.footer__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__card { max-width: 480px; }

  .pillars-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .work-grid { grid-template-columns: 1fr; }

  .timeline { max-width: 100%; }
  .timeline::before { left: 68px; }
  .timeline-item { grid-template-columns: 68px 1fr; gap: 18px; }
  .timeline-item::after { left: 62px; }

  .steps { flex-direction: column; align-items: stretch; }
  .step__arrow { display: none; }

  .trust-bar__inner { gap: 12px; }
  .trust-sep { display: none; }

  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }

  .pull-quote { padding: 26px 22px; }
  .pull-quote p { font-size: 1.15rem; }

  .faq-item summary { padding: 16px 18px; font-size: 1.05rem; }
  .faq-item__body { padding: 0 18px 18px; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }
  .cost-item__val { font-size: 1.45rem; }
}

/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .btn { transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
