/* ═══════════════════════════════════════════════════════
   DataStop — Landing page styles
   ═══════════════════════════════════════════════════════ */

:root {
  --indigo: #4F46E5;
  --indigo-deep: #3730A3;
  --indigo-light: #EEF2FF;
  --indigo-50: #F5F3FF;
  --emerald: #059669;
  --emerald-deep: #047857;
  --emerald-light: #D1FAE5;
  --amber: #F59E0B;
  --red: #DC2626;
  --red-light: #FEE2E2;

  --ink: #0F172A;
  --ink-soft: #1E293B;
  --muted: #64748B;
  --muted-soft: #94A3B8;
  --line: #E2E8F0;

  --cream: #FAF7F0;
  --cream-deep: #F5F1E8;
  --paper: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 48px -12px rgba(15,23,42,.18), 0 8px 16px -8px rgba(15,23,42,.08);
  --shadow-xl: 0 32px 64px -16px rgba(79,70,229,.18), 0 12px 24px -8px rgba(15,23,42,.08);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--indigo); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--indigo-deep); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ LOGO ═══════════ */
.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.logo-data { color: var(--indigo); }
.logo-stop {
  color: #94A3B8;
  position: relative;
  display: inline-block;
}
.logo-strike {
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 4px;
  background: var(--emerald);
  border-radius: 2px;
  transform: translateY(-50%);
}
.logo-text--white .logo-data { color: #fff; }
.logo-text--white .logo-stop { color: rgba(255,255,255,.4); }
.logo-text--white .logo-strike { background: #34D399; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--ink); color: white; }
.btn--primary:hover {
  background: var(--indigo);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--accent { background: var(--emerald); color: white; }
.btn--accent:hover {
  background: var(--emerald-deep);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(5,150,105,.4);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(15,23,42,.02);
}

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ═══════════ SECTION HEAD ═══════════ */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 6px 12px;
  background: var(--indigo-light);
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}

.section-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

/* ═══════════ STRIKE WORD ═══════════ */
.strike-word {
  position: relative;
  display: inline-block;
  color: #94A3B8;
}
.strike-word::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 55%;
  height: 0.16em;
  background: var(--emerald);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 247, 240, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding var(--transition), background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  padding: 10px 0;
  border-bottom-color: rgba(15,23,42,.06);
  background: rgba(250, 247, 240, 0.85);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}
.nav__links a:hover { color: var(--indigo); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.06), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald-deep);
  background: var(--emerald-light);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title-accent {
  display: block;
  color: var(--indigo);
}

.hero__subtitle {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero__subtitle strong { color: var(--ink); font-weight: 600; }

.hero__form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  max-width: 560px;
}
.hero__input-wrap {
  position: relative;
  flex: 1;
}
.hero__input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted-soft);
  pointer-events: none;
}
.hero__input {
  width: 100%;
  height: 56px;
  padding: 0 18px 0 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero__input::placeholder { color: var(--muted-soft); }
.hero__input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

.hero__form .btn { height: 56px; padding: 0 24px; font-size: 15px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--emerald);
}

/* ═══════════ SCAN (hero visual) ═══════════ */
.hero__right { position: relative; }

