:root {
  --bg-base: #f2f9ff;
  --bg-deep: #dbeafe;
  --bg-mid: #f2f9ff;
  --bg-card: rgba(255, 255, 255, 0.78);
  --violet: #7c3aed;
  --violet-bright: #8b5cf6;
  --violet-deep: #5b21b6;
  --warm: #ea580c;
  --warm-soft: rgba(253, 186, 116, 0.45);
  --text: #0f172a;
  --text-muted: rgba(15, 23, 42, 0.62);
  --border: rgba(124, 58, 237, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(124, 58, 237, 0.06);
  --font: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-base);
  background-image: radial-gradient(1200px 900px at 8% -5%, rgba(167, 139, 250, 0.2), transparent 55%),
    radial-gradient(1000px 700px at 92% 8%, rgba(147, 197, 253, 0.55), transparent 50%),
    radial-gradient(800px 600px at 50% 100%, rgba(191, 219, 254, 0.9), transparent 55%),
    linear-gradient(168deg, #ffffff 0%, var(--bg-base) 38%, #e8f3fc 72%, #f0f7ff 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.028;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--violet);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  color: #0c1222;
  font-weight: 600;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(242, 249, 255, 0.78));
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.55rem 0;
  min-height: 3.35rem;
  /* Keep nav/CTAs clear of the large logo (logo is out-of-flow) */
  padding-inline-start: calc(112px + 0.85rem);
}

@media (min-width: 480px) {
  .header-inner {
    padding-inline-start: calc(144px + 0.85rem);
  }
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 3.5rem;
    padding: 0.65rem 0;
    padding-inline-start: calc(180px + 1rem);
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding-inline-start: calc(200px + 1rem);
  }
}

.site-header .brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--violet-deep);
}

.brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header .brand-logo {
  width: 112px;
  height: 112px;
}

@media (min-width: 480px) {
  .site-header .brand-logo {
    width: 144px;
    height: 144px;
  }
}

@media (min-width: 768px) {
  .site-header .brand-logo {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .site-header .brand-logo {
    width: 200px;
    height: 200px;
  }
}

.brand-logo.sm {
  width: 48px;
  height: 48px;
}

@media (min-width: 480px) {
  .brand-logo.sm {
    width: 56px;
    height: 56px;
  }
}

.brand-name {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--violet-deep);
  text-decoration: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: rgba(124, 58, 237, 0.35);
  background: #fff;
}

.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--text);
  padding: 0.65rem 0;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
}

.mobile-nav a:hover {
  color: var(--violet);
}

@media (min-width: 768px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, var(--violet));
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.22);
  background: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

/* Hero (reference layout: centered, soft radial light, badge + split headline + lead + slider + CTAs) */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 9vw, 5.75rem) 0 clamp(3.25rem, 7vw, 4.75rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -15% -20% auto -20%;
  height: 90%;
  max-height: 560px;
  margin: 0 auto;
  background: radial-gradient(ellipse 72% 88% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0.55) 42%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 52rem;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1rem 0.45rem 0.85rem;
  font-family: "Inter", var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--violet-deep);
  background: rgba(237, 233, 254, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.hero-badge-star {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: "Inter", var(--font);
  font-size: clamp(3rem, 12vw, 6.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
  max-width: none;
  width: 100%;
}

.hero-title-line {
  display: block;
  color: #111827;
}

.hero-title-line--accent {
  color: var(--violet);
  background: linear-gradient(105deg, #7c3aed 0%, #8b5cf6 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Room for descenders (g, y, p); gradient text can clip them otherwise */
  padding-bottom: 0.08em;
}

.lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 36rem;
  text-align: center;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-family: "Inter", var(--font);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.btn-outline {
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-outline:hover {
  background: #fafafa;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.btn-hero-primary {
  background: var(--violet);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.32), 0 4px 12px rgba(124, 58, 237, 0.18);
}

.btn-hero-primary:hover {
  background: #6d28d9;
  box-shadow: 0 16px 44px rgba(124, 58, 246, 0.38), 0 4px 14px rgba(124, 58, 237, 0.22);
}

/* Hero payout slider */
.payout-slider {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.payout-slider-glow {
  position: absolute;
  inset: -12% -8% -8%;
  background: radial-gradient(circle at 50% 30%, rgba(167, 139, 250, 0.35), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

.payout-slider-card {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: left;
}

.payout-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.payout-compare-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.payout-compare-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.payout-compare-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.payout-compare-value.muted {
  color: var(--text-muted);
}

.payout-compare-value.accent {
  background: linear-gradient(90deg, var(--violet), #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.payout-slider-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  text-align: center;
}

.payout-amount-block {
  text-align: center;
  margin-bottom: 1.25rem;
}

.payout-amount-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.payout-amount {
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.payout-range-wrap {
  margin-bottom: 1.35rem;
}

.payout-range-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.payout-range-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.45);
  font-variant-numeric: tabular-nums;
}

.payout-range {
  width: 100%;
  height: 10px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.payout-range:focus {
  outline: none;
}

.payout-range:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
  border-radius: 999px;
}

.payout-range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: linear-gradient(
    to right,
    rgba(124, 58, 237, 0.45) 0%,
    rgba(167, 139, 250, 0.55) var(--fill, 50%),
    rgba(191, 219, 254, 0.85) var(--fill, 50%),
    rgba(191, 219, 254, 0.85) 100%
  );
}

.payout-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #e9d5ff);
  border: 2px solid var(--violet);
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.35);
}

.payout-range::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.payout-range::-moz-range-progress {
  height: 10px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.45), rgba(167, 139, 250, 0.55));
}

.payout-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #e9d5ff);
  border: 2px solid var(--violet);
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.35);
}

