/* ============================================================
 * EVO TrustGuard — sales page CSS (page-index.css)
 *
 * Owner:        /css/AGENTS.md (page-CSS naming under LOCKED C57 §2)
 * Cascade:      after /css/tokens.css + /css/base.css; page-scoped, not shared
 * Edit policy:  page-specific rules only — no design primitives. Promote
 *               recurring values into /css/tokens.css before reuse.
 *
 * Authorship:
 *   - C68 audit identified the staged sales page bundle from Claude Design.
 *   - C69 Sprint 2 refactor: stripped Edit Mode + tweaks panel,
 *     dead relay-graphic block, body[data-featured] overrides; replaced
 *     staged --r-* / --s-* / --shadow-* / --fs-* / --font-* token names
 *     with the production tokens.css names; promoted #171414 / #181818 /
 *     #1f1f1f / #252525 / #262626 into the --marketing-* namespace;
 *     ported the LOCKED C38 inline-SVG brand into the header + footer;
 *     pinned the footer wordmark white-on-dark via a footer-scoped
 *     override.
 *   - C69 Sprint 3C cutover (this file): replaced the pre-cutover
 *     wizard-CSS-only page-index.css (51 lines: .hero-spacer +
 *     .p-input-group select extras) with the Sprint 2 staged sales-page
 *     CSS. The wizard rules migrated to /css/marketing.css ahead of
 *     the swap so /get-a-quote.html does not regress — see
 *     /docs/_audits/wizard-css-extraction-c69.md. After this commit
 *     /index.html serves the sales page; the seeker intake wizard
 *     lives at /get-a-quote.html and /houston-tx.html.
 * ============================================================ */

/* Reset + base */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-input);
  line-height: var(--leading-loose);
  /* C69-I two-tone dark conversion: marketing pages (/index, /about,
     /contact) are now always dark-spectrum. Body inherits --bg
     (#1a1a1a charcoal — the "deepest" tone) from base.css. The
     C61-era page-scoped white-body pin was removed; light-on-dark
     text + section bgs are set explicitly below. */
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Nav ─────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--marketing-border);
}
.site-nav .logo { display: flex; align-items: center; }
/* Brand-logo fills — marketing pages do not load /shared-themes.css, so the
   text-color rules from there don't reach this page. C69-I two-tone:
   TrustGuard wordmark pinned white-on-dark globally (was var(--dark)).
   Footer scope below keeps !important pin for redundancy. */
.brand-logo .brand-evo { fill: var(--red); }
.brand-logo .brand-trustguard { fill: #f5f5f5; }
.site-nav nav { display: flex; align-items: center; gap: 28px; }
.site-nav nav a {
  font-size: var(--text-base); font-weight: 500; color: #f5f5f5;
  transition: color .15s;
}
.site-nav nav a:hover { color: var(--red); }
.nav-sign-in { color: #aaa !important; }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: var(--text-base);
  transition: background .15s;
}
.nav-cta:hover { background: var(--red-hover); color: var(--white) !important; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  color: var(--white);
  padding: 88px 40px 104px;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: var(--red); pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -180px; right: -120px; opacity: .12; }
.hero::after  { width: 360px; height: 360px; bottom: -140px; left: -90px; opacity: .06; }

/* C69 polish: hero product mock stripped — hero is now single-column,
   left-aligned, max-width capped so the headline still wraps cleanly on
   desktop. The grid wrapper is preserved (rather than removed) so the
   responsive @media rules below keep working without churn. */
.hero-grid {
  position: relative;
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 72px; align-items: center;
}
.hero-eyebrow {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--marketing-red-accent); margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: 56px; line-height: 1.04;
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-wrap: balance;
  color: var(--white);
}
.final-cta h2 { color: var(--white); }
.price h3, .price h4 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 17px; line-height: 1.55; color: var(--text-disabled);
  margin-bottom: var(--space-8);
  max-width: 560px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 15px 28px; border-radius: 10px;
  font-weight: 600; font-size: var(--text-lg);
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--red-hover); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 15px 24px; border-radius: 10px;
  font-weight: 600; font-size: var(--text-lg);
  border: 1px solid #3a3a3a;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .15s, background .15s;
}
.btn-secondary:hover { border-color: var(--text-muted); background: rgba(255,255,255,.03); }
.btn-secondary svg { width: 16px; height: 16px; }

