/* SuccessRate Landing Page — LandingPage4 design */

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

:root {
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --green-600: #059669;
  --amber-500: #f59e0b;
  --red-500: #ef4444;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
}

/* ── Nav ──────────────────────────────────────────────────────────────── */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  padding: 0 clamp(16px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lp-nav__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.lp-nav__brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}

.lp-nav__cta {
  background: var(--blue-700);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.lp-nav__cta:hover { background: var(--blue-800); }

/* ── Hero ─────────────────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) clamp(16px, 5vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(96, 165, 250, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(139, 92, 246, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
    linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1e3a8a 100%);
  color: var(--white);
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.lp-hero__content { position: relative; z-index: 1; }

.lp-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  background: rgba(96, 165, 250, 0.08);
}

.lp-hero h1 {
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 24px;
}

.lp-hero .gradient-text {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  opacity: 0.80;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.lp-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Shared buttons ───────────────────────────────────────────────────── */

.btn-primary {
  background: var(--white);
  color: var(--blue-700);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

.btn-launch {
  background: var(--white);
  color: var(--blue-700);
  padding: 18px 38px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}

.btn-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── Shared section layout ────────────────────────────────────────────── */

.lp-section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 40px);
}

.lp-section-heading {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--slate-900);
}

.lp-section-sub {
  text-align: center;
  font-size: 18px;
  color: var(--slate-500);
  margin-bottom: 48px;
}

/* Override heading/sub colors inside dark sections */

/* ── App Preview / Demo ───────────────────────────────────────────────── */

.lp-app-window {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}

.lp-window-bar {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-win-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.lp-win-dot--red    { background: #ff5f57; }
.lp-win-dot--yellow { background: #febc2e; }
.lp-win-dot--green  { background: #28c840; }

.lp-window-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.lp-window-body {
  background: white;
  padding: 28px;
}

.lp-chart-wrapper { position: relative; }

.lp-chart-svg { width: 100%; height: auto; display: block; }

.lp-success-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dcfce7;
  color: #15803d;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid #86efac;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lp-success-badge.amber { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.lp-success-badge.red   { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

.lp-slider-area {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
}

.lp-slider-label {
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 500;
  margin-bottom: 12px;
}

.lp-slider-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-spending-input {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, #1d4ed8 0%, #1d4ed8 33%, #e2e8f0 33%);
}

.lp-spending-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-700);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.lp-spending-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-700);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.lp-slider-output {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
  min-width: 190px;
}

.lp-slider-output .rate { color: var(--green-600); }
.lp-slider-output .rate.amber { color: #d97706; }
.lp-slider-output .rate.red { color: #dc2626; }

/* ── Path animations ──────────────────────────────────────────────────── */

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

.trial-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPath 1.4s ease forwards;
}

/* ── Features ─────────────────────────────────────────────────────────── */

.lp-features-section {
  background: var(--slate-900);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 40px);
}

.lp-features-inner { max-width: 1100px; margin: 0 auto; }

.lp-features-section .lp-section-heading { color: var(--white); }
.lp-features-section .lp-section-sub { color: #94a3b8; }

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.lp-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
}

.lp-feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-400);
}

.lp-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lp-feature-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
}

/* ── Trust Signal ─────────────────────────────────────────────────────── */

.lp-trust-section {
  background: #eef2ff;
  padding: 52px clamp(16px, 5vw, 40px);
  text-align: center;
}

.lp-trust-inner { max-width: 800px; margin: 0 auto; }

.lp-trust-quote {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #1e1b4b;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-style: italic;
}

.lp-trust-attribution {
  margin-top: 14px;
  font-size: 16px;
  color: #6366f1;
  font-weight: 500;
}

/* ── How It Works ─────────────────────────────────────────────────────── */

.lp-how-wrap {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 40px);
}

.lp-how-section {
  max-width: 760px;
  margin: 0 auto;
}


.lp-steps-list {
  list-style: none;
  margin-top: 48px;
}

.lp-step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.lp-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--blue-100);
}

.lp-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.lp-step-content { padding-bottom: 36px; }

.lp-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  padding-top: 8px;
  color: var(--slate-900);
}

.lp-step-content p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ── Privacy ──────────────────────────────────────────────────────────── */

.lp-privacy-section {
  background: #f0fdf4;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 40px);
}

.lp-privacy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-shield-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-600);
}

.lp-privacy-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14532d;
  margin-bottom: 10px;
}

