/* ============================================================
   ListPilot — site-next v5
   Premium SaaS redesign
   ============================================================ */

/* ------------------------------------------------------------
   TOKENS
   ------------------------------------------------------------ */
:root {
  /* Palette */
  --dark:        #080d1a;
  --dark-2:      #0e1525;
  --dark-3:      #1a2438;
  --surface:     #ffffff;
  --surface-2:   #f8fafc;
  --surface-3:   #f1f5f9;

  /* Brand teal */
  --brand:       #0d9488;
  --brand-light: #2dd4bf;
  --brand-dark:  #0a7a72;
  --brand-glow:  rgba(13, 148, 136, 0.20);

  /* Accent orange */
  --accent:      #f97316;
  --accent-dark: #ea580c;
  --accent-glow: rgba(249, 115, 22, 0.24);

  /* Text */
  --text:        #0f172a;
  --text-2:      #334155;
  --muted:       #64748b;
  --muted-2:     #94a3b8;

  /* Dark-on-dark text */
  --dark-text:   #f1f5f9;
  --dark-muted:  rgba(241, 245, 249, 0.58);
  --dark-border: rgba(255, 255, 255, 0.07);

  /* Borders & shadows */
  --border:      #e2e8f0;
  --border-2:    #cbd5e1;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 16px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 32px 64px rgba(0,0,0,0.14);

  /* Type */
  --font:        "Sora", "Segoe UI", system-ui, sans-serif;
  --font-display:"Fraunces", Georgia, serif;

  /* Layout */
  --max:         1180px;
  --gutter:      clamp(20px, 5vw, 72px);
  --section-v:   clamp(72px, 9vw, 120px);
}

/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(38px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 24px); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Accessibility */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 9999;
  background: var(--dark); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ------------------------------------------------------------
   SHARED UTILITIES
   ------------------------------------------------------------ */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.reveal-card.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-card { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Nav CTA */
.btn--cta {
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22, 0.34);
  font-size: 14px;
}
.btn--cta:hover { box-shadow: 0 10px 30px rgba(249,115,22, 0.44); }
.btn__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* Ghost nav */
.btn--ghost {
  border-color: var(--border-2);
  color: var(--text-2);
  background: transparent;
  font-size: 14px;
  padding: 10px 18px;
}
.btn--ghost:hover { background: var(--surface-2); }

/* Hero primary */
.btn--hero-primary {
  padding: 16px 34px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(249,115,22, 0.38);
  letter-spacing: 0.01em;
}
.btn--hero-primary:hover { box-shadow: 0 14px 40px rgba(249,115,22, 0.50); }

/* Hero ghost */
.btn--hero-ghost {
  padding: 15px 28px;
  font-size: 16px;
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}
.btn--hero-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.09);
  color: #fff;
}

/* Pricing CTA */
.btn--pricing-cta {
  width: 100%;
  padding: 17px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(249,115,22, 0.32);
  letter-spacing: 0.01em;
}
.btn--pricing-cta:hover { box-shadow: 0 14px 36px rgba(249,115,22, 0.44); }

/* CTA band buttons */
.btn--cta-band {
  padding: 18px 44px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(249,115,22, 0.40);
  letter-spacing: 0.01em;
}
.btn--cta-band:hover { box-shadow: 0 16px 44px rgba(249,115,22, 0.54); }
.btn--cta-ghost {
  padding: 17px 32px;
  font-size: 16px;
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.05);
}
.btn--cta-ghost:hover {
  border-color: rgba(255,255,255,0.32);
  color: #fff;
  background: rgba(255,255,255,0.09);
}

/* Mobile CTA */
.btn--mobile-cta {
  flex: 1;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22, 0.32);
  border-radius: 12px;
}
.btn--mobile-ghost {
  padding: 14px 20px;
  border-color: var(--border-2);
  color: var(--text-2);
  background: var(--surface);
  border-radius: 12px;
}

/* Check icons */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(13,148,136,0.12);
  color: var(--brand);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   UPDATE BAR
   ------------------------------------------------------------ */
.update-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px var(--gutter);
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-bottom: 1px solid rgba(13,148,136,0.14);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  overflow: hidden;
}
.update-bar__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0.06); }
}
.update-bar__text { flex: 1; min-width: 0; }
.update-bar__link {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.update-bar__link:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--gutter);
  background: rgba(8, 13, 26, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}
.nav__brand img {
  height: 44px;
  display: block;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__actions .btn--ghost {
  color: rgba(255,255,255,0.50);
  border-color: rgba(255,255,255,0.12);
}
.nav__actions .btn--ghost:hover {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 55% at 10% -5%,  rgba(13,148,136,0.26) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 15%,  rgba(249,115,22,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(13,148,136,0.08) 0%, transparent 55%),
    linear-gradient(170deg, #080d1a 0%, #0c1626 55%, #0f1e35 100%);
  padding: clamp(20px, 2.5vw, 32px) var(--gutter) clamp(72px, 9vw, 116px);
  overflow: hidden;
}

/* Inner-page hero: same dark bg, shorter, centered, no video */
.hero--page {
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(52px, 7vw, 88px);
}
.hero--page .hero__inner {
  max-width: 760px;
}
.hero--page .hero__copy {
  max-width: 100%;
}
.hero--page .hero__h1 {
  font-size: clamp(32px, 4vw, 52px);
}

/* Subtle grid noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 60px);
}

/* Hero copy — centered */
.hero__copy {
  text-align: center;
  max-width: 720px;
}
.hero__sub { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.hero__trust-pills { justify-content: center; }
.hero__actions { justify-content: center; }
.hero__fine { text-align: center; }

/* Hero media — full content width */
.hero__media {
  width: 100%;
  max-width: var(--max);
}

/* Hero badges */
.hero__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero__badge--live {
  background: rgba(13,148,136,0.15);
  border: 1px solid rgba(13,148,136,0.30);
  color: var(--brand-light);
}
.hero__badge--plain {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.50);
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.20);
  animation: pulse-teal 2.2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45,212,191,0.20); }
  50%       { box-shadow: 0 0 0 7px rgba(45,212,191,0.06); }
}

