/* =============================================
   Greenland Advisors — Phase 2 (Narrative Rebuild)
   Mobile-first. Fraunces (display) + Inter (body).
   ============================================= */

:root {
  --green:        #22b573;
  --green-dark:   #1a9760;
  --navy:         #2d5179;
  --navy-deep:    #0B1A2E;
  --white:        #FFFFFF;
  --off-white:    #F7F5F2;
  --text-body:    #3A3A3A;
  --text-muted:   #6B6B6B;
  --border-light: #E1DDD7;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --grid-texture:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 52px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; text-wrap: balance; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
a, button { touch-action: manipulation; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 2px; }
section[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute; top: -48px; left: 16px; z-index: 2000;
  background: var(--navy-deep); color: #fff; padding: 12px 20px;
  border-radius: 0 0 6px 6px; font-weight: 600; font-size: 14px;
  transition: top 0.15s ease-out;
}
.skip-link:focus { top: 0; }

/* ---------- Layout utilities ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
section { padding: 54px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.h2 {
  font-size: clamp(30px, 5vw, 44px); color: var(--navy);
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.lede { font-size: 18px; color: var(--text-muted); line-height: 1.6; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-weight: 600; font-size: 16px; letter-spacing: 0.01em;
  padding: 15px 34px; border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.18s, transform 0.1s, box-shadow 0.2s; text-align: center;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(34,181,115,0.28); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 17px 42px; font-size: 18px; }
.btn-xl { padding: 20px 52px; font-size: 19px; }
.cta-sub { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.cta-block { margin-top: 30px; }
.cta-block.center { text-align: center; }

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
  .reveal.revealed { opacity: 1; transform: none; }
}

/* ============================================
   SECTION 0 — ANNOUNCEMENT + NAV
   ============================================ */
#announcement {
  background: var(--navy-deep); color: rgba(255,255,255,0.85);
  text-align: center; font-size: 13px; padding: 9px 16px;
}
#announcement strong { color: #fff; }
#announcement a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
#announcement a:hover { color: #3cc878; }

#navbar {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  border-bottom: 2px solid var(--green); transition: box-shadow 0.2s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.09); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 54px; width: auto; }
.nav-inner .btn { padding: 11px 22px; font-size: 14px; }

/* ============================================
   BEAT 1 — HERO (THE MIRROR)
   ============================================ */
#hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(34,181,115,0.06), transparent 70%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  padding: 26px 0 72px; text-align: center;
}
.hero-inner { max-width: 880px; margin: 0 auto; }
/* ICP qualifier as a premium credential pill badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy);
  background: rgba(34, 181, 115, 0.10);
  border: 1.5px solid var(--green);
  border-radius: 100px; padding: 10px 22px; margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero-h1 {
  font-size: clamp(34px, 6vw, 60px); color: var(--navy);
  letter-spacing: -0.02em; margin: 6px 0 22px;
}
.hero-arrow {
  display: inline-block; width: 1em; height: 0.78em;
  margin-left: 0.15em; vertical-align: baseline;
  overflow: visible;
  transform: scale(1); transform-origin: left bottom;
}
.hero-sub { font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; color: var(--text-muted); line-height: 1.55; max-width: 730px; margin: 0 auto 28px; }
.hero-pull {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 1.7vw, 19px); color: var(--navy);
  max-width: 720px; margin: 0 auto 40px; line-height: 1.4;
  padding: 18px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.vsl-wrap { max-width: 860px; margin: 0 auto 36px; }
.vsl-wrap .video-facade { border-radius: 14px; box-shadow: 0 26px 70px rgba(11,26,46,0.24); }
.vsl-wrap wistia-player { display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 26px 70px rgba(11,26,46,0.24); }

/* ---------- Video facade (shared) ---------- */
.video-facade {
  position: relative; aspect-ratio: 16 / 9; background: var(--navy-deep);
  border-radius: 10px; overflow: hidden; cursor: pointer;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-facade iframe { width: 100%; height: 100%; border: 0; }
.video-facade.playing { cursor: default; }
.facade-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 66px; height: 66px; background: var(--green); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 6px 22px rgba(0,0,0,0.3); transition: transform 0.2s, background 0.2s;
}
.video-facade:hover .facade-play { transform: translate(-50%,-50%) scale(1.08); background: var(--green-dark); }
.facade-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.facade-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.facade-placeholder .facade-play { position: static; transform: none; }
.facade-placeholder:hover .facade-play { transform: scale(1.08); }
.facade-placeholder p { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 0 16px; text-align: center; }

/* ============================================
   BEAT 2 — PROOF BAR
   ============================================ */
