/* ==========================================================================
   Online Trust Attorney — Invstor option
   Design system ported 1:1 from the Invstor X Webflow template: clean
   fintech/SaaS look on a white ground, deep navy ink (#0e1435), a single
   confident gold accent (#b2823a), Inter Tight for headings with Inter for
   body copy, fully pill buttons (96px) with colored accent-glow shadows,
   generously rounded 24-40px cards and media, uppercase tight-tracked
   eyebrow labels, and a two-column hero (copy left, large rounded media
   right). Content and section order follow the OTA content brief.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  /* --- Invstor color tokens --- */
  --bg:#ffffff;
  --surface-2:#f9f9f9;
  --tint:#fcf9f4;
  --tint-strong:#f2e6cc;
  --ink:#10162e;
  --ink-2:#222634;
  --muted:#474b64;
  --hint:#aca89d;
  --border:#e4ded2;
  --white:#ffffff;

  --accent:#bd8a3e;
  --accent-dark:#a07534;
  --accent-tint:#f0e4d1;
  --accent-tint-soft:#fbf7f1;
  --gold:#bd8a3e;
  --gold-tint:#f0e4d1;

  --good:#05c168;
  --good-dark:#11845b;
  --good-tint:#def2e6;
  --bad:#dc2b2b;
  --bad-tint:#ffeff0;

  /* --- radii --- */
  --r-chip:12px;
  --r-card:24px;
  --r-panel:40px;
  --r-pill:96px;

  /* --- shadows --- */
  --shadow-1:0 2px 12px rgba(20,20,43,.08);
  --shadow-2:0 8px 24px rgba(20,20,43,.10);
  --shadow-3:0 20px 48px rgba(20,20,43,.14);
  --shadow-4:0 32px 72px rgba(20,20,43,.24);
  --shadow-btn:0 10px 28px rgba(178,130,58,.16);
  --shadow-btn-hover:0 14px 34px rgba(178,130,58,.28);
  --shadow-gold:0 32px 72px rgba(178,130,58,.22);

  /* --- layout --- */
  --container:1440px;
  --gutter:48px;

  /* --- signature easing --- */
  --ease-invstor:cubic-bezier(.4,0,.2,1);

  /* --- fonts --- */
  --font-heading:'Inter Tight', Arial, sans-serif;
  --font-body:'Inter', Arial, sans-serif;
}

@media (max-width:1199px){ :root{ --gutter:32px; } }
@media (max-width:767px){ :root{ --gutter:20px; } }

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5,h6,p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 var(--gutter); }
section{ position:relative; }
[id]{ scroll-margin-top:100px; }

/* ---------- Typography scale (Invstor) ---------- */
.h1{ font-family:var(--font-heading); font-size:68px; line-height:.971; font-weight:500; letter-spacing:-.01em; }
.h2{ font-family:var(--font-heading); font-size:38px; line-height:1.316; font-weight:500; letter-spacing:-.01em; }
.h3{ font-family:var(--font-heading); font-size:24px; line-height:1.417; font-weight:500; }
.h4{ font-family:var(--font-heading); font-size:20px; line-height:1.4; font-weight:600; }
.lead{ font-size:18px; line-height:1.6; color:var(--muted); }
.body-s{ font-size:14px; line-height:1.5; color:var(--muted); }
.text-muted{ color:var(--muted); }
.accent{ color:var(--accent); }

@media (max-width:991px){
  .h1{ font-size:46px; line-height:1.08; }
  .h2{ font-size:30px; }
  .h3{ font-size:21px; }
}
@media (max-width:479px){ .h1{ font-size:36px; } .h2{ font-size:26px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-heading);
  font-size:14px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--accent);
  margin:0 0 16px;
}
.eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--accent); flex:none; }