.lp-privacy-inner .lp-section-sub {
  color: #166534;
  margin-bottom: 48px;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.lp-compare-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.lp-compare-card.good { border-top: 4px solid #22c55e; }
.lp-compare-card.bad  { border-top: 4px solid #f87171; }

.lp-compare-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lp-compare-card.bad h3  { color: #b91c1c; }
.lp-compare-card.good h3 { color: #15803d; }

.lp-compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-compare-card li {
  font-size: 15px;
  color: var(--slate-700);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.lp-compare-card.bad  li::before { content: "\2717"; color: #f87171; font-weight: 700; flex-shrink: 0; }
.lp-compare-card.good li::before { content: "\2713"; color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ── Activate section ────────────────────────────────────────────────── */

.lp-activate-section {
  background: var(--slate-50);
  padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 40px);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.lp-activate-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lp-activate-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-700);
}

.lp-activate-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.lp-activate-sub {
  font-size: 16px;
  color: var(--slate-500);
  margin-bottom: 24px;
}

.lp-activate-error {
  background: #fef2f2;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  margin-bottom: 16px;
  text-align: left;
}

.lp-activate-row {
  display: flex;
  gap: 10px;
}

.lp-activate-input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid var(--slate-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Courier New', monospace;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}

.lp-activate-input:focus {
  border-color: var(--blue-500);
}

.lp-activate-input::placeholder { color: #94a3b8; }

.lp-activate-btn {
  padding: 13px 24px;
  background: var(--blue-700);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}

.lp-activate-btn:hover:not(:disabled) {
  background: var(--blue-800);
  transform: translateY(-1px);
}

.lp-activate-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.lp-activate-hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--slate-500);
}

.lp-activate-hint a {
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 500;
}

.lp-activate-hint a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .lp-activate-row { flex-direction: column; }
  .lp-activate-btn { width: 100%; }
}

/* ── Final CTA ────────────────────────────────────────────────────────── */

.lp-final-cta {
  text-align: center;
  padding: clamp(80px, 10vw, 120px) clamp(16px, 5vw, 40px);
  background:
    radial-gradient(ellipse at 20% 60%, rgba(96, 165, 250, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1e3a8a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.lp-final-cta__inner { position: relative; z-index: 1; }

.lp-final-cta h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto 16px;
}

.lp-final-cta p {
  font-size: 19px;
  opacity: 0.75;
  margin-bottom: 36px;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.lp-footer {
  background: #0a0f1e;
  color: #475569;
  padding: 28px clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.lp-footer__badge {
  font-size: 13px;
  color: #334155;
  background: rgba(255,255,255,0.05);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
}

.lp-footer a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer a:hover { color: #94a3b8; }

/* ── Nav links ────────────────────────────────────────────────────────── */

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s, background 0.15s;
}

.lp-nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* ── Hero tagline ─────────────────────────────────────────────────────── */

.lp-hero__tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section eyebrow label ────────────────────────────────────────────── */

.lp-eyebrow-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.lp-eyebrow-label--blue { color: var(--blue-700); }

.lp-feature-claim {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 10px;
}

/* ── Who It's For strip ───────────────────────────────────────────────── */

.lp-who-strip {
  background: var(--white);
  padding: 32px clamp(16px, 5vw, 40px);
  border-bottom: 1px solid var(--slate-200);
}

.lp-who-inner { max-width: 1100px; margin: 0 auto; }

.lp-who-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}

.lp-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-who-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  background: #fafbfd;
}

.lp-who-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.lp-who-card__sub {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ── Light features section ───────────────────────────────────────────── */

.lp-light-section {
  background: var(--slate-50);
  padding: clamp(52px, 7vw, 80px) clamp(16px, 5vw, 40px);
}

.lp-section-heading--left { text-align: left; }
.lp-section-sub--left     { text-align: left; margin-bottom: 36px; }

.lp-light-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-light-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  border-color: var(--slate-200);
}

.lp-light-card__icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue-700);
  flex-shrink: 0;
}

.lp-light-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}

.lp-light-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ── 5 Levers section ─────────────────────────────────────────────────── */

.lp-levers-section {
  background: var(--white);
  padding: clamp(52px, 7vw, 80px) clamp(16px, 5vw, 40px);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.lp-levers__heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.lp-levers__sub {
  font-size: 15px;
  color: var(--slate-500);
  margin-bottom: 28px;
}

.lp-levers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lp-lever-card {
  background: #f8fafd;
  border: 1px solid #e4ecf7;
  border-radius: 12px;
  padding: 16px 14px;
}

.lp-lever__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
  margin-bottom: 6px;
}

.lp-lever__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.lp-lever__desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ── Privacy pills ────────────────────────────────────────────────────── */

.lp-privacy-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lp-pill {
  background: var(--white);
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

/* ── Footer links ─────────────────────────────────────────────────────── */

.lp-footer__copy { font-size: 13px; }

.lp-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.lp-footer__sep { color: #1e293b; }

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .lp-levers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .lp-who-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .lp-compare-grid  { grid-template-columns: 1fr; }
  .lp-who-grid      { grid-template-columns: 1fr; }
  .lp-levers-grid   { grid-template-columns: 1fr 1fr; }
  .lp-footer__links { justify-content: center; }
  .lp-footer        { flex-direction: column; align-items: center; text-align: center; }
}