/* Hero headline */
.hero__h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  color: var(--dark-text);
  margin: 0 0 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero__em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--dark-muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.hero__trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.02em;
}
.hero__trust-pills span::before {
  content: "✓";
  color: var(--brand-light);
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.hero__fine {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.02em;
}

.hero__video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-3);
  max-width: 760px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(0,0,0,0.60),
    0 0 100px rgba(13,148,136,0.12);
}
.hero__video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}
/* YouTube iframe variant */
.hero__video-wrap--yt iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 16px;
}


/* ------------------------------------------------------------
   STATS STRIP
   ------------------------------------------------------------ */
.stats-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.stats-strip__value {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1;
  font-family: var(--font);
  letter-spacing: -0.02em;
}
.stats-strip__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-muted);
  letter-spacing: 0.04em;
}
.stats-strip__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   PROBLEM SECTION
   ------------------------------------------------------------ */
.problem {
  background: var(--surface-2);
  padding: var(--section-v) var(--gutter);
}
.problem__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.problem__copy h2 {
  margin: 0 0 18px;
  color: var(--text);
}
.problem__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.problem__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem__card {
  padding: 26px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--surface);
}
.problem__card-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.problem__card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.problem__card-dot--red  { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.problem__card-dot--green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.problem__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.problem__card--good .problem__card-label { color: var(--brand); }
.problem__list {
  margin-bottom: 18px;
}
.problem__list li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.problem__list li:last-child { border-bottom: none; }
.problem__list li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--muted-2);
  font-weight: 700;
}
.problem__card--good .problem__list li::before {
  content: "✓";
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  top: 8px;
}
.problem__time {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.problem__time strong { color: var(--text); }
.problem__card--good .problem__time strong { color: var(--brand-dark); }
.problem__card--bad  { background: #fafafa; }
.problem__card--good { background: #f0fdf9; border-color: rgba(13,148,136,0.20); }

/* ------------------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------------------ */
.how {
  background: var(--surface);
  padding: var(--section-v) var(--gutter);
}
.how__inner { max-width: var(--max); margin: 0 auto; }
.how__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.how__header h2 { margin: 0 0 14px; }
.how__sub { color: var(--muted); font-size: 17px; }

.how__steps { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 96px); }
.how__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.how__step--flip .how__step-meta { order: 2; }
.how__step--flip .how__shot { order: 1; }
.how__step-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how__step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand);
  background: var(--brand-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(13,148,136,0.20);
}
.how__step-copy h3 { margin: 0 0 10px; }
.how__step-copy p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.how__step-copy strong { color: var(--text); font-weight: 700; }
.how__outcome {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--brand) !important;
  border-left: 3px solid var(--brand);
  padding-left: 12px;
  margin-top: 8px;
}
.how__shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.how__shot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.how__shot img { width: 100%; display: block; }

/* ------------------------------------------------------------
   SOCIAL PROOF
   ------------------------------------------------------------ */
.social-proof {
  background: var(--surface-2);
  padding: var(--section-v) var(--gutter);
}
.social-proof__inner { max-width: var(--max); margin: 0 auto; }
.social-proof__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.social-proof__header h2 { margin: 0 0 12px; }
.social-proof__sub { color: var(--muted); font-size: 16px; margin: 0; }

.social-proof__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.proof-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.20s ease, box-shadow 0.20s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.proof-card__stars {
  font-size: 16px;
  color: #f59e0b;
  letter-spacing: 1px;
}
.proof-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  font-style: normal;
  margin: 0;
  flex: 1;
  border-left: 3px solid var(--border);
  padding-left: 14px;
}
.proof-card__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.proof-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.proof-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-family: var(--font-sans, sans-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  border: 2px solid rgba(13,148,136,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.proof-card__byline-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
.proof-card__byline strong {
  color: var(--text);
  font-weight: 700;
}
.proof-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(13,148,136,0.08);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: auto;
}

/* Stat card */
.proof-card--stat {
  background: var(--dark);
  border-color: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.proof-card--stat:hover { transform: translateY(-3px); }
.proof-card__big-stat {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark-text);
  font-family: var(--font);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-card__stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.4;
}
.proof-card__stat-sub {
  font-size: 13px;
  color: var(--dark-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   PRICING
   ------------------------------------------------------------ */
.pricing {
  background: var(--surface);
  padding: var(--section-v) var(--gutter);
}
.pricing__inner { max-width: var(--max); margin: 0 auto; }
.pricing__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.pricing__header h2 { margin: 0 0 14px; }
.pricing__sub { color: var(--muted); font-size: 16px; margin: 0; }

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ROI card */
.pricing__roi {
  padding: 36px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
}
.pricing__roi h3 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 22px);
}
.roi__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.roi__row:last-of-type { border-bottom: none; }
.roi__row--highlight {
  background: rgba(13,148,136,0.06);
  border-radius: 10px;
  padding: 13px 14px;
  margin: 8px -14px 0;
  border-bottom: none;
}
.roi__label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.roi__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}
.roi__row--highlight .roi__label { color: var(--brand-dark); font-weight: 600; }
.roi__row--highlight .roi__value { color: var(--brand-dark); }
.roi__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
  padding: 14px;
  background: var(--surface-3);
  border-radius: 10px;
  border-left: 3px solid var(--brand);
}