.section-head{ max-width:680px; margin:0 0 56px; }
.section-head h2{ margin:0 0 16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.wide{ max-width:840px; }

/* ---------- Buttons (Invstor pill, colored glow) ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:12px;
  background:var(--accent);
  color:var(--white);
  font-family:var(--font-heading);
  font-size:16px; font-weight:600;
  padding:18px 28px;
  border-radius:var(--r-pill);
  border:1px solid var(--accent);
  box-shadow:var(--shadow-btn);
  white-space:nowrap;
  transition:transform .3s var(--ease-invstor), box-shadow .3s var(--ease-invstor), background .3s var(--ease-invstor);
}
.btn:hover{ background:var(--accent-dark); transform:translateY(-2px); box-shadow:var(--shadow-btn-hover); }
.btn .btn-icon{ flex:none; display:flex; align-items:center; justify-content:center; transition:transform .3s var(--ease-invstor); }
.btn .btn-icon svg{ width:18px; height:18px; color:var(--white); }
.btn:hover .btn-icon{ transform:translateX(4px); }

.btn-secondary{ background:var(--white); color:var(--ink); border-color:var(--border); box-shadow:none; }
.btn-secondary .btn-icon{ width:44px; height:44px; border-radius:50%; background:var(--accent-tint-soft); }
.btn-secondary .btn-icon svg{ width:16px; height:16px; color:var(--accent); }
.btn-secondary:hover{ background:var(--white); border-color:var(--accent); box-shadow:var(--shadow-2); }
.btn-secondary:hover .btn-icon{ transform:rotate(45deg); }

.btn-on-dark{ background:var(--white); color:var(--ink); border-color:var(--white); box-shadow:none; }
.btn-on-dark .btn-icon{ width:44px; height:44px; border-radius:50%; background:var(--accent-tint-soft); }
.btn-on-dark .btn-icon svg{ width:16px; height:16px; color:var(--accent); }
.btn-on-dark:hover{ background:var(--tint); transform:translateY(-2px); }
.btn-on-dark:hover .btn-icon{ transform:rotate(45deg); }

.btn.small{ padding:12px 20px; font-size:14px; gap:8px; }
.btn.small .btn-icon svg{ width:15px; height:15px; }
.btn-secondary.small .btn-icon, .btn-on-dark.small .btn-icon{ width:36px; height:36px; }
.btn-secondary.small .btn-icon svg, .btn-on-dark.small .btn-icon svg{ width:14px; height:14px; }

.text-link{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-heading); font-weight:600; font-size:16px; color:var(--accent);
  transition:color .3s ease, gap .3s var(--ease-invstor);
}
.text-link:hover{ color:var(--accent-dark); gap:12px; }
.text-link svg{ width:16px; height:16px; flex:none; }
.text-link.on-dark{ color:var(--white); }
.text-link.on-dark:hover{ color:var(--accent-tint); }

/* ---------- Top utility bar ---------- */
.topbar{ background:var(--ink); color:rgba(255,255,255,.82); }
.topbar .container{ display:flex; justify-content:flex-end; gap:28px; padding-top:9px; padding-bottom:9px; font-size:13px; }
.topbar a{ display:inline-flex; align-items:center; gap:6px; opacity:.9; transition:opacity .2s ease; }
.topbar a:hover{ opacity:1; color:var(--accent-tint); }
.topbar svg{ width:14px; height:14px; }

/* ---------- Nav (Invstor transparent-over-hero) ---------- */
.nav-wrap{ position:sticky; top:0; z-index:60; transition:background .3s ease, box-shadow .3s ease; }
.nav-wrap.is-scrolled{ background:rgba(255,255,255,.92); backdrop-filter:blur(14px); box-shadow:var(--shadow-1); }
.navbar{
  max-width:var(--container);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:28px var(--gutter);
  transition:padding .3s ease;
}
.nav-wrap.is-scrolled .navbar{ padding:16px var(--gutter); }
.logo-brand{ display:flex; align-items:center; gap:10px; flex:none; }
.logo-brand svg{ width:32px; height:32px; }
.logo-brand .brand-name{ font-family:var(--font-heading); font-weight:600; font-size:16px; line-height:20px; color:var(--ink); }
.logo-brand .brand-name small{ display:block; font-family:var(--font-body); font-weight:400; font-size:11px; color:var(--muted); }

.nav-menu{ display:flex; align-items:center; gap:8px; }
.nav-link{ font-size:15px; font-weight:500; color:var(--ink-2); padding:10px 14px; border-radius:var(--r-pill); transition:background .3s ease, color .3s ease; }
.nav-link:hover{ background:var(--accent-tint-soft); color:var(--accent); }
.nav-menu-cta{ margin-left:8px; }

.menu-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; }
.menu-burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.menu-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-burger.is-open span:nth-child(2){ opacity:0; }
.menu-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:991px){
  .nav-menu{
    position:fixed; inset:92px 20px auto 20px;
    background:var(--white); border-radius:var(--r-card); box-shadow:var(--shadow-4);
    flex-direction:column; align-items:stretch; padding:14px; gap:4px;
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .nav-menu.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-link{ padding:14px 16px; border-radius:var(--r-chip); }
  .nav-menu-cta{ margin:8px 4px 4px; justify-content:center; }
  .menu-burger{ display:flex; }
}

/* ---------- Hero (two-column) ---------- */
.hero{ background:linear-gradient(180deg, var(--tint) 0%, var(--bg) 100%); padding:24px 0 0; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; padding-top:40px; padding-bottom:64px; }
.hero-copy h1{ margin:0 0 24px; }
.hero-copy p{ max-width:48ch; margin:0 0 36px; }
.hero-cta-row{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }

.hero-media-frame{ position:relative; width:100%; border-radius:var(--r-panel); overflow:hidden; box-shadow:var(--shadow-4); aspect-ratio:4/5; max-height:62vh; }
.hero-media-frame img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.hero-media-frame::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(14,20,53,0) 55%, rgba(14,20,53,.55) 100%); }

