/* ═══════════════════════════════════════════════════════════════
   SCLAB LANDING PAGE — Apple-inspired design
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #E84393;
  --purple: #6C63FF;
  --blue: #3B82F6;
  --green: #22c55e;
  --orange: #FFA502;
  --bg: #fafafa;
  --bg-dark: #09090b;
  --text: #18181b;
  --text-secondary: #71717a;
  --text-tertiary: #a1a1aa;
  --border: #e4e4e7;
  --card: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 4px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.08);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
}
.logo-text { color: var(--text); }

.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: 10px 20px; border-radius: 100px;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2px; background: var(--text);
  position: absolute; left: 0; transition: var(--transition);
  border-radius: 2px;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; border-radius: 100px;
  padding: 12px 24px; transition: all var(--transition);
  cursor: pointer; border: none; text-align: center; justify-content: center;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; box-shadow: 0 4px 16px rgba(232,67,147,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,67,147,.4); }
.btn-ghost {
  background: rgba(0,0,0,.04); color: var(--text);
}
.btn-ghost:hover { background: rgba(0,0,0,.08); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-full { width: 100%; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,67,147,.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 20%, rgba(108,99,255,.05) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative;
}
.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--pink);
  background: rgba(232,67,147,.08); border: 1px solid rgba(232,67,147,.15);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 5vw, 56px); font-weight: 900;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px; line-height: 1.6; color: var(--text-secondary);
  margin-bottom: 32px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-proof { display: flex; gap: 24px; align-items: center; }
.hero-proof-item { text-align: center; }
.hero-proof-item strong {
  display: block; font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-proof-item span { font-size: 13px; color: var(--text-tertiary); }
.hero-proof-divider { width: 1px; height: 40px; background: var(--border); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phone {
  width: 300px; background: #fff; border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden; position: relative; z-index: 2;
  padding: 12px;
}
.phone-notch {
  width: 120px; height: 28px; background: #000; border-radius: 0 0 20px 20px;
  margin: -12px auto 16px; position: relative; z-index: 3;
}
.phone-screen { padding: 8px 8px 24px; }
.phone-header { margin-bottom: 16px; }
.phone-greeting { font-size: 20px; font-weight: 800; color: var(--text); }
.phone-sub { font-size: 11px; color: var(--text-secondary); margin-top: 4px; }
.phone-credits-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; color: var(--purple);
  background: rgba(108,99,255,.08); border: 1px solid rgba(108,99,255,.15);
  padding: 3px 10px; border-radius: 100px; margin-top: 8px;
}
.phone-input-card {
  background: #f9f9fb; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px; margin-bottom: 12px;
}
.phone-label {
  font-size: 9px; font-weight: 700; color: var(--text-tertiary);
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.phone-input {
  font-size: 11px; color: var(--text-tertiary);
}
.phone-sections { margin-top: 4px; }
.phone-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.chip {
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; border: 1px solid;
}
.chip-adn { color: #6C63FF; border-color: rgba(108,99,255,.3); background: rgba(108,99,255,.06); }
.chip-tiktok { color: #E84393; border-color: rgba(232,67,147,.3); background: rgba(232,67,147,.06); }
.chip-linkedin { color: #3B82F6; border-color: rgba(59,130,246,.3); background: rgba(59,130,246,.06); }
.chip-news { color: #71717a; border-color: rgba(113,113,122,.3); background: rgba(113,113,122,.06); }
.chip-blog { color: #22c55e; border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.06); }
.chip-formation { color: #22c55e; border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.06); }

.hero-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,67,147,.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(40px); z-index: 1;
}

/* ─── Sources ───────────────────────────────────────────────── */
.sources {
  padding: 48px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sources-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-tertiary); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.sources-row {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.source-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
}

/* ─── Section Headers ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: 13px; font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary); margin-top: 16px;
}

/* ─── Features ──────────────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,67,147,.2);
}
.feature-large { grid-column: span 3; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; }
.feature-large .feature-icon { grid-row: span 2; }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.feature-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.feature-card p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* ─── Feature Previews (Premium UI) ────────────────────────── */
.feature-preview {
  margin-top: auto;
  padding-top: 16px;
  position: relative;
}