/* Pricing card */
.pricing__card {
  position: relative;
  padding: 36px;
  border-radius: 20px;
  background: var(--dark);
  border: 1.5px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.12),
    0 32px 64px rgba(0,0,0,0.32),
    0 0 60px rgba(13,148,136,0.08);
}
.pricing__popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(249,115,22,0.38);
  white-space: nowrap;
}
.pricing__card-top {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing__plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 12px;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.pricing__amount {
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark-text);
  font-family: var(--font);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing__period {
  font-size: 15px;
  color: var(--dark-muted);
  font-weight: 500;
}
.pricing__trial-note {
  font-size: 13px;
  color: var(--dark-muted);
  margin: 0;
}
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: rgba(241,245,249,0.80);
  font-weight: 500;
}
.pricing__features .check-icon {
  background: rgba(13,148,136,0.18);
  color: var(--brand-light);
  flex-shrink: 0;
}
.pricing__cancel {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}
.pricing__team {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 20px;
  color: rgba(255,255,255,0.55);
}
.pricing__team strong { color: rgba(255,255,255,0.80); font-weight: 600; }
.pricing__team a {
  color: var(--brand-light);
  text-decoration: none;
  font-weight: 600;
}
.pricing__team a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   TRUST
   ------------------------------------------------------------ */
.trust {
  background: var(--surface-2);
  padding: var(--section-v) var(--gutter);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.trust__inner h2 { margin: 0 0 12px; }
.trust__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust__card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.20s ease, box-shadow 0.20s ease, border-color 0.20s ease;
}
.trust__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,148,136,0.22);
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-glow);
  color: var(--brand);
  margin-bottom: 18px;
  border: 1px solid rgba(13,148,136,0.18);
}
.trust__icon svg {
  display: block;
}
.trust__card h3 { margin: 0 0 10px; font-size: 17px; }
.trust__card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq {
  background: var(--surface);
  padding: var(--section-v) var(--gutter);
}
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.faq__header h2 { margin: 0 0 10px; }
.faq__sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.faq__sub a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.faq__sub a:hover { text-decoration: underline; }
.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.faq__item:last-child { border-bottom: none; }
.faq__item:hover { background: var(--surface-2); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 14px;
}
.faq__q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.15s;
  line-height: 1;
}
.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--brand);
}
.faq__a {
  padding: 0 24px 20px;
}
.faq__a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ------------------------------------------------------------
   CTA BAND
   ------------------------------------------------------------ */