.hero-video-badge{
  position:absolute; left:24px; bottom:24px; z-index:2;
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-radius:var(--r-pill);
  padding:8px 22px 8px 8px;
  box-shadow:var(--shadow-3);
  cursor:pointer;
  transition:transform .3s var(--ease-invstor);
}
.hero-video-badge:hover{ transform:translateY(-2px); }
.play-btn{ flex:none; width:44px; height:44px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; }
.play-btn::after{ content:""; width:0; height:0; margin-left:3px; border-top:7px solid transparent; border-bottom:7px solid transparent; border-left:11px solid var(--white); }
.hero-video-caption{ color:var(--ink); font-size:13px; font-weight:600; max-width:140px; line-height:1.3; }

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; gap:32px; padding:32px 0 56px; }
  .hero-media-frame{ aspect-ratio:16/10; }
}

/* ---------- Feature strip ---------- */
.feature-strip{ padding:0 0 96px; }
.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.feature-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--r-card);
  padding:30px 26px; display:flex; gap:18px; align-items:flex-start;
  box-shadow:var(--shadow-1);
  transition:box-shadow .3s var(--ease-invstor), transform .3s var(--ease-invstor);
}
.feature-card:hover{ box-shadow:var(--shadow-3); transform:translateY(-4px); }
.icon-chip{ flex:none; width:52px; height:52px; border-radius:50%; background:var(--accent-tint-soft); display:flex; align-items:center; justify-content:center; }
.icon-chip svg{ width:22px; height:22px; stroke:var(--accent); }
.feature-card h4{ margin:0 0 6px; }
.feature-card p{ font-size:14px; line-height:1.6; color:var(--muted); }

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

/* ---------- Generic section rhythm ---------- */
.section{ padding:112px 0; }
.section.tight{ padding:80px 0; }
.section.on-tint{ background:var(--tint); }
@media (max-width:991px){ .section{ padding:76px 0; } .section.tight{ padding:56px 0; } }

/* ---------- Why It Matters ---------- */
.why-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:start; }
.why-media{ border-radius:var(--r-panel); overflow:hidden; aspect-ratio:5/4; box-shadow:var(--shadow-3); }
.why-media img{ width:100%; height:100%; object-fit:cover; }
.why-copy .section-head{ margin-bottom:24px; max-width:none; }

.reason-list{ display:flex; flex-direction:column; gap:28px; margin-top:32px; }
.reason-item{ display:flex; gap:16px; align-items:flex-start; }
.reason-item .icon-chip{ margin-top:2px; }
.reason-item-text h4{ margin:0 0 6px; }
.reason-item-text p{ font-size:15px; line-height:1.6; color:var(--muted); }

@media (max-width:991px){
  .why-grid{ grid-template-columns:1fr; gap:32px; }
  .why-media{ aspect-ratio:16/9; order:-1; }
}