.hero-meta {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  font-size: var(--text-md); color: var(--text-faint);
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* C69 polish sprint: hero product mock CSS block stripped — see /index.html
   diff (.hero-mock / .mock-head / .mock-lead / .mock-pill / .mock-flow
   markup removed). The `@keyframes pulse` rule was only used by the mock's
   live-dot and is no longer referenced anywhere on the page; dropped along
   with the rest. */

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--marketing-section-elevated);
  border-bottom: 1px solid var(--marketing-border);
  padding: 28px 40px;
}
.trust-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--text-md); line-height: 1.45; color: #f5f5f5;
}
.trust-item .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(229,52,46,.12);
  color: var(--marketing-red-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-xs);
  margin-top: 1px;
}

/* ── Sections (generic) ──────────────────────────────────────────
   C69-I two-tone dark conversion (LOCKED C69-H sequence preserved):
   default `.section` is now ELEVATED (#242424) and `.section.dark`
   is DEEPEST (--bg #1a1a1a). All text light by default; cascade
   overrides set headings light, paragraphs muted-light. */
.section {
  padding: 88px 40px;
  background: var(--marketing-section-elevated);
  color: #f5f5f5;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section.dark { background: var(--bg); }
.section h2, .section h3, .section h4 { color: #f5f5f5; }
.section .eyebrow { color: var(--marketing-red-accent); }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--marketing-red-accent);
  margin-bottom: 14px;
}
.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center > p { margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: var(--font-sans);
  font-size: 44px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; margin-bottom: 14px;
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--red); }
.section-head p {
  font-size: 17px; color: #aaa; line-height: 1.55;
  max-width: 680px;
  text-wrap: pretty;
}