.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(13,148,136,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(249,115,22,0.14) 0%, transparent 55%),
    linear-gradient(150deg, #060b16 0%, #0a1220 50%, #0e1a2e 100%);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  overflow: hidden;
}
.cta-band__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-band__badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(13,148,136,0.14);
  border: 1px solid rgba(13,148,136,0.28);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-band__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: pulse-teal 2.2s ease infinite;
  flex-shrink: 0;
}
.cta-band__live-label { letter-spacing: 0.06em; }
.cta-band__inner h2 {
  color: var(--dark-text);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.cta-band__accent {
  display: block;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band__sub {
  font-size: 17px;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-band__fine {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer__tagline {
  font-size: 14px;
  color: var(--dark-muted);
  margin-bottom: 14px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__social:hover { color: rgba(255,255,255,0.75); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 4px;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__nav a:hover { color: rgba(255,255,255,0.80); }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}
.footer__bottom a {
  text-decoration: none;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.55); }

/* ------------------------------------------------------------
   MOBILE STICKY CTA
   ------------------------------------------------------------ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(8,13,26,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 10px;
}

/* ------------------------------------------------------------
   LIGHTBOX
   ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.lightbox[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  border: none;
  cursor: pointer;
}
.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
}
#lightbox-img, #lightbox-video {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 16px;
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}
.lightbox__close:hover { background: rgba(0,0,0,0.85); }
body.is-lightbox-open { overflow: hidden; }

/* ------------------------------------------------------------
   MEDIA QUERIES
   ------------------------------------------------------------ */

/* Large: 3-col trust → 2-col */
@media (max-width: 1100px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .stats-strip__inner { flex-wrap: wrap; gap: 28px 40px; justify-content: center; }
  .stats-strip__divider { display: none; }
  .problem__inner { grid-template-columns: 1fr; }
  .problem__cards { grid-template-columns: 1fr 1fr; }
  .how__step,
  .how__step--flip { grid-template-columns: 1fr; }
  .how__step--flip .how__step-meta { order: 0; }
  .how__step--flip .how__shot { order: 0; }
  .social-proof__cards { grid-template-columns: 1fr 1fr; }
  .proof-card--stat { grid-column: 1 / -1; }
  .pricing__layout { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .update-bar { font-size: 12px; }
  .nav__actions .btn--ghost { display: none; }
  .hero__h1 { font-size: clamp(34px, 9vw, 46px); }
  .problem__cards { grid-template-columns: 1fr; }
  .social-proof__cards { grid-template-columns: 1fr; }
  .proof-card--stat { grid-column: auto; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { text-align: center; justify-content: center; }
  .faq__q { font-size: 14px; padding: 16px 18px; }
  .faq__a { padding: 0 18px 16px; }
}

/* Very small mobile */
@media (max-width: 400px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__trust-pills span { font-size: 11px; padding: 5px 11px; }
  .stats-strip__value { font-size: 20px; }
}

/* ============================================================
   ARTICLE ENHANCEMENTS (used on long-form guide pages)
   ============================================================ */
.article-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  border-left: 3px solid var(--brand);
  padding-left: 20px;
  margin-bottom: 36px;
}
.article-toc {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.article-toc__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.article-toc ol {
  margin: 0;
  padding-left: 20px;
}
.article-toc li {
  font-size: 14px;
  margin-bottom: 6px;
}
.article-toc a {
  color: var(--brand);
  text-decoration: none;
}
.article-toc a:hover { text-decoration: underline; }
.article-cta-band {
  background: var(--dark);
  color: var(--dark-text);
  border-radius: 14px;
  padding: 36px 36px 32px;
  margin: 48px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.article-cta-band__headline {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.article-cta-band__sub {
  font-size: 15px;
  color: var(--dark-muted);
  margin: 0 0 8px;
}
.article-cta-band .btn { margin-top: 4px; }
.article-cta-band .btn--outline {
  background: transparent;
  border: 1px solid var(--dark-border);
  color: var(--dark-text);
}
.article-cta-band .btn--outline:hover { border-color: rgba(255,255,255,0.3); }
@media (max-width: 600px) {
  .article-cta-band { padding: 28px 20px; }
  .article-cta-band .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   GUIDES STRIP
   ============================================================ */
.guides-strip {
  padding: 96px var(--gutter);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guides-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.guides-strip__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.guides-strip__sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 12px;
}
.guides-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.guide-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.guide-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.guide-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.guide-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 4px;
}
@media (max-width: 1000px) {
  .guides-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .guides-strip { padding: 64px var(--gutter); }
  .guides-strip__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SUBPAGE STYLES — site-next v5
   Covers: marketing pages, legal, blog, guide, success,
   SEO article pages, and shared utilities.
   ============================================================ */

/* ------------------------------------------------------------
   A. BUTTON VARIANTS
   ------------------------------------------------------------ */

/* Standard orange CTA — same gradient as hero-primary, normal size */
.btn--primary {
  padding: 13px 28px;
  font-size: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(249,115,22,0.34);
  letter-spacing: 0.01em;
}
.btn--primary:hover { box-shadow: 0 10px 32px rgba(249,115,22,0.46); }

/* Outline / ghost for light backgrounds */
.btn--outline {
  padding: 12px 24px;
  font-size: 14px;
  border-color: var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.btn--outline:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  color: var(--text);
}

/* Outline variant used inside dark sections (article-cta-band already defines one inline,
   this is the dark-context version when .btn--outline sits on a dark bg) */
.page-marketing .marketing-cta .btn--outline,
.page-guide    .guide-support__card .btn--outline {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.05);
}
.page-marketing .marketing-cta .btn--outline:hover,
.page-guide    .guide-support__card .btn--outline:hover {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.09);
}

/* ------------------------------------------------------------
   B. MARKETING PAGES  (.page-marketing body class)
   ------------------------------------------------------------ */

/* ── Main wrapper ── */
.marketing-main { display: block; }

/* ── Hero ── */
.marketing-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 55% at 10% -5%,  rgba(13,148,136,0.26) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 15%,  rgba(249,115,22,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(13,148,136,0.08) 0%, transparent 55%),
    linear-gradient(170deg, #080d1a 0%, #0c1626 55%, #0f1e35 100%);
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.marketing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Center columns inside max-width on very wide screens */
.marketing-hero > * { position: relative; z-index: 1; }
.marketing-hero__copy { max-width: 560px; justify-self: end; }
.marketing-hero__copy h1 {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--dark-text);
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.marketing-hero__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.72;
  color: var(--dark-muted);
  margin-bottom: 24px;
}
.marketing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.marketing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.marketing-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.02em;
}
.marketing-hero__trust span::before {
  content: "✓";
  color: var(--brand-light);
  font-weight: 800;
}

/* ── Hero panel (dark card on right) ── */
.marketing-hero__panel {
  background: rgba(14,21,37,0.72);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 30px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.10),
    0 24px 56px rgba(0,0,0,0.38),
    0 0 48px rgba(13,148,136,0.07);
}
.marketing-hero__panel h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--dark-text);
  margin: 10px 0 14px;
  line-height: 1.2;
}
.marketing-hero__panel p {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.marketing-hero__panel ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.marketing-hero__panel li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(241,245,249,0.75);
  font-weight: 500;
  line-height: 1.55;
}
.marketing-hero__panel li::before {
  content: "✓";
  color: var(--brand-light);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Marketing media (hero figure / split figure) ── */
.marketing-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 56px rgba(0,0,0,0.40);
}
.marketing-media img {
  width: 100%;
  display: block;
}
.marketing-media figcaption {
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.36);
  background: rgba(0,0,0,0.30);
  font-style: italic;
}

/* ── Content sections ── */
.marketing-section {
  padding: var(--section-v) var(--gutter);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.marketing-section__title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.marketing-section__title h2 { margin: 0 0 14px; }
.marketing-section__title p { font-size: 17px; color: var(--muted); margin: 0; }

/* ── 2-col split layout ── */
.marketing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.marketing-split--reverse > *:first-child { order: 2; }
.marketing-split--reverse > *:last-child  { order: 1; }

/* ── Generic grid ── */
.marketing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.marketing-grid--2 { grid-template-columns: repeat(2, 1fr); }
.marketing-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Cards ── */
.marketing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 26px;
  transition: transform 0.20s ease, box-shadow 0.20s ease, border-color 0.20s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.marketing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,148,136,0.20);
}
.marketing-card h2 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text);
  margin: 10px 0 14px;
  line-height: 1.2;
}
.marketing-card h3 {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text);
  margin: 10px 0 10px;
  line-height: 1.3;
}
.marketing-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 14px;
}
.marketing-card p:last-child { margin-bottom: 0; }
.marketing-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.marketing-card a:hover { text-decoration: underline; }
.marketing-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 14px;
}
.marketing-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.marketing-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.marketing-card__note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  line-height: 1.6;
}

