:root {
  --white: #ffffff;
  --bg: #fafaf8;
  --dark: #0e0e1a;
  --dark-2: #1a1a2e;
  --border: #e6e4e0;
  --text: #1a1a2e;
  --text-2: #5c5c7a;
  --text-3: #9e9eb8;
  --accent: #6C5CE7;
  --accent-light: #F0EEFF;
  --accent-hover: #5A4BD1;
  --accent-glow: rgba(108,92,231,0.12);
  --success: #22c55e;
  --warm: #f7f6f3;
  --font: 'DM Sans', sans-serif;
  --serif: 'Instrument Serif', serif;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 700;
}

.nav-logo span {
  font-family: var(--serif);
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  padding: 9px 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-2);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--text); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-solid:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative bg circles */
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.04) 0%, transparent 70%);
  bottom: -100px; left: -200px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--accent-light);
  border: 1px solid rgba(108,92,231,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-hero svg { width: 20px; height: 20px; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: none;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-hero-outline:hover { border-color: var(--text-3); }
.btn-hero-outline svg { width: 20px; height: 20px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-3);
  position: relative;
  z-index: 2;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: white;
}
.hero-avatar:first-child { margin-left: 0; }

.hero-proof strong { color: var(--text); font-weight: 700; }

/* ═══ LOGOS ═══ */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 0 48px;
}

.logo-item {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-3);
  opacity: 0.5;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.logo-item:hover { opacity: 0.8; }

/* ═══ SECTION UTILS ═══ */
.section {
  padding: 120px 48px;
}

.section-sm { padding: 80px 48px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
}

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}
.step-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }

.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 60px; right: -22px;
  color: var(--border);
  font-size: 24px;
  z-index: 2;
}

/* ═══ FEATURES ═══ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text .feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-text h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.feature-text h3 em { font-style: italic; color: var(--accent); }

.feature-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.feature-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

.feature-visual {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Dashboard mockup */
.mock-dash {
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}
.mock-bar {
  height: 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.mock-body { padding: 16px; }
.mock-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.mock-stat {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
}
.mock-stat .val { font-family: var(--serif); font-size: 22px; color: var(--accent); }
.mock-stat .lbl { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.mock-lines { display: flex; flex-direction: column; gap: 6px; }
.mock-line { height: 10px; background: var(--bg); border-radius: 5px; }
.mock-line:nth-child(1) { width: 100%; }
.mock-line:nth-child(2) { width: 85%; }
.mock-line:nth-child(3) { width: 60%; }

/* Topic mockup */
.mock-topics { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-topic {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.mock-topic .mt-check {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border);
}
.mock-topic .mt-check.on { background: var(--accent); border-color: var(--accent); }
.mock-topic .mt-text { flex: 1; }
.mock-topic .mt-title { font-size: 13px; font-weight: 600; }
.mock-topic .mt-sub { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.mock-topic .mt-btn {
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* Links mockup */
.mock-link-pool { width: 100%; }
.mock-lp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-lp-header span { font-size: 13px; font-weight: 600; }
.mock-lp-badge {
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.mock-link-item {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  font-size: 12px;
}
.mock-link-item .ml-url { color: var(--accent); font-weight: 500; flex: 1; }
.mock-link-item .ml-star { color: #FF9800; font-size: 14px; }
.mock-link-item .ml-tag {
  padding: 2px 8px;
  background: #FFF3E0;
  color: #E65100;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

/* ═══ STATS BAND ═══ */
.stats-band {
  padding: 80px 48px;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 6px;
  color: white;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.price-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 16px 48px var(--accent-glow);
}

.price-card .popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--accent);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.price-card .plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.price-card .plan-price {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-card .plan-price .currency { font-size: 28px; vertical-align: top; color: var(--text-3); }
.price-card .plan-price .period { font-family: var(--font); font-size: 16px; color: var(--text-3); font-weight: 400; }

.price-card .plan-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.price-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}

.price-card.featured .check { background: var(--accent); color: white; }

.btn-price {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-price-outline {
  background: none;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-price-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-price-fill {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: white;
}
.btn-price-fill:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 6px 20px var(--accent-glow); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.05); }

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: white;
}

.ta-info .ta-name { font-size: 14px; font-weight: 600; }
.ta-info .ta-role { font-size: 12px; color: var(--text-3); }

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon { background: var(--accent-light); color: var(--accent); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══ FINAL CTA ═══ */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--accent-light) 100%);
  position: relative;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-title em { font-style: italic; color: var(--accent); }

.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-3);
}

.cta-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto 48px;
}

.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .f-logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700;
}

.footer-brand .f-logo span {
  font-family: var(--serif);
  font-size: 20px;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: white; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .section { padding: 80px 24px; }
  .section-sm { padding: 60px 24px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-visual { min-height: 280px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .stat-item .stat-num { font-size: 40px; }
  .cta-section, .stats-band, .logos-section { padding-left: 24px; padding-right: 24px; }
  .footer { padding: 48px 24px 24px; }
}