/* 1. Structure pro */
.fp-line { background: #f4f4f5; border-radius: 4px; height: 6px; margin-bottom: 8px; transition: background 0.3s; }
.fp-title { width: 40%; height: 8px; margin-bottom: 12px; background: #e4e4e7; }
.fp-long { width: 100%; }
.fp-short { width: 60%; margin-bottom: 12px; }
.fp-badge { 
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; color: var(--pink); 
  background: rgba(232,67,147,.1); border: 1px solid rgba(232,67,147,.2);
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(232,67,147,.1);
}
.feature-card:hover .fp-line { background: #e4e4e7; }
.feature-card:hover .fp-title { background: #d4d4d8; }

/* 2. 7 Formats */
.fp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fp-chips span { 
  font-size: 11px; font-weight: 700; color: #fff; 
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.feature-card:hover .fp-chips span { transform: translateY(-2px) scale(1.02); }

/* 3. 90 Secondes */
.fp-timer { display: flex; flex-direction: column; gap: 10px; }
.fp-timer-value { font-size: 32px; font-weight: 900; letter-spacing: -1px; color: var(--text); display: flex; align-items: baseline; gap: 4px; }
.fp-timer-value::after { content: "min"; font-size: 14px; font-weight: 600; color: var(--text-tertiary); letter-spacing: 0; }
.fp-timer-bar { height: 8px; background: #f4f4f5; border-radius: 100px; overflow: hidden; width: 100%; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.fp-timer-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #3B82F6, #10b981); border-radius: 100px; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); }
.feature-card:hover .fp-timer-fill { width: 45%; } /* dynamic fill on hover */

/* 4. Dossiers & espaces */
.fp-folders { display: flex; flex-direction: column; gap: 8px; }
.fp-folder { 
  display: flex; align-items: center; gap: 12px; 
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  background: #f4f4f5; padding: 10px 16px; border-radius: 12px;
  border: 1px solid transparent; transition: all 0.3s;
}
.fp-folder-icon { font-size: 16px; }
.fp-folder-shared { background: #f0fdf4; color: #166534; }
.feature-card:hover .fp-folder { background: #fff; border-color: var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.05); transform: translateX(4px); }

/* 5. Export dans vos outils */
.fp-exports { display: flex; align-items: center; padding-left: 12px; }
.fp-export-icon { 
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
  border: 3px solid var(--card);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fp-export-icon:first-child { margin-left: 0; }
.feature-card:hover .fp-export-icon { transform: translateY(-6px); }
.feature-card:hover .fp-export-icon:nth-child(2) { transition-delay: 0.05s; }
.feature-card:hover .fp-export-icon:nth-child(3) { transition-delay: 0.1s; }
.feature-card:hover .fp-export-icon:nth-child(4) { transition-delay: 0.15s; }

/* 6. Traduction */
.fp-langs { 
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; padding: 12px 18px; border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.fp-langs span {
  display: inline-flex; align-items: center; gap: 6px;
}
.flag-img {
  width: 16px; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  display: block;
}
.fp-lang-arrow { color: var(--pink); font-size: 16px; transition: 0.3s; }
.feature-card:hover .fp-lang-arrow { transform: translateX(4px); color: var(--purple); }

/* ─── How it works ──────────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: linear-gradient(180deg, #f4f4f5 0%, var(--bg) 100%);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  position: relative; transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step-number {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.step-visual { margin-top: 20px; }
.step-mock-input {
  display: flex; align-items: center; gap: 8px;
  background: #f4f4f5; border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 10px 14px;
  font-size: 12px; color: var(--text-tertiary);
}
.step-mock-icon { color: var(--text-tertiary); display: flex; }
.step-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.step-result {
  background: #f9f9fb; border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 16px;
}
.step-result-title { font-size: 11px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.step-result-line { height: 6px; background: #e4e4e7; border-radius: 3px; margin-bottom: 6px; }
.step-result-line.short { width: 60%; }
.step-result-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--green); background: rgba(34,197,94,.1);
  padding: 2px 8px; border-radius: 4px; margin-top: 8px;
}

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 60px;
}
.price-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: relative; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-popular {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), var(--shadow);
}
.price-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
  letter-spacing: 0.5px;
}

.price-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.price-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.price-header h3 { font-size: 18px; font-weight: 700; }

.price-amount { margin-bottom: 4px; }
.price-value { font-size: 36px; font-weight: 900; letter-spacing: -0.02em; }
.price-period { font-size: 15px; color: var(--text-secondary); }
.price-credits {
  font-size: 14px; font-weight: 600; color: var(--purple); margin-bottom: 20px;
}

.price-features {
  list-style: none; margin-bottom: 24px; flex: 1;
}
.price-features li {
  font-size: 14px; color: var(--text-secondary);
  padding: 6px 0; padding-left: 24px; position: relative;
}
.price-features li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Credit table */
.credit-table-wrap { max-width: 600px; margin: 0 auto; }
.credit-table-title { font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 20px; }
.credit-table {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.credit-row {
  display: flex; justify-content: space-between; padding: 12px 20px;
  font-size: 14px; border-bottom: 1px solid var(--border);
}
.credit-row:last-child { border-bottom: none; }
.credit-row span:last-child { font-weight: 700; color: var(--purple); }
.credit-row-header {
  background: #f4f4f5; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary);
}
.credit-row-header span:last-child { color: var(--text-secondary); }
.credit-footnote {
  text-align: center; font-size: 13px; color: var(--text-tertiary); margin-top: 12px;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 100px 0; background: #f4f4f5; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(232,67,147,.2); }
.faq-item summary {
  padding: 20px 24px; font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--text-tertiary);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.faq-item p a { color: var(--pink); text-decoration: underline; }

/* ─── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--bg-dark);
  color: #fff;
}
.final-cta-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.final-cta-subtitle {
  font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 36px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-secondary); margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-tertiary); margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 14px; color: var(--text-secondary);
  padding: 4px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  font-size: 13px; color: var(--text-tertiary);
}

/* ─── Scroll Animations ─────────────────────────────────────── */
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-in.visible {
  opacity: 1; transform: translateY(0);
}
.animate-in:nth-child(2) { transition-delay: .1s; }
.animate-in:nth-child(3) { transition-delay: .2s; }
.animate-in:nth-child(4) { transition-delay: .3s; }
.animate-in:nth-child(5) { transition-delay: .35s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; font-weight: 600; }
  .nav-cta { display: none; }
  .nav-burger { display: block; z-index: 1001; }

  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-phone { width: 260px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Privacy page ──────────────────────────────────────────── */
.legal-page {
  padding: 140px 0 80px;
}
.legal-page h1 {
  font-size: 36px; font-weight: 900; margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 14px; color: var(--text-tertiary); margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 17px; font-weight: 600; margin-top: 24px; margin-bottom: 8px;
}
.legal-page p, .legal-page li {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px;
}
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page a { color: var(--pink); text-decoration: underline; }