/* ---------- Process ---------- */
.process-wrap{ display:grid; grid-template-columns:1fr .85fr; gap:56px; align-items:start; }
.process-steps{ display:flex; flex-direction:column; }
.process-step{ position:relative; display:flex; gap:24px; padding-bottom:44px; }
.process-step:last-child{ padding-bottom:0; }
.process-track{ flex:none; display:flex; flex-direction:column; align-items:center; width:48px; }
.process-num{
  width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-heading); font-weight:600; font-size:16px;
  background:var(--tint-strong); color:var(--muted); border:1px solid var(--border);
}
.process-step.is-active .process-num{ background:var(--accent); color:var(--white); border-color:var(--accent); box-shadow:var(--shadow-btn); }
.process-line{ width:1px; flex:1; background:var(--border); margin-top:8px; }
.process-card h3{ margin:0 0 8px; }
.process-card p{ color:var(--muted); font-size:15px; line-height:1.6; max-width:44ch; }
.process-media{ border-radius:var(--r-panel); overflow:hidden; aspect-ratio:5/4; box-shadow:var(--shadow-3); }
.process-media img{ width:100%; height:100%; object-fit:cover; }
.section-foot-link{ margin-top:6px; display:inline-flex; }

@media (max-width:900px){ .process-wrap{ grid-template-columns:1fr; gap:32px; } .process-media{ order:-1; aspect-ratio:16/9; } }

/* ---------- Comparison ---------- */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.compare-card{ background:var(--white); border:1px solid var(--border); border-radius:var(--r-card); padding:40px; display:flex; flex-direction:column; box-shadow:var(--shadow-1); }
.compare-card.is-recommended{ background:linear-gradient(180deg, var(--tint) 0%, var(--white) 100%); border-color:var(--accent); box-shadow:var(--shadow-3); }
.compare-card-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.compare-card-head h3{ font-size:22px; }
.badge{
  display:inline-flex; align-items:center; font-family:var(--font-heading);
  font-size:12px; font-weight:600; letter-spacing:.02em;
  color:var(--white); background:var(--gold); padding:7px 16px; border-radius:var(--r-pill);
  white-space:nowrap;
}
.compare-intro{ color:var(--muted); font-size:15px; line-height:1.6; margin-bottom:28px; }
.compare-rows{ display:flex; flex-direction:column; gap:18px; }
.compare-row{ display:flex; gap:14px; align-items:flex-start; padding-top:18px; border-top:1px solid var(--border); }
.compare-rows .compare-row:first-child{ padding-top:0; border-top:none; }
.compare-row-icon{ flex:none; width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.compare-card:not(.is-recommended) .compare-row-icon{ background:var(--border); color:var(--muted); }
.compare-card.is-recommended .compare-row-icon{ background:var(--accent-tint); color:var(--accent); }
.compare-row-icon svg{ width:14px; height:14px; }
.compare-row-text label{ display:block; font-family:var(--font-heading); font-weight:600; font-size:14px; margin-bottom:3px; }
.compare-row-text p{ font-size:14px; color:var(--muted); line-height:1.5; }

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

/* ---------- Your Attorney ---------- */
.attorney-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:center; }
.attorney-media{ border-radius:var(--r-panel); overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-3); }
.attorney-media img{ width:100%; height:100%; object-fit:cover; }
.attorney-meta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:14px; margin-bottom:22px; }
.attorney-copy .bio{ color:var(--muted); font-size:16px; line-height:1.7; margin-bottom:24px; max-width:56ch; }