/* Dark card variant */
.marketing-card--dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.10),
    0 20px 48px rgba(0,0,0,0.28);
}
.marketing-card--dark:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.14),
    0 28px 60px rgba(0,0,0,0.34);
}
.marketing-card--dark h2,
.marketing-card--dark h3 { color: var(--dark-text); }
.marketing-card--dark p { color: var(--dark-muted); }
.marketing-card--dark li { color: rgba(241,245,249,0.78); }
.marketing-card--dark li::before { color: var(--brand-light); }
.marketing-card--dark .proof__label { color: var(--brand-light); }
.marketing-card--dark .marketing-card__note {
  color: var(--dark-muted);
  border-top-color: rgba(255,255,255,0.07);
}
.marketing-card--dark a { color: #87e9ff; }

/* ── Workflow steps (how-it-works page) ── */
.marketing-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.marketing-step {
  position: relative;
  padding: 28px 32px 28px 88px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.marketing-step:last-child { border-bottom: none; }
.marketing-step:hover { background: var(--surface-2); }
.marketing-step__number {
  position: absolute;
  left: 28px;
  top: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand);
  background: var(--brand-glow);
  border: 1px solid rgba(13,148,136,0.20);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketing-step h3 { margin: 0 0 8px; font-size: 17px; }
.marketing-step p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

/* ── Metric strip ── */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.metric-strip__card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.metric-strip__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,148,136,0.20);
}
.metric-strip__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.metric-strip__value {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.metric-strip__card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA section ── */
.marketing-cta {
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(13,148,136,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 30%, rgba(249,115,22,0.12) 0%, transparent 55%),
    linear-gradient(150deg, #060b16 0%, #0a1220 50%, #0e1a2e 100%);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  overflow: hidden;
  position: relative;
}
.marketing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
}
.marketing-cta > * { position: relative; z-index: 1; }
.marketing-cta .proof__label { color: var(--brand-light); margin-bottom: 10px; }
.marketing-cta h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--dark-text);
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 560px;
}
.marketing-cta p {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}
.marketing-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 180px;
}
.marketing-cta__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Testimonial / quote card ── */
.marketing-quote {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.20s ease, box-shadow 0.20s ease;
}
.marketing-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.marketing-quote blockquote {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-2);
  font-style: italic;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--brand-light);
}
.marketing-quote p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

/* ── Comparison table ── */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 0;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare thead tr { }
.compare th {
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare th:first-child {
  background: rgba(239,68,68,0.06);
  color: #b91c1c;
}
.compare th:last-child {
  background: rgba(13,148,136,0.08);
  color: var(--brand-dark);
}
.compare td {
  padding: 10px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  line-height: 1.55;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child { color: var(--muted); }
.compare td:last-child {
  color: var(--brand-dark);
  font-weight: 500;
}
.compare tbody tr:nth-child(even) td { background: var(--surface-2); }

/* ── proof__label alias for marketing pages ── */
.proof__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

/* ── Static FAQ card (not accordion) ── */
.faq-lite {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-lite:hover {
  border-color: rgba(13,148,136,0.22);
  box-shadow: var(--shadow-sm);
}
.faq-lite h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.faq-lite p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

/* ── Marketing page responsive ── */
@media (max-width: 1000px) {
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .marketing-grid { grid-template-columns: repeat(2, 1fr); }
  .marketing-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .marketing-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .marketing-hero__copy { max-width: 100%; justify-self: auto; }
  .marketing-hero__trust { justify-content: center; }
  .marketing-hero__actions { justify-content: center; }
  .marketing-split { grid-template-columns: 1fr; }
  .marketing-cta { flex-direction: column; text-align: center; }
  .marketing-cta p { max-width: 100%; }
  .marketing-cta h2 { max-width: 100%; }
  .marketing-cta__actions { min-width: 0; width: 100%; max-width: 320px; margin: 0 auto; }
  .marketing-steps { max-width: 100%; }
}
@media (max-width: 640px) {
  .marketing-hero { padding-left: 20px; padding-right: 20px; }
  .marketing-grid,
  .marketing-grid--2,
  .marketing-grid--3 { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .marketing-step { padding-left: 72px; }
}
@media (max-width: 400px) {
  .metric-strip { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   C. LEGAL PAGES  (.page-legal body class, .legal class)
   ------------------------------------------------------------ */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-v) var(--gutter);
}
.legal__card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-md);
}
.legal__card h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--text);
  margin: 0 0 10px;
}
.legal__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal__card h2 {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  margin: 36px 0 10px;
  padding-top: 4px;
}
.legal__card h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-2);
  margin: 24px 0 8px;
}
.legal__card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 16px;
}
.legal__card ul,
.legal__card ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.legal__card li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 6px;
  list-style: disc;
}
.legal__card ol li { list-style: decimal; }
.legal__card a {
  color: var(--brand);
  text-decoration: none;
}
.legal__card a:hover { text-decoration: underline; }
.legal__card strong { color: var(--text); }

/* ------------------------------------------------------------
   D. BLOG PAGE
   ------------------------------------------------------------ */

/* ── Blog hero ── */
.blog-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.blog-hero--secondary {
  margin-bottom: 36px;
  padding-bottom: 32px;
}
.blog-hero h1 {
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--text);
  margin: 8px 0 12px;
  line-height: 1.15;
}
.blog-hero h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--text);
  margin: 8px 0 10px;
}
.blog-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
  max-width: 520px;
}
.blog-hero .btn { flex-shrink: 0; }