#proof { background: var(--off-white); border-top: 3px solid var(--green); padding: 56px 0; }
.proof-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 36px; }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 32px 16px; }
.proof-stat { text-align: center; }
.proof-num { font-family: var(--font-display); font-variant-numeric: tabular-nums; font-size: clamp(34px, 4.5vw, 50px); font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.01em; margin-bottom: 8px; }
.proof-cap { font-size: 13px; color: var(--text-muted); line-height: 1.4; max-width: 180px; margin: 0 auto; }

/* ============================================
   SECTION 3 — SUCCESS STORIES
   ============================================ */
#stories { background: linear-gradient(160deg, #ecf8f1 0%, #ddf0e6 100%); }
.deal-pill { display: inline-block; background: rgba(34,181,115,0.14); color: var(--green-dark); border: 1px solid rgba(34,181,115,0.32); border-radius: 100px; padding: 7px 16px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.stars { color: var(--green); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.featured-cap .deal-pill { margin: 12px 0 0; }

/* ============================================
   PULL-QUOTE (connective tissue)
   ============================================ */
.pullquote { background: var(--off-white); padding: 48px 0; }
.pullquote .stars { text-align: center; margin: 0 auto 18px; display: block; }
.pullquote blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px); color: var(--navy); line-height: 1.4; text-align: center; max-width: 720px; margin: 0 auto 16px; }
.pullquote cite { display: block; text-align: center; font-style: normal; font-size: 14px; color: var(--text-muted); }

/* ============================================
   SECTION 4 — ROLLUP
   ============================================ */
#rollup { background: #fff; }
.rollup-inner { max-width: 780px; margin: 0 auto; }
.rollup-body { font-size: 17px; line-height: 1.75; color: var(--text-body); }
.rollup-body strong { color: var(--navy); }

/* ============================================
   BEAT 3 — THE GAP
   ============================================ */
#gap { background: var(--off-white); }
.obstacles { list-style: none; max-width: 760px; margin: 0 0 48px; counter-reset: ob; }
.obstacles li { counter-increment: ob; position: relative; padding: 22px 0 22px 60px; border-bottom: 1px solid var(--border-light); }
.obstacles li::before { content: counter(ob, decimal-leading-zero); position: absolute; left: 0; top: 22px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--green); }
.obstacles h3 { font-size: 18px; color: var(--navy); margin-bottom: 5px; }
.obstacles p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.gap-stat { background: var(--navy-deep); border-radius: 14px; padding: 44px 32px; text-align: center; margin-bottom: 28px; }
.gap-stat p { font-size: clamp(18px, 2.4vw, 23px); color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto; line-height: 1.5; }
.gap-stat strong { color: var(--green); }
.gap-turn { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 24px); color: var(--navy); line-height: 1.45; max-width: 720px; margin: 0 auto; text-align: center; }
.gap-turn strong { color: var(--green-dark); }

/* THE PROCESS — guided vertical timeline (dark, high-contrast) */
#process { background: var(--grid-texture), var(--navy-deep); }
#process .eyebrow { color: var(--green); }
#process .h2 { color: #fff; }
.process-sub { font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,0.72); line-height: 1.6; max-width: 640px; margin: 14px auto 0; }
.timeline { list-style: none; position: relative; max-width: 720px; margin: 52px auto 0; }
.timeline::before { content: ''; position: absolute; left: 25px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--green), rgba(34,181,115,0.25)); }
.tl-step { position: relative; padding: 0 0 36px 80px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  box-shadow: 0 0 0 6px rgba(34,181,115,0.16);
}
.tl-time { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.tl-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 22px); color: #fff; margin-bottom: 7px; }
.tl-desc { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ============================================
   BEAT 4 — BUY / SCALE / SELL (centerpiece)
   ============================================ */
/* ============================================
   SECTION 5.5 — INDUSTRIES
   ============================================ */
#industries { background: var(--off-white); border-top: 1px solid var(--border-light); }
.industry-row { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 16px; max-width: 1000px; margin: 0 auto; }
.industry-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.industry-icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; color: var(--navy); background: #fff; border: 1.5px solid var(--border-light); border-radius: 16px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.industry-icon svg { width: 30px; height: 30px; }
.industry-item:hover .industry-icon { border-color: var(--green); box-shadow: 0 6px 18px rgba(34, 181, 115, 0.14); transform: translateY(-3px); }
.industry-label { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--navy); max-width: 160px; }
.industry-note { text-align: center; max-width: 680px; margin: 52px auto 0; font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.6; color: var(--text-muted); }
.industry-note strong { font-style: normal; font-weight: 600; color: var(--green-dark); }