/* ── Problem points ─────────────────────────────────────────── */
.problem-points {
  max-width: 760px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.problem-points .problem-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--marketing-border);
}
.problem-points .problem-point:nth-last-child(-n+2) { border-bottom: none; }
.problem-points .problem-point .x {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(229,52,46,.12);
  color: var(--marketing-red-accent);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.problem-points h4 {
  font-size: 16px; font-weight: 600; margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.problem-points p {
  font-size: 14.5px; color: #aaa; line-height: 1.6;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .problem-points { grid-template-columns: 1fr; }
  .problem-points .problem-point { padding: 18px 0; }
  .problem-points .problem-point:nth-last-child(-n+2) { border-bottom: 1px solid var(--marketing-border); }
  .problem-points .problem-point:last-child { border-bottom: none; }
}

/* ── Workflow stepper (6 steps) ──────────────────────────────── */
.workflow {
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.workflow-track {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.workflow-track::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100% / 12); right: calc(100% / 12);
  height: 2px;
  background: var(--marketing-border);
  z-index: 0;
}
.workflow-track::after {
  content: '';
  position: absolute;
  top: 28px; left: calc(100% / 12);
  height: 2px;
  background: var(--red);
  z-index: 1;
  width: calc(100% - (100% / 6));
  transform: scaleX(var(--progress, 1));
  transform-origin: left;
  transition: transform 1.2s ease;
}
.wf-step {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 10px;
}
.wf-node {
  margin: 0 auto 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  /* var(--bg) is theme-stable: marketing pages have no data-theme so it
     resolves to #1a1a1a deepest, matching the workflow section bg. Was
     var(--dark) — that token flips to #f5f5f5 under data-theme="dark"
     and would render the node white if the page ever inherited the
     portal theme attribute. */
  background: var(--bg);
  border: 2px solid var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 1px;
  position: relative;
}
.wf-node::after {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid rgba(229,52,46,.25);
  border-radius: 50%;
}
.wf-step h4 {
  font-size: var(--text-lg); font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wf-step p { font-size: var(--text-sm); color: var(--text-dim); line-height: 1.45; }
.wf-step .wf-icon {
  margin-bottom: 10px;
  color: var(--text-faint);
  display: inline-flex;
}
.wf-step .wf-icon svg { width: 18px; height: 18px; }

.workflow-caption {
  text-align: center;
  margin-top: 56px;
  font-size: var(--text-base); color: var(--text-faint);
}
.workflow-caption strong { color: var(--white); font-weight: 600; }

/* ── Feature grid ────────────────────────────────────────────── */
/* Features section is ELEVATED (#242424). Cards drop to deepest
   (var(--bg)) for a sunken-tile effect — keeps the page strictly
   2-tone with no third surface tone. */
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--marketing-border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.feature:hover { border-color: #3a3a3a; box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(229,52,46,.12); color: var(--marketing-red-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #f5f5f5;
}
.feature p { font-size: var(--text-base); color: #aaa; line-height: 1.55; }
.feature.wide { grid-column: span 2; }

/* ── Lead management deep-dive ──────────────────────────── */
.lm-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.lm-copy h2 { margin-bottom: 18px; }
.lm-copy > p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.lm-points { display: flex; flex-direction: column; gap: 22px; }
.lm-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.lm-point-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.06em;
  color: var(--marketing-red-accent);
  background: rgba(229,52,46,.12);
  border-radius: var(--radius-md);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  padding-top: 4px;
}
.lm-point h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.lm-point > div > p {
  font-size: 14.5px;
  color: #aaa;
  line-height: 1.55;
  text-wrap: pretty;
}

.lm-visual { display: flex; justify-content: center; align-items: center; }
/* C69-I: phone frame uses elevated tone unconditionally. In the prior
   light/dark alternation, the phone needed two bgs (deepest on light
   sections, surface on dark). Now both section types are dark-spectrum
   and lead-management is locked to deepest in C69-H, so a single
   elevated bg gives a consistent ~10pt separation from --bg. */
.lm-phone {
  width: 280px;
  aspect-ratio: 9 / 18;
  background: var(--marketing-section-elevated);
  border-radius: 38px;
  padding: 12px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1.5px var(--marketing-border) inset;
}
.lm-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: var(--black);
  border-radius: 14px;
  z-index: 2;
}
.lm-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f5f5f4 0%, #e7e5e4 100%);
  border-radius: 28px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lm-placeholder {
  text-align: center;
  color: var(--text-faint);
  padding: 24px;
}
.lm-placeholder svg { color: #b8b8b6; margin-bottom: 12px; }
.lm-placeholder-label {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
.lm-placeholder-sub {
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .lm-grid { grid-template-columns: 1fr; gap: 48px; }
  .lm-phone { width: 240px; }
}

/* ── Discoverability tiles ──────────────────────────────── */
.disc-visual {
  display: flex; flex-direction: column;
  gap: 18px;
  align-self: center;
  width: 100%;
}
.disc-tiles {
  display: flex; flex-direction: column;
  gap: 14px;
}
.disc-tile {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--marketing-border);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease;
}
.disc-tile:hover { transform: translateX(2px); border-color: #3a3a3a; }
.disc-tile-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,52,46,.12);
  border-radius: 10px;
  color: var(--marketing-red-accent);
}
.disc-tile-icon svg { width: 22px; height: 22px; }
.disc-tile-label {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.disc-tile-sub {
  font-size: 12.5px;
  color: var(--text-faint);
}
.disc-tile-mark {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #555;
  padding: 4px 10px;
  border: 1px solid var(--marketing-border);
  border-radius: 6px;
}
.disc-caption {
  font-size: 12.5px;
  color: #777;
  text-align: center;
  letter-spacing: 0.02em;
  padding-top: 4px;
}
@media (max-width: 860px) {
  .disc-visual { margin-top: 8px; }
}

/* ── Marketplace section ─────────────────────────────────── */
.market-tiles {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Marketplace section is DEEPEST. Tiles raise to elevated tone for
   contrast — keeps the page strictly 2-tone. */
.market-tile {
  background: var(--marketing-section-elevated);
  border: 1px solid var(--marketing-border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  border-top: 3px solid var(--red);
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.market-tile:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.market-tile-num {
  font-family: var(--font-display);
  font-size: 84px; line-height: 1; color: var(--red);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.market-tile-num .pct { font-size: 48px; vertical-align: 12px; margin-left: 2px; }
.market-tile-label {
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #f5f5f5;
}
.market-tile-sub {
  font-size: var(--text-base); color: #aaa; line-height: 1.55;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .market-tiles { grid-template-columns: 1fr; }
  .market-tile { padding: 28px 22px; }
  .market-tile-num { font-size: 64px; }
}

/* ── Pricing ─────────────────────────────────────────────────── */
.price-soon-note {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-faint);
  font-style: italic;
  text-align: center;
  padding: 12px 4px;
  margin-bottom: 4px;
  text-wrap: pretty;
}
.pricing-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
/* Pricing section is ELEVATED. Standard cards drop to deepest
   (var(--bg)); featured card keeps the red-tinted near-black
   --marketing-bg for the premium accent. LOCKED C69-C hierarchy
   (small dim red eyebrow + big bright tier name) is preserved
   — only surface tones shift. */
.price {
  background: var(--bg);
  border: 1px solid var(--marketing-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.price.featured {
  border: 1px solid var(--red);
  background: var(--marketing-bg);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(229,52,46,.3);
}
.price .badge-row {
  position: absolute; top: -12px; left: 28px; right: 28px;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.price .featured-badge {
  background: var(--red); color: var(--white);
  font-size: var(--text-xxs); letter-spacing: 1.4px; text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px; border-radius: 6px;
}
.price .soon-badge {
  background: var(--marketing-border); color: #e5342e;
  font-size: var(--text-xxs); letter-spacing: 1.4px; text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid #3a2a2a;
}
.price-name {
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.price-product { font-size: var(--text-3xl); font-weight: 600; color: var(--white); margin-bottom: 18px; letter-spacing: -0.01em; }
.price-amount {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-family: var(--font-display);
  font-size: 68px; line-height: 1; color: var(--white);
  letter-spacing: 0.01em;
}
.price-amount .per { font-size: var(--text-base); color: var(--text-faint); font-weight: 500; }
.price-amount .was {
  font-family: var(--font-display);
  font-size: 30px; color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: #e5342e;
  line-height: 1;
}
.price-tagline { font-size: var(--text-md); color: var(--text-faint); margin-bottom: 22px; line-height: 1.5; min-height: 40px; }

.price-cta {
  display: block; text-align: center;
  padding: 13px 20px; border-radius: 10px;
  font-weight: 600; font-size: var(--text-base);
  transition: background .15s, border-color .15s;
  margin-bottom: 24px;
}
.price-cta.primary { background: var(--red); color: var(--white); }
.price-cta.primary:hover { background: var(--red-hover); }
.price-cta.ghost { border: 1px solid #3a3a3a; color: var(--white); }
.price-cta.ghost:hover { border-color: var(--text-muted); }
.price-cta.locked {
  border: 1px solid #3a2a2a;
  color: var(--text-faint);
  cursor: not-allowed;
  display: none;
}

.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0;
  font-size: var(--text-md); color: var(--border-strong);
  line-height: 1.45;
}
.price-list li::before {
  content: '✓'; color: var(--marketing-red-accent); font-weight: 700;
  flex-shrink: 0; width: 16px;
}
.price-list li.header {
  font-size: var(--text-xs); letter-spacing: 1.2px; text-transform: uppercase;
  color: #777; font-weight: 700;
  padding: 14px 0 8px;
  border-top: 1px solid var(--marketing-surface-4);
  margin-top: 10px;
}
.price-list li.header::before { content: ''; width: 0; }
.price-list li:first-child.header { border-top: none; margin-top: 0; padding-top: 0; }

/* ── Final CTA ───────────────────────────────────────────────── */
.final-cta {
  background: var(--bg);
  color: var(--white);
  border-top: 3px solid var(--red);
  padding: 96px 40px 104px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at 50% 0%, rgba(229,52,46,.08), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 820px; margin: 0 auto; }
.final-cta .eyebrow { color: var(--marketing-red-accent); }
.final-cta h2 {
  font-family: var(--font-sans);
  font-size: 48px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.1; margin-bottom: 18px;
  text-wrap: balance;
}
.final-cta h2 em { font-style: normal; color: var(--red); }
.final-cta p { font-size: 17px; color: var(--text-disabled); max-width: 620px; margin: 0 auto 36px; text-wrap: pretty; }
.final-cta .btn-primary { padding: 16px 32px; font-size: var(--text-lg); }
.final-cta .sub { margin-top: 22px; font-size: var(--text-md); color: #777; }

/* ── Footer ──────────────────────────────────────────────────── */
/* Footer + final-cta are both DEEPEST in the C69-H sequence — adjacent
   bgs would otherwise blend. The 1px elevated-tone top border gives a
   hairline seam without introducing a hard divider. */
.site-footer {
  background: var(--bg);
  color: #aaa;
  padding: 48px 40px 32px;
  border-top: 1px solid var(--marketing-section-elevated);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--marketing-border);
}
.site-footer .footer-brand { display: inline-flex; align-items: center; }
/* Footer wordmark pinned white-on-dark regardless of theme — same pattern
   as the final-cta dark section. EVO stays red via shared-themes.css. */
.site-footer .brand-logo .brand-trustguard {
  fill: #ffffff !important;
}
.footer-col h5 {
  font-size: var(--text-xs); letter-spacing: 2px; text-transform: uppercase;
  color: #f5f5f5; font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: var(--text-md); color: var(--text-faint); padding: 4px 0; }
.footer-col a:hover { color: var(--white); }
.footer-about { font-size: var(--text-md); line-height: 1.55; color: var(--text-faint); max-width: 280px; margin-top: 14px; }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  /* #888 (var(--text-faint)) reaches 5.6:1 on var(--bg) — clears WCAG AA
     for normal-text legal/copyright fine print. Was var(--text-muted)
     #666 = 3.7:1 which fails AA on the new dark surface. */
  font-size: var(--text-sm); color: var(--text-faint);
}
.footer-bottom .fm { margin: 0 8px; }
.footer-bottom a { color: var(--text-faint); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 44px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section { padding: 64px 24px; }
  .section-head h2 { font-size: 32px; }
  .workflow-track { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .workflow-track::before, .workflow-track::after { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature.wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .final-cta h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .site-nav { padding: 14px 20px; }
  .site-nav nav { gap: 14px; }
  .site-nav nav a:not(.nav-cta) { display: none; }
  .hero { padding: 56px 20px 72px; }
  .hero h1 { font-size: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
  .workflow-track { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature.wide { grid-column: span 1; }
  .pricing-grid { gap: 14px; }
  .final-cta h2 { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── Screenshot carousel (LOCKED C70 — Lead Management deep-dive) ──
   Wired by /js/_lib/screenshot-carousel.js into a [data-screenshot-carousel]
   root containing a [data-carousel-screen] child. Module renders an <img>
   stack into the screen, plus chevrons inside the outer frame, plus
   caption + dots as siblings after the outer frame. Designed for re-use
   — same module powers any future iPhone-frame deep-dive (Workflow,
   Discoverability, etc.) without rebuild. */

/* Carousel root — switch the .lm-visual flex container to a column
   stack so caption + dots sit cleanly below the phone. */
.lm-visual[data-screenshot-carousel] {
  flex-direction: column;
  position: relative;
}

/* Phone-screen → image canvas. Drop the placeholder's flex centering
   so the absolutely-positioned <img> stack fills edge-to-edge inside
   the bezel without leaking past the screen's border-radius. */
.lm-phone-screen.sc-screen {
  position: relative;
  display: block;
  background: var(--marketing-bg-alt);
}
.sc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}
.sc-image.is-active { opacity: 1; }

/* Caption — below phone frame, above dots. */
.sc-caption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #f5f5f5;
  letter-spacing: -0.005em;
  min-height: 22px;
  opacity: 1;
  transition: opacity 250ms ease;
}
.sc-caption.is-fading { opacity: 0; }

/* Dot indicators — below caption. */
.sc-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marketing-border);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.sc-dot:hover { background: var(--text-faint); }
.sc-dot.is-active {
  background: var(--marketing-red-accent);
  transform: scale(1.15);
}
.sc-dot:focus-visible {
  outline: 2px solid var(--marketing-red-accent);
  outline-offset: 2px;
}

/* Chevrons — desktop only. Anchored to .lm-phone (which is already
   position:relative for its notch), vertically centered on the phone
   regardless of caption + dots height below. Positioned outside the
   bezel via negative offsets. */
.sc-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--marketing-border);
  border-radius: 999px;
  color: #f5f5f5;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.sc-chevron:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--marketing-red-accent);
  color: var(--marketing-red-accent);
}
.sc-chevron:focus-visible {
  outline: 2px solid var(--marketing-red-accent);
  outline-offset: 2px;
}
.sc-chevron--prev { left: -56px; }
.sc-chevron--next { right: -56px; }

/* Mobile (≤767px) — chevrons hidden, swipe is the only advance path. */
@media (max-width: 767px) {
  .sc-chevron { display: none; }
}