@media (max-width:900px){ .attorney-grid{ grid-template-columns:1fr; gap:32px; } .attorney-media{ aspect-ratio:16/9; } }

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.price-card{
  background:var(--white); border:1px solid var(--border); border-radius:var(--r-card);
  padding:34px 30px 42px; display:flex; flex-direction:column;
  box-shadow:var(--shadow-1);
  transition:transform .3s var(--ease-invstor), box-shadow .3s var(--ease-invstor);
}
.price-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-3); }
.price-card.is-featured{ background:linear-gradient(180deg, var(--tint) 0%, var(--white) 100%); border-color:var(--accent); box-shadow:var(--shadow-gold); padding-bottom:52px; }
.price-card .badge{ align-self:flex-start; margin-bottom:20px; }
.price-card.is-featured .badge{ background:var(--gold); }
.price-card h3{ font-size:23px; margin-bottom:6px; }
.price-card .plan-kicker{ font-size:14px; font-weight:600; color:var(--gold); margin-bottom:16px; font-family:var(--font-heading); }
.price-card .best-for{ font-size:13px; color:var(--muted); margin-bottom:12px; }
.price-card .plan-desc{ font-size:15px; line-height:1.6; color:var(--muted); margin-bottom:24px; }
.price-tiles{ display:flex; gap:12px; margin-bottom:24px; }
.price-tile{ flex:1; background:var(--accent-tint-soft); border-radius:var(--r-chip); padding:16px; text-align:center; }
.price-tile.single-price{ flex:none; padding:16px 28px; }
.price-tile .amount{ font-family:var(--font-heading); font-weight:700; font-size:24px; color:var(--ink); }
.price-tile .label{ font-size:12px; color:var(--muted); margin-top:2px; }
.plan-features{ display:flex; flex-direction:column; gap:14px; margin-bottom:28px; flex:1; }
.plan-features li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; line-height:1.5; color:var(--muted); }
.plan-features li svg{ flex:none; width:16px; height:16px; stroke:var(--accent); margin-top:2px; }
.plan-features.trigger-note{ font-size:13px; color:var(--muted); font-style:italic; }
.price-card .btn{ justify-content:space-between; align-self:stretch; }

@media (max-width:991px){ .pricing-grid{ grid-template-columns:1fr; } .price-card.is-featured{ order:-1; } }

/* ---------- Flat Fee Means Flat Fee ---------- */
.flatfee-intro{ max-width:760px; font-size:18px; line-height:1.6; color:var(--muted); margin-bottom:56px; }
.flatfee-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:56px; }
.flatfee-col{ background:var(--white); border:1px solid var(--border); border-radius:var(--r-card); padding:36px; box-shadow:var(--shadow-1); }
.flatfee-col h4{ margin-bottom:22px; }
.flatfee-col ul{ display:flex; flex-direction:column; gap:16px; }
.flatfee-col li{ display:flex; align-items:flex-start; gap:12px; font-size:15px; line-height:1.5; color:var(--muted); }
.flatfee-col li svg{ flex:none; width:16px; height:16px; margin-top:3px; }
.flatfee-col.bad li svg{ stroke:var(--muted); }
.flatfee-col.good{ background:linear-gradient(180deg, var(--tint) 0%, var(--white) 100%); border-color:var(--accent); }
.flatfee-col.good li svg{ stroke:var(--accent); }
.flatfee-note{ font-size:14px; color:var(--muted); max-width:74ch; line-height:1.6; }
.flatfee-note a{ color:var(--accent); border-bottom:1px solid var(--accent); }

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

/* ---------- Founder quote band ---------- */
.quote-band{ background:var(--ink); padding:104px 0; overflow:hidden; }
.quote-card{ max-width:740px; margin:0 auto; text-align:center; }
.quote-mark{ display:block; font-family:var(--font-heading); font-weight:700; font-size:100px; line-height:1; color:var(--accent); margin-bottom:4px; }
.quote-text{ font-family:var(--font-heading); font-weight:500; font-size:34px; line-height:1.35; letter-spacing:-.01em; color:var(--white); }
.quote-rule{ display:block; width:44px; height:2px; background:var(--accent); margin:32px auto 20px; }
.quote-attribution{ display:flex; flex-direction:column; gap:4px; }
.quote-name{ font-family:var(--font-heading); font-weight:600; font-size:16px; color:var(--accent-tint); }
.quote-role{ font-size:13px; color:rgba(255,255,255,.55); }

@media (max-width:767px){
  .quote-band{ padding:72px 0; }
  .quote-mark{ font-size:72px; }
  .quote-text{ font-size:24px; }
}

/* ---------- Discovery CTA band ---------- */
.discovery-band{
  display:grid; grid-template-columns:1.1fr .9fr; gap:0; align-items:stretch;
  background:var(--ink); border-radius:var(--r-panel); overflow:hidden;
}
.discovery-copy{ padding:64px; display:flex; flex-direction:column; justify-content:center; gap:20px; }
.discovery-copy h2{ color:var(--white); }
.discovery-copy p{ color:rgba(255,255,255,.75); font-size:16px; line-height:1.7; max-width:52ch; }
.discovery-media{ min-height:320px; }
.discovery-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){
  .discovery-band{ grid-template-columns:1fr; }
  .discovery-copy{ padding:40px 28px; }
  .discovery-media{ order:-1; min-height:220px; }
}