#ecosystem { background: #fff; }
.eco-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.eco-head .h2 { font-size: clamp(30px, 5.2vw, 46px); }

/* Buy / Scale / Sell — green division cards */
.eco-cards { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1100px; margin: 0 auto; }
.eco-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border-light); border-radius: 18px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.eco-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(34,181,115,0.18); }
.eco-card-top {
  position: relative; color: #fff;
  background: linear-gradient(145deg, #2ec27e 0%, #22b573 42%, #15834f 100%);
  padding: 22px 22px 6px;
}
.eco-card-tag { display: flex; align-items: baseline; gap: 9px; margin-bottom: 4px; }
.eco-card-num {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,0.65); letter-spacing: 1px;
}
.eco-card-kicker {
  font-family: var(--font-display); font-weight: 600; font-size: 34px;
  color: #fff; line-height: 1; letter-spacing: -0.01em;
}
.eco-card-art { margin-top: 10px; }
.eco-card-art svg { display: block; width: 100%; height: auto; }
.eco-card-body { padding: 22px 24px 28px; }
.eco-card-h { font-size: clamp(19px, 2.2vw, 22px); color: var(--navy); line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.01em; }
.eco-card-text { font-size: 15px; line-height: 1.65; color: var(--text-body); }
.eco-card-text strong { color: var(--green-dark); font-weight: 600; }
.eco-card-text em { font-style: italic; color: var(--text-muted); }
.eco-close { text-align: center; font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3.4vw, 33px); color: var(--navy); max-width: 820px; margin: 52px auto 0; line-height: 1.25; letter-spacing: -0.01em; }

/* Featured two-up video spotlight (light green wash, white cards) */
#featured { background: linear-gradient(160deg, #ecf8f1 0%, #ddf0e6 100%); }
#featured .eyebrow { color: var(--green-dark); }
#featured .h2 { color: var(--navy); }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 940px; margin: 0 auto; }
.featured-card { margin: 0; background: #fff; border: 1px solid rgba(34,181,115,0.2); border-radius: 18px; padding: 14px 14px 4px; box-shadow: 0 10px 30px rgba(34,181,115,0.12); transition: transform 0.2s, border-color 0.2s; }
.featured-card:hover { transform: translateY(-4px); border-color: rgba(34,181,115,0.5); }
.featured-video .video-facade { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 36px rgba(11,26,46,0.18); }
.featured-cap { text-align: center; padding: 18px 14px 16px; }
.featured-cap .stars { display: block; color: var(--green); margin-bottom: 9px; }
.featured-cap strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--navy); }
.featured-role { display: block; font-size: 14px; color: var(--text-muted); margin-top: 3px; }
.featured-quote { margin: 14px 0 0; font-family: var(--font-display); font-style: italic; font-size: 15.5px; line-height: 1.55; color: var(--text-muted); }
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1120px; } }

/* ============================================
   BEAT 5 — LEO
   ============================================ */
#leo { background: var(--off-white); }
.leo-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.leo-photo img, .leo-photo-ph { border: 3px solid var(--green); border-radius: 14px; }
.leo-photo img { width: 100%; max-width: 320px; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.leo-photo-ph { width: 100%; max-width: 320px; aspect-ratio: 4/5; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 1.5px; }
.leo-name { font-size: clamp(24px, 3vw, 32px); color: var(--navy); margin-bottom: 6px; }
.leo-title { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; }
.leo-story { font-size: 17px; line-height: 1.75; max-width: 620px; margin-bottom: 26px; }
.creds { display: flex; flex-wrap: wrap; gap: 10px; }
.cred { display: inline-block; background: #fff; border: 1px solid var(--border-light); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--navy); }

/* ============================================
   BEAT 6 — THE TURN (threshold)
   ============================================ */
#turn { background: var(--grid-texture), var(--navy-deep); text-align: center; padding: 110px 0; }
.turn-inner { max-width: 760px; margin: 0 auto; }
.turn-h { font-size: clamp(28px, 4.4vw, 42px); color: #fff; line-height: 1.2; margin-bottom: 22px; }
.turn-body { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.65; max-width: 620px; margin: 0 auto 36px; }
.turn-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ============================================
   SECTION 9 — VIDEO TESTIMONIALS
   ============================================ */
#testimonials { background: #fff; }
.tvid-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.tvid-cap { margin-top: 12px; font-size: 14px; color: var(--text-muted); }
.tvid-cap strong { display: block; color: var(--navy); font-weight: 600; }
.more-wrap { text-align: center; margin-top: 36px; }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--border-light); padding: 13px 30px; border-radius: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer; }
.btn-ghost:hover { border-color: var(--green); }

/* ============================================
   SECTION 10 — COMPARISON
   ============================================ */
#compare { background: var(--off-white); }
.cmp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
.cmp-col { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 30px 26px; }
.cmp-col.featured { border-top: 4px solid var(--green); box-shadow: 0 14px 40px rgba(11,26,46,0.1); }
.cmp-col h3 { font-size: 19px; color: var(--navy); margin-bottom: 20px; }
.cmp-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.cmp-list li { font-size: 14px; color: var(--text-muted); line-height: 1.5; display: flex; gap: 10px; }
.cmp-list li::before { content: '—'; color: var(--border-light); flex-shrink: 0; }
.featured .cmp-list li { color: var(--text-body); }
.featured .cmp-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.cmp-bottom { text-align: center; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); color: var(--navy); max-width: 660px; margin: 0 auto; line-height: 1.45; }