.payout-breakdown {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.payout-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
}

.payout-breakdown-row dt {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.payout-breakdown-row dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.payout-breakdown-net dt {
  color: var(--text);
  font-weight: 600;
}

.payout-breakdown-net dd {
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--violet), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.payout-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.48);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.12) 42%, transparent);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  color: var(--text-muted);
  text-align: center;
}

.section-intro.left {
  margin-left: 0;
  text-align: left;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--violet);
  margin-bottom: 0.65rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Agencies page */
.hero--page {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero--page .hero-title {
  font-size: clamp(2.35rem, 8.5vw, 4.75rem);
  line-height: 1.14;
}

.agencies-pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .agencies-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agencies-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.agencies-card-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.agencies-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 40rem;
}

.agencies-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.agencies-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Rolling stats bar (marquee) */
.stats-section {
  position: relative;
  z-index: 1;
  border-block: 1px solid rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(237, 233, 254, 0.45) 35%,
    rgba(219, 234, 254, 0.35) 65%,
    rgba(255, 255, 255, 0.97) 100%
  );
  padding: 0;
}

.stats-marquee-outer {
  overflow: hidden;
  padding: 1.5rem 0;
  /* Light edge soften only¯content stays dense so the strip always looks full */
  mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 1.5%, #000 98.5%, transparent);
}

.stats-marquee-track {
  display: flex;
  width: max-content;
  animation: stats-marquee 90s linear infinite;
  will-change: transform;
}

.stats-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: clamp(2.25rem, 5vw, 5rem);
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
}

.stat-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: clamp(11.5rem, 18vw, 15rem);
  max-width: 16rem;
  padding: 0.5rem clamp(1rem, 2.5vw, 1.75rem);
  text-align: center;
}

.stat-chip-value {
  font-family: "Inter", var(--font);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--violet-deep);
  font-variant-numeric: tabular-nums;
}

.stat-chip-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 14rem;
}

.stats-note {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.48);
}

/* Three identical groups: move exactly one-third of the track width per loop */
@keyframes stats-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333333%);
  }
}

.stats-marquee-outer:hover .stats-marquee-track {
  animation-play-state: paused;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--text);
  flex: 1;
}

.testimonial-quote em {
  font-style: italic;
  color: var(--violet-deep);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-wrap .section-intro {
  margin-bottom: 1.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 44rem;
  margin-inline: auto;
}

.faq-item {
  padding: 0.2rem 1.25rem 0.85rem;
}

.faq-item[open] {
  padding-bottom: 1rem;
}

.faq-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  padding: 0.85rem 0 0.35rem;
  color: var(--text);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4rem;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(-135deg);
  margin-top: 0.55rem;
}

.faq-answer {
  padding: 0 0 0.15rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

/* CTA */
.cta-section {
  padding-bottom: 5rem;
}

.cta-inner {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 2.25rem 2.5rem;
  }
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-form input,
.cta-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  outline: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.4);
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-status {
  margin: 0;
  min-height: 1.5rem;
  font-size: 0.9rem;
  color: var(--violet-deep);
}

.form-status--error {
  color: #b91c1c;
}

/* Footer — disclaimer only */
.site-footer {
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(232, 241, 252, 0.95));
}

.footer-inner {
  max-width: min(52ch, 100%);
}

.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.48);
  line-height: 1.5;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .stats-marquee-track {
    animation: none;
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
  }

  .stats-marquee-group:not(:first-child) {
    display: none;
  }

  .stats-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-inline: 0.5rem;
    gap: 0.75rem;
  }

  .stat-chip {
    border-inline-end: none;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    margin: 0.35rem;
    min-width: 9rem;
  }

  .stats-marquee-outer {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