.scan {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* The 3 states all sit absolutely, fade between */
.scan__idle,
.scan__loading,
.scan__reveal {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

/* Idle = visible by default */
.scan__idle { opacity: 1; pointer-events: auto; }
.scan__idle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Loading state */
.scan__loading {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: var(--paper);
}
.scan__loading-icon {
  width: 64px;
  height: 64px;
  color: var(--indigo);
  margin-bottom: 8px;
  animation: scan-spin 6s linear infinite;
}
.scan__loading-icon svg { width: 100%; height: 100%; }
@keyframes scan-spin { to { transform: rotate(360deg); } }

.scan__loading-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.scan__loading-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.scan__progress {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.scan__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--indigo);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.scan__progress-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  font-family: 'SF Mono', 'Menlo', monospace;
  color: var(--muted);
  margin-bottom: 16px;
}
.scan__progress-meta span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.scan__log {
  width: 100%;
  height: 38px;
  background: var(--ink);
  border-radius: 10px;
  padding: 0 14px;
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 11px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scan__log-line {
  white-space: nowrap;
  animation: log-fade-in 0.3s ease;
}
.scan__log-line.is-found { color: #FCA5A5; }
.scan__log-line.is-ok { color: #34D399; }
@keyframes log-fade-in {
  from { opacity: 0; transform: translateX(-4px); }
  to { opacity: 1; }
}

/* Reveal state */
.scan__reveal {
  background: var(--paper);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.scan__reveal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: var(--emerald-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.scan__reveal-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.scan__reveal-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scan__reveal-number {
  font-size: 88px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.scan__reveal-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  max-width: 220px;
  margin-top: 6px;
}

.scan__reveal-list {
  list-style: none;
  padding: 14px 20px;
  margin: 16px 0;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}
.scan__reveal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
}
.scan__reveal-list li svg {
  width: 14px;
  height: 14px;
  color: var(--emerald);
  flex-shrink: 0;
}
.scan__reveal-list strong { color: var(--ink); font-weight: 700; }

.scan__reveal-cta {
  width: 100%;
  max-width: 320px;
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(5,150,105,.4); }
  50% { box-shadow: 0 14px 36px -8px rgba(5,150,105,.65); }
}

.scan__reveal-redo {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  margin-top: 12px;
  padding: 4px 8px;
  transition: color var(--transition);
}
.scan__reveal-redo:hover { color: var(--ink); }

/* State switching */
.scan.is-loading .scan__idle { opacity: 0; pointer-events: none; }
.scan.is-loading .scan__loading { opacity: 1; pointer-events: auto; }

.scan.is-revealed .scan__idle,
.scan.is-revealed .scan__loading { opacity: 0; pointer-events: none; }
.scan.is-revealed .scan__reveal { opacity: 1; pointer-events: auto; }

/* Button states */
#scanBtn.is-scanning {
  background: var(--indigo);
  color: white;
  pointer-events: none;
}
#scanBtn.is-scanning .btn__icon { animation: spin 0.8s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ═══════════ PROOF ═══════════ */
.proof {
  padding: 32px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.proof__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.proof__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.proof__divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* ═══════════ PAINS ═══════════ */
.pains { padding: 96px 0; }
.pains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-light);
}
.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--indigo-light);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pain-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ═══════════ HOW ═══════════ */
.how { padding: 96px 0; background: var(--paper); }
.how__illustration {
  max-width: 980px;
  margin: 0 auto 32px;
}
.how__illustration img { width: 100%; height: auto; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
}
.how-step__num {
  font-size: 14px;
  font-weight: 800;
  color: var(--emerald);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.how-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ═══════════ PRODUCT ═══════════ */
.product { padding: 96px 0; }
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.product__bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.product__bullets svg {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.dashboard {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  position: relative;
}
.dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}
.dashboard__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dashboard__subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.dashboard__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dashboard__gauge { width: 80px; height: 80px; }
.dashboard__gauge svg { width: 100%; height: 100%; }
.dashboard__score-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard__stats {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--muted);
}
.dashboard__stats strong { color: var(--ink); font-weight: 800; }
.dashboard__stats-div {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.dashboard__list-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.dashboard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.dashboard__broker-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.dashboard__broker-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.dashboard__broker-name span {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill svg { width: 12px; height: 12px; }
.pill--emerald { background: var(--emerald-light); color: var(--emerald-deep); }
.pill--amber { background: #FEF3C7; color: #92400E; }
.pill--red { background: var(--red-light); color: #991B1B; }
.pill--gray { background: #F1F5F9; color: var(--muted); }
.pill--ink { background: #E2E8F0; color: var(--ink); }

.dashboard__cta {
  width: 100%;
  background: var(--emerald);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.dashboard__cta svg { width: 14px; height: 14px; }
.dashboard__cta:hover { background: var(--emerald-deep); }

/* ═══════════ TRUST ═══════════ */
.trust { padding: 96px 0; background: var(--paper); }
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.trust__visual { position: relative; }
.trust__portrait {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.trust__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 8px 16px rgba(15,23,42,.16));
}

.trust__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.trust__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust__point > svg {
  width: 24px;
  height: 24px;
  color: var(--indigo);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust__point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust__point span {
  font-size: 14px;
  color: var(--muted);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { padding: 96px 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.testimonial--featured .testimonial__quote p { color: rgba(255,255,255,.92); font-size: 18px; }
.testimonial--featured .testimonial__person strong { color: white; }
.testimonial--featured .testimonial__person span { color: rgba(255,255,255,.6); }

.testimonial__quote svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
  margin-bottom: 12px;
}
.testimonial__quote p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
}
.testimonial__avatar--indigo { background: var(--indigo); }
.testimonial__avatar--emerald { background: var(--emerald); }
.testimonial__avatar--cream { background: var(--cream-deep); color: var(--ink); }

.testimonial__person strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial__person span {
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════ PRICING ═══════════ */
.pricing { padding: 96px 0; background: var(--paper); }

.billing-toggle {
  display: inline-flex;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
  border: 1px solid var(--line);
  gap: 2px;
}
.billing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all var(--transition);
}
.billing-toggle__btn.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 2px 8px rgba(15,23,42,.15);
}
.billing-toggle__save {
  font-size: 11px;
  font-weight: 700;
  background: var(--emerald);
  color: white;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.billing-toggle__btn.is-active .billing-toggle__save {
  background: white;
  color: var(--emerald-deep);
}

/* Wrap the toggle (it's inline) — center it */
.pricing .section-head + .billing-toggle {
  display: flex;
}
.pricing > .container { text-align: center; }
.pricing > .container > * { text-align: left; }
.pricing > .container > .section-head--center,
.pricing > .container > .pricing__note { text-align: center; }
.pricing > .container > .billing-toggle {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.plan__billed {
  font-size: 12px;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 4px;
}
.plan--featured .plan__billed { color: rgba(255,255,255,.6); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.plan:hover {
  border-color: var(--indigo-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }

.plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan__head h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.plan__head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.plan--featured .plan__head p { color: rgba(255,255,255,.65); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan__price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan__price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.plan--featured .plan__price-period { color: rgba(255,255,255,.6); }

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.plan--featured .plan__features li { color: rgba(255,255,255,.9); }
.plan__features svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}
.plan__feature--off { opacity: 0.4; }
.plan__feature--off svg { color: var(--muted-soft); }

.plan--featured .btn--outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: white;
}

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing__note svg { width: 14px; height: 14px; }

/* ═══════════ FAQ ═══════════ */
.faq { padding: 96px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--indigo-light); }
.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ═══════════ CONTRAST (avant/après) ═══════════ */
.contrast {
  padding: 96px 0;
  background: var(--paper);
}
.contrast__figure {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--cream);
}
.contrast__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════ TEAM BAND ═══════════ */
.team-band {
  padding: 96px 0;
  background: var(--cream);
}
.team-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.team-band__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-band__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.team-band__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-band__stats strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.team-band__stats span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ═══════════ LIFESTYLE ═══════════ */
.lifestyle {
  padding: 96px 0;
  background: var(--paper);
}
.lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lifestyle__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.lifestyle__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lifestyle__bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lifestyle__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
}
.lifestyle__bullets svg {
  width: 22px;
  height: 22px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .team-band__grid,
  .lifestyle__grid { grid-template-columns: 1fr; gap: 40px; }
  .team-band__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .team-band__stats strong { font-size: 22px; }
  .lifestyle__visual { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .contrast, .team-band, .lifestyle { padding: 64px 0; }
  .team-band__stats { grid-template-columns: 1fr; gap: 12px; }
}

/* ═══════════ CTA FINAL ═══════════ */
.cta-final {
  padding: 96px 0;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79,70,229,.25), transparent 60%);
  pointer-events: none;
}
.cta-final__art {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 360px;
  max-width: 32vw;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: lighten;
}
@media (max-width: 960px) {
  .cta-final__art { display: none; }
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: white;
}
.cta-final .strike-word { color: rgba(255,255,255,.45); }
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
}

.cta-final__form {
  display: flex;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto;
}
.cta-final__form .hero__input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: white;
}
.cta-final__form .hero__input::placeholder { color: rgba(255,255,255,.5); }
.cta-final__form .hero__input-icon { color: rgba(255,255,255,.5); }
.cta-final__form .hero__input:focus {
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 0 0 4px rgba(255,255,255,.1);
}
.cta-final__form .btn { height: 56px; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #0A0F1E;
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .hero__grid,
  .product__grid,
  .trust__grid,
  .faq__inner { grid-template-columns: 1fr; gap: 48px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .pains__grid,
  .how__steps,
  .testimonials__grid,
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__badge { width: 72px; height: 72px; bottom: -12px; right: -12px; }
}

@media (max-width: 640px) {
  .hero { padding: 32px 0 64px; }
  .hero__form,
  .cta-final__form { flex-direction: column; }
  .hero__form .btn,
  .cta-final__form .btn { width: 100%; }
  .pains { padding: 64px 0; }
  .pains__grid,
  .how__steps,
  .testimonials__grid,
  .pricing__grid { grid-template-columns: 1fr; }
  .proof__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 32px; }
  .scan__reveal-number { font-size: 72px; }
}