/* ============================================
   SECTION 11 — SCREENSHOT WALL
   ============================================ */
#wall { background: #fff; }
.wall { columns: 1; column-gap: 18px; }
.wall-item { break-inside: avoid; margin-bottom: 18px; border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; }
.wall-item img { width: 100%; display: block; }

/* ============================================
   SECTION 12 — GUARANTEE
   ============================================ */
#guarantee { background: linear-gradient(160deg, #ecf8f1 0%, #ddf0e6 100%); text-align: center; }
.guar-inner { max-width: 680px; margin: 0 auto; }
.guar-badge { width: 76px; height: 76px; margin: 0 auto 24px; color: var(--green-dark); }
.guar-badge svg { width: 100%; height: 100%; }
.guar-inner h2 { font-size: clamp(26px, 3.5vw, 34px); color: var(--navy); margin-bottom: 16px; }
.guar-inner p { font-size: 18px; color: var(--text-body); line-height: 1.7; }
.guar-inner strong { color: var(--navy); }

/* ============================================
   SECTION 13 — FAQ
   ============================================ */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--green-dark); }
.faq-icon { width: 26px; height: 26px; min-width: 26px; border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; color: var(--green); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ============================================
   SECTION 14 — FINAL CTA
   ============================================ */
#final { background: linear-gradient(170deg, var(--navy-deep) 0%, #122a47 100%); text-align: center; padding: 120px 0; }
.final-inner { max-width: 640px; margin: 0 auto; }
.final-h { font-size: clamp(30px, 5vw, 48px); color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.final-sub { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 40px; }
.final-urgency { font-size: 14px; color: var(--green); margin-top: 16px; }

/* ============================================
   SECTION 15 — FOOTER
   ============================================ */
#footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-inner img { height: 30px; width: auto; }
.footer-disc { font-size: 12px; color: rgba(255,255,255,0.4); max-width: 540px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================
   MOBILE HERO HEADLINE — tighten to 3 lines, fill width
   ============================================ */
@media (max-width: 767px) {
  #hero { padding-top: 12px; }
  #hero .container { padding-left: 10px; padding-right: 10px; }
  .hero-badge { margin-bottom: 14px; padding: 8px 18px; }
  .hero-h1 {
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 4px 0 12px;
  }
  .hero-sub { line-height: 1.45; margin-bottom: 14px; }
  .hero-pull { font-size: clamp(14px, 3.8vw, 15px); padding: 9px 0; margin: 0 auto 16px; white-space: nowrap; }
  .vsl-wrap { margin-bottom: 24px; }
}

/* ============================================
   TABLET — 768px+
   ============================================ */
@media (min-width: 768px) {
  section { padding: 68px 0; }
  #hero { padding: 64px 0 80px; }
  .hero-h1 .hb { display: none; }
  .container, .container-narrow { padding: 0 24px; }
  .proof-grid { grid-template-columns: repeat(3, auto); justify-content: center; gap: 32px 72px; }
  .industry-row { grid-template-columns: repeat(3, 1fr); }
  .tvid-grid { grid-template-columns: repeat(2, 1fr); }
  .cmp-grid { grid-template-columns: repeat(3, 1fr); }
  .wall { columns: 2; }
  .leo-inner { grid-template-columns: 320px 1fr; gap: 52px; }
  .eco-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============================================
   DESKTOP — 1080px+
   ============================================ */
@media (min-width: 1080px) {
  .tvid-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-row { grid-template-columns: repeat(6, 1fr); max-width: none; }
  .wall { columns: 3; }
  .cmp-col.featured { transform: scale(1.03); position: relative; z-index: 1; }
}