/* ── Blog grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 20px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.blog-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.blog-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
  flex: 1;
}
.blog-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(13,148,136,0.10);
  border-radius: 5px;
  padding: 2px 7px;
  margin-bottom: 2px;
  align-self: flex-start;
}

/* ── Blog CTA ── */
.blog-cta {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(13,148,136,0.18) 0%, transparent 60%),
    linear-gradient(150deg, #060b16 0%, #0a1220 100%);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  text-align: center;
  margin-top: 8px;
}
.blog-cta h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--dark-text);
  margin: 0 0 12px;
}
.blog-cta p {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ── SEO links grid (used in blog secondary block + guide pages) ── */
.seo-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 220px;
}
.seo-links a {
  display: block;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.seo-links a:hover {
  border-color: var(--brand);
  background: rgba(13,148,136,0.04);
  transform: translateX(2px);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero { flex-direction: column; align-items: flex-start; }
  .blog-hero--secondary { flex-direction: column; }
  .seo-links { min-width: 0; width: 100%; }
  .seo-links a { white-space: normal; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   E. BREADCRUMBS (SEO / article pages)
   ------------------------------------------------------------ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden] { color: var(--muted-2); }

/* ------------------------------------------------------------
   F. SETUP GUIDE PAGE  (.page-guide body class)
   ------------------------------------------------------------ */
.guide-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-v);
}

/* ── Guide hero ── */
.guide-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 10% -5%,  rgba(13,148,136,0.24) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 15%,  rgba(249,115,22,0.12) 0%, transparent 50%),
    linear-gradient(170deg, #080d1a 0%, #0c1626 55%, #0f1e35 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 6vw, 88px) var(--gutter) clamp(56px, 7vw, 100px);
  margin-bottom: clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}
.guide-hero > * { position: relative; z-index: 1; }
.guide-hero__copy { }
.guide-hero__copy h1 {
  font-size: clamp(28px, 3.6vw, 48px);
  color: var(--dark-text);
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.guide-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.guide-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* ── Guide hero card ── */
.guide-hero__card {
  background: rgba(14,21,37,0.72);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.10),
    0 20px 48px rgba(0,0,0,0.36);
}
.card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(13,148,136,0.14);
  border: 1px solid rgba(13,148,136,0.24);
  color: var(--brand-light);
}
.pill--muted {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.40);
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 4px;
}
.stat__value {
  font-size: 13px;
  color: rgba(241,245,249,0.78);
  line-height: 1.55;
}
.card__foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── Guide prep section ── */
.guide-prep {
  margin: 0 0 clamp(36px, 5vw, 64px);
}
.guide-prep__card {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 680px;
}
.guide-prep__card h2 { margin: 10px 0 14px; font-size: clamp(20px, 2vw, 26px); }
.guide-prep__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.guide-prep__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.guide-prep__list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Guide steps ── */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 60px);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.guide-step {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.guide-step__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-glow);
  border: 1px solid rgba(13,148,136,0.22);
  color: var(--brand);
  white-space: nowrap;
  flex-shrink: 0;
}
.guide-step h2 {
  font-size: clamp(18px, 2vw, 23px);
  color: var(--text);
  margin: 0;
}
.guide-step ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.guide-step ol li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 8px;
  list-style: decimal;
}
.guide-step__image {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.guide-step__image-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.guide-step__image-grid--two { grid-template-columns: 1fr 1fr; }
.guide-step__media { margin-bottom: 16px; }
.guide-step__media--popup,
.guide-step__media--drawer {
  display: inline-block;
  position: relative;
}
.guide-step__image--feature {
  max-width: 360px;
  margin: 0 auto;
}
.guide-step__image--drawer {
  max-width: 320px;
  margin: 0 auto;
}
.guide-step__hotspot {
  position: absolute;
  top: 30%;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.25);
  animation: pulse-orange 2s ease infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(249,115,22,0.06); }
}
.guide-step__note {
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-2);
  border-left: 3px solid var(--brand);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 6px;
  line-height: 1.6;
}

/* ── Guide flow grid (step 6 cards) ── */
.guide-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.guide-flow-card {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.guide-flow-card__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 12px 14px 8px;
}
.guide-flow-card__image {
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.guide-flow-card figcaption {
  padding: 10px 14px 12px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

/* ── Guide success band ── */
.guide-success-band {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 52px);
  padding: 0 var(--gutter);
}
.guide-success-band__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(13,148,136,0.10) 0%, rgba(13,148,136,0.04) 100%);
  border: 1.5px solid rgba(13,148,136,0.28);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
}
.guide-success-band__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}
.guide-success-band__copy { flex: 1; }
.guide-success-band__copy h2 { margin: 0 0 6px; font-size: clamp(18px, 2vw, 24px); }
.guide-success-band__copy p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }
.guide-success-band__cta { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.guide-success-band__fine { margin: 0; font-size: 11.5px; color: var(--muted); text-align: center; }
@media (max-width: 640px) {
  .guide-success-band__inner { flex-direction: column; text-align: center; }
  .guide-success-band__inner .btn { width: 100%; justify-content: center; }
}

/* ── Guide FAQ section ── */
.guide-faq {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 52px);
  padding: 0 var(--gutter);
}
.guide-faq__heading { margin: 0 0 clamp(20px, 2.5vw, 32px); font-size: clamp(20px, 2.5vw, 28px); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.faq-item[open] { border-color: rgba(13,148,136,0.4); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 20px 16px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.faq-item__a a { color: var(--brand); }

/* ── Guide support / onboarding sections ── */
.guide-support { margin-bottom: clamp(24px, 3vw, 40px); }
.guide-support__card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-support__card h2 { margin: 0; font-size: clamp(18px, 2vw, 24px); }
.guide-support__card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }
.guide-support__card .btn { align-self: flex-start; margin-top: 6px; }
.guide-support__card .seo-links { flex-direction: row; flex-wrap: wrap; }
.guide-support__card .seo-links a { white-space: normal; }

/* ── Onboard section (success page reuse) ── */
.onboard {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 56px);
  padding: 0 var(--gutter);
}
.onboard__title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 3.5vw, 48px);
}
.onboard__title h2 { margin: 0 0 10px; }
.onboard__title p { font-size: 16px; color: var(--muted); margin: 0; }
.onboard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.onboard__grid--split { grid-template-columns: 1fr 1fr; align-items: start; }
.step-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 16px; margin: 0 0 8px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.step-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin-top: 8px;
}
.step-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.step-card__list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-card--license { background: var(--surface-2); }
.step-card--screenshot img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}
.license-key-wrap {
  margin: 10px 0 6px;
}
.license-key-value {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: var(--brand-dark);
  background: rgba(13,148,136,0.06);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(13,148,136,0.18);
  word-break: break-all;
  display: block;
}