/* ---------- FAQ ---------- */
.faq-wrap{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:start; }
.faq-list{ display:flex; flex-direction:column; }
.faq-row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 4px; border-bottom:1px solid var(--border);
  font-family:var(--font-heading); font-weight:600; font-size:17px; color:var(--ink);
  transition:color .3s ease, padding-left .3s var(--ease-invstor);
}
.faq-row svg{ flex:none; width:16px; height:16px; stroke:var(--accent); transition:transform .3s var(--ease-invstor); }
.faq-row:hover{ color:var(--accent); padding-left:10px; }
.faq-row:hover svg{ transform:translateX(4px); }
.faq-more{ margin-top:26px; }
.advisor-callout{ margin-top:44px; padding:28px; background:var(--tint); border:1px solid var(--border); border-radius:var(--r-card); }
.advisor-callout h4{ margin-bottom:14px; }
.faq-media{ border-radius:var(--r-panel); overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow-3); }
.faq-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){ .faq-wrap{ grid-template-columns:1fr; gap:32px; } .faq-media{ order:-1; aspect-ratio:16/9; } }

/* ---------- Resources ---------- */
.resource-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.resource-card{
  display:flex; flex-direction:column;
  border:1px solid var(--border); border-radius:var(--r-card); overflow:hidden;
  background:var(--white); box-shadow:var(--shadow-1);
  transition:box-shadow .3s var(--ease-invstor), transform .3s var(--ease-invstor);
}
.resource-card:hover{ box-shadow:var(--shadow-3); transform:translateY(-4px); }
.resource-media{ aspect-ratio:4/3; overflow:hidden; }
.resource-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-invstor); }
.resource-card:hover .resource-media img{ transform:scale(1.06); }
.resource-body{ padding:26px; display:flex; flex-direction:column; gap:10px; }
.resource-body p{ color:var(--muted); font-size:14px; }

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

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; background:linear-gradient(180deg, var(--bg) 0%, var(--tint) 100%); }
.final-cta p{ color:var(--muted); font-size:18px; max-width:52ch; margin:0 auto 40px; }
.final-cta-row{ display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.7); padding-top:80px; }
.footer-top{ display:grid; grid-template-columns:1.2fr 2fr; gap:64px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .logo-brand .brand-name{ color:var(--white); }
.footer-brand .logo-brand .brand-name small{ color:rgba(255,255,255,.6); }
.footer-brand p{ margin-top:20px; color:rgba(255,255,255,.65); font-size:15px; line-height:1.6; max-width:42ch; }
.footer-cols{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; }
.footer-col h5{ font-family:var(--font-heading); font-size:13px; letter-spacing:.04em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:15px; color:rgba(255,255,255,.85); transition:color .2s ease; }
.footer-col a:hover{ color:var(--accent-tint); }
.footer-col .addr{ font-size:15px; color:rgba(255,255,255,.85); line-height:1.5; }

.footer-bottom{ padding:36px 0 40px; }
.footer-firmline{ font-size:12px; color:rgba(255,255,255,.6); line-height:1.6; margin-bottom:16px; }
.footer-disclaimer{ font-size:11px; color:rgba(255,255,255,.42); line-height:1.6; margin-bottom:20px; }
.footer-legal-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:12px; color:rgba(255,255,255,.6); }
.footer-legal-row a{ color:rgba(255,255,255,.6); }
.footer-legal-row a:hover{ color:var(--accent-tint); }
.footer-legal-row .dot{ width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,.3); }

@media (max-width:900px){ .footer-top{ grid-template-columns:1fr; gap:36px; } .footer-cols{ grid-template-columns:1fr 1fr; } }
@media (max-width:479px){ .footer-cols{ grid-template-columns:1fr; } }

/* ---------- Reveal-on-scroll (progressive enhancement only) ---------- */
.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform:translateY(24px); transition:opacity .55s var(--ease-invstor), transform .55s var(--ease-invstor); }
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); }