/* Guide page responsive */
@media (max-width: 900px) {
  .guide-hero { grid-template-columns: 1fr; }
  .guide-flow-grid { grid-template-columns: 1fr; }
  .onboard__grid { grid-template-columns: 1fr; }
  .onboard__grid--split { grid-template-columns: 1fr; }
  .guide-step__image-grid--two { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .guide-page { padding-left: 20px; padding-right: 20px; }
  .guide-step { padding: 22px 20px; }
  .guide-prep__card { padding: 22px 20px; }
  .guide-support__card { padding: 22px 20px; }
  .guide-support__card .seo-links { flex-direction: column; }
}

/* ------------------------------------------------------------
   G. SUCCESS PAGE  (.page-success body class)
   ------------------------------------------------------------ */
.success-hero { }
.page-success .hero { padding: clamp(48px, 6vw, 88px) var(--gutter); }

/* Two-column layout: copy left, card right */
.success-hero__inner {
  flex-direction: row !important;
  align-items: flex-start;
  text-align: left;
}
.success-hero__inner .hero__copy {
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
}
.success-hero__inner .hero__sub {
  margin-left: 0;
  margin-right: 0;
}
.success-hero__inner .hero__actions {
  justify-content: flex-start;
}
.success-hero__btn-outline {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
}
.success-hero__btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.10);
}
@media (max-width: 760px) {
  .success-hero__inner {
    flex-direction: column !important;
    text-align: center;
  }
  .success-hero__inner .hero__copy { text-align: center; }
  .success-hero__inner .hero__sub { margin-left: auto; margin-right: auto; }
  .success-hero__inner .hero__actions { justify-content: center; }
  .page-success .hero__card { width: 100%; }
}
.page-success .hero__card {
  background: rgba(14,21,37,0.72);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(13,148,136,0.10),
    0 20px 48px rgba(0,0,0,0.36);
}
.support-callout { }
.support-card {
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(13,148,136,0.14) 0%, transparent 60%),
    linear-gradient(150deg, #060b16 0%, #0a1220 100%);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}
.support-card h2 { color: var(--dark-text); font-size: clamp(20px, 2.4vw, 30px); margin: 0 0 10px; }
.support-card p { font-size: 15px; color: var(--dark-muted); margin: 0 auto 24px; max-width: 480px; }

/* ── How Billing Works (Transparency Section) ─────── */
.how-billing {
  padding: 80px 24px;
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
}
.how-billing__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.how-billing__inner h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #0f172a;
  margin: 0;
}
.how-billing__lead {
  font-size: 17px;
  color: #475569;
  max-width: 640px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.how-billing__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  text-align: left;
}
@media (max-width: 640px) {
  .how-billing__steps { grid-template-columns: 1fr; }
}
.how-billing__step {
  background: #ffffff;
  border: 1px solid rgba(15,118,110,0.14);
  border-top: 3px solid #0f766e;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(15,118,110,0.06);
}
.how-billing__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15,118,110,0.10);
  color: #0f766e;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-billing__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}
.how-billing__body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.how-billing__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(15,118,110,0.06);
  border: 1px solid rgba(15,118,110,0.16);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 680px;
  text-align: left;
  margin-top: 8px;
}
.how-billing__note svg {
  flex-shrink: 0;
  color: #0f766e;
  margin-top: 2px;
}
.how-billing__note p {
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

/* ============================================================
   HERO ANNOUNCEMENT
   ============================================================ */
.hero__announce {
  text-align: center;
  padding-bottom: 36px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(13, 148, 136, 0.20);
  width: 100%;
  max-width: 680px;
}
.hero__announce__headline {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.hero__announce__terms {
  margin: 0;
}
.hero__announce__terms strong {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: 0.015em;
  line-height: 1.3;
}

/* ============================================================
   TRANSPARENCY COMPARISON SECTION
   ============================================================ */
.transparency {
  padding: var(--section-v) var(--gutter);
  background: #f8fffe;
}
.transparency__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.transparency__sub {
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.transparency__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .transparency__grid { grid-template-columns: 1fr; }
}
.transparency__col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(18,24,35,0.08);
}
.transparency__col--bad {
  border: 1px solid rgba(220,38,38,0.18);
  background: #fff;
}
.transparency__col--good {
  border: 1px solid rgba(15,118,110,0.25);
  background: #fff;
  box-shadow: 0 4px 28px rgba(15,118,110,0.10), 0 1px 4px rgba(18,24,35,0.06);
}
.transparency__col-header {
  padding: 14px 20px;
}
.transparency__col--bad .transparency__col-header {
  background: #fef2f2;
  border-bottom: 1px solid rgba(220,38,38,0.14);
}
.transparency__col--good .transparency__col-header {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-bottom: 1px solid rgba(15,118,110,0.16);
}
.transparency__col-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.transparency__col-label--bad { color: #dc2626; }
.transparency__col-label--good { color: var(--brand); }
.transparency__list {
  list-style: none;
  margin: 0;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.transparency__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.45;
}
.transparency__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.transparency__item--bad .transparency__icon {
  background: rgba(220,38,38,0.10);
  color: #dc2626;
}
.transparency__item--good .transparency__icon {
  background: rgba(15,118,110,0.12);
  color: var(--brand);
}
.transparency__item--bad span:last-child { color: #6b7280; }
.transparency__item--good span:last-child { color: #1a2a28; font-weight: 500; }
.transparency__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.transparency__cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0;
}

/* ============================================================
   CONVERSION SECTIONS — site-next v5
   ============================================================ */

/* --- Featured Result (Cody callout) --- */
.featured-result {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 20px;
}
.featured-result__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.featured-result__quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-result__stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
}
.featured-result__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: #e2e8f0;
  margin: 0;
  padding: 0;
  border: none;
}
.featured-result__quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  padding: 0;
}
.featured-result__quote footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.featured-result__quote footer strong {
  display: block;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.featured-result__badge {
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
}
.featured-result__stat {
  background: linear-gradient(135deg, var(--brand) 0%, #0a7a70 100%);
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
  min-width: 180px;
  flex-shrink: 0;
}
.featured-result__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.featured-result__label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}
.featured-result__stat p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 0;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .featured-result__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .featured-result__stat {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 20px 24px;
    min-width: unset;
  }
  .featured-result__number {
    font-size: 2.8rem;
    grid-row: span 2;
  }
  .featured-result__label { font-size: 0.9rem; }
  .featured-result__stat p { margin: 0; grid-column: 2; }
}

/* --- Compatibility section --- */
.compat {
  padding: 72px 20px;
  background: var(--dark);
}
.compat__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.compat__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #e2e8f0;
  margin: 10px 0 14px;
}
.compat__sub {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.compat__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.compat__tag {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.01em;
}
.compat__tag--more {
  background: rgba(13,148,136,0.12);
  border-color: rgba(13,148,136,0.35);
  color: var(--brand-light);
}
.compat__note {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}
.compat__note a {
  color: var(--brand);
  text-decoration: underline;
}

/* --- Pricing anchor (vs enterprise tools) --- */
.pricing__anchor {
  font-size: 0.8rem;
  color: #64748b;
  margin: 6px 0 0;
  text-align: center;
  line-height: 1.4;
}

/* --- Risk reversal lines --- */
.hero__risk {
  font-size: 0.82rem;
  color: #64748b;
  margin: 8px 0 0;
  line-height: 1.5;
}
.hero__risk a { color: var(--brand); text-decoration: underline; }
.pricing__risk {
  font-size: 0.8rem;
  color: #64748b;
  margin: 8px 0 0;
  line-height: 1.4;
  text-align: center;
}
.pricing__risk a { color: var(--brand); text-decoration: underline; }

/* --- Lead capture / email magnet --- */
.lead-capture {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 72px 20px;
}
.lead-capture__inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead-capture__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #e2e8f0;
  margin: 10px 0 14px;
  line-height: 1.3;
}
.lead-capture__copy p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 16px;
}
.lead-capture__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-capture__bullets li {
  font-size: 0.9rem;
  color: #cbd5e1;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.lead-capture__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
}
.lead-capture__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-capture__form input[type="email"] {
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: #e2e8f0;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.lead-capture__form input[type="email"]::placeholder { color: #4b5563; }
.lead-capture__form input[type="email"]:focus { border-color: var(--brand); }
.btn--capture {
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn--capture:hover { background: #0a7a70; }
.btn--capture:active { transform: scale(0.98); }
.lead-capture__fine {
  font-size: 0.78rem;
  color: #4b5563;
  margin: 0;
  text-align: center;
}
.lead-capture__success {
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.lead-capture__success[hidden] { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 700px) {
  .lead-capture__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   COMPARISON TABLE & PULL QUOTE — used on vs/comparison pages
   ============================================================ */
.compare-table {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: 12px;
  border: 1px solid rgba(18,24,35,0.10);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.compare-table th {
  background: #f0faf8;
  color: #0f766e;
  font-weight: 800;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid rgba(15,118,110,0.15);
  white-space: nowrap;
}
.compare-table th:first-child {
  color: #5f6b7a;
  background: #f8f7f4;
}
.compare-table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(18,24,35,0.06);
  color: #1b2433;
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(248,247,244,0.6); }

.pull-quote {
  margin: 16px 0;
  padding: 14px 18px;
  border-left: 3px solid #0f766e;
  background: rgba(15,118,110,0.05);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  font-style: italic;
  color: #1b2433;
  line-height: 1.6;
}

/* template-box for pre-formatted listing templates */
.template-box {
  background: #f8f7f4;
  border: 1px solid rgba(18,24,35,0.10);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  color: #1b2433;
  margin: 12px 0 20px;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

/* ============================================================
   RESOURCES GRID SECTION — all-pages internal link hub
   ============================================================ */
.resources-grid-section {
  padding: 64px 24px;
  background: #f8f7f4;
  border-top: 1px solid rgba(18,24,35,0.07);
}
.resources-grid-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.resources-grid-section__header {
  margin-bottom: 40px;
}
.resources-grid-section__header h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #1b2433;
  margin: 8px 0 0;
  line-height: 1.3;
}
.resources-grid-section__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 40px;
}
.resources-col__heading {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #5f6b7a;
  margin-bottom: 12px;
}
.resources-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.resources-col ul li a {
  font-size: 13.5px;
  color: #1b2433;
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s;
}
.resources-col ul li a:hover {
  color: #0f766e;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .resources-grid-section__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
}

/* ============================================================
   END SUBPAGE STYLES — site-next v5
   ============================================================ */
