/* ============================================================
   Divi Speed — Landing Page Stylesheet
   ============================================================ */

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

:root {
  --purple:     #7f54b3;
  --purple-d:   #5c3a8a;
  --purple-l:   #a87dd9;
  --green:      #22c55e;
  --green-d:    #16a34a;
  --red:        #ef4444;
  --orange:     #f97316;
  --yellow:     #eab308;
  --dark:       #0f0c1a;
  --dark-2:     #1a1430;
  --dark-3:     #241d3a;
  --mid:        #2e2650;
  --border:     rgba(255,255,255,.1);
  --text:       #1d2327;
  --muted:      #6b7280;
  --bg:         #f9fafb;
  --white:      #ffffff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(127,84,179,.1);
  border: 1px solid rgba(127,84,179,.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-l) 0%, var(--purple) 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-d) 100%);
  color: var(--white);
  font-size: 17px;
  padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(127,84,179,.4);
}
.btn-hero:hover { box-shadow: 0 12px 40px rgba(127,84,179,.55); }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(127,84,179,.3);
}
.btn-primary:hover { background: var(--purple-d); box-shadow: 0 8px 24px rgba(127,84,179,.45); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }

.btn-nav {
  background: var(--purple);
  color: var(--white);
  padding: 9px 20px;
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(127,84,179,.3);
}
.btn-nav:hover { background: var(--purple-d); transform: translateY(-1px); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,12,26,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: rgba(15,12,26,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo strong { color: var(--purple-l); }
.logo-bolt { font-style: normal; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
}
.nav-drawer a {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-drawer .btn-nav { margin-top: 12px; align-self: flex-start; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  background: rgba(127,84,179,.25);
  top: -200px; left: -100px;
}
.hero-glow--2 {
  width: 400px; height: 400px;
  background: rgba(192,132,252,.15);
  bottom: -100px; right: -50px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.hero-checks li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Score cards */
.hero-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.score-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  flex: 1;
  min-width: 140px;
}
.score-card--after { background: rgba(34,197,94,.07); border-color: rgba(34,197,94,.25); }

.score-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.score-badge--bad  { background: rgba(239,68,68,.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,.3); }
.score-badge--good { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.3); }

.score-ring {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 16px;
}
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 8; }
.ring-fill  { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.4s ease; }
.ring-fill--bad  { stroke: var(--red); }
.ring-fill--good { stroke: var(--green); }

.ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
}

.score-vitals { display: flex; flex-direction: column; gap: 6px; }
.vital {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
}
.vital dt { color: rgba(255,255,255,.5); font-weight: 500; }
.vital dd  { font-weight: 700; }
.vital--bad  dd { color: #fca5a5; }
.vital--good dd { color: #86efac; }

.score-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.score-arrow svg { width: 40px; }
.score-arrow span { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }

/* ── Stats bar ─────────────────────────────────────────────── */
.statsbar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.statsbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  gap: 4px;
}
.sstat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--purple-l);
  line-height: 1;
}
.sstat span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sstat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Problem ──────────────────────────────────────────────── */
.problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pcard-icon { font-size: 32px; margin-bottom: 14px; }
.problem-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.problem-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Features ─────────────────────────────────────────────── */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.fcard {
  background: var(--bg);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(127,84,179,.3);
}
.fcard--star {
  background: linear-gradient(135deg, rgba(127,84,179,.06) 0%, rgba(192,132,252,.06) 100%);
  border-color: rgba(127,84,179,.3);
}

.fcard-icon  { font-size: 30px; margin-bottom: 12px; }
.fcard h3    { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.fcard p     { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }

.fcard-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  background: rgba(107,114,128,.12);
  color: var(--muted);
}
.fcard-tag--impact { background: rgba(239,68,68,.1);  color: #dc2626; }
.fcard-tag--divi   { background: rgba(127,84,179,.12); color: var(--purple); }
.fcard-tag--star   { background: linear-gradient(135deg, var(--purple), var(--purple-l)); color: var(--white); }

/* ── How It Works ─────────────────────────────────────────── */
.hiw { background: var(--dark); }
.hiw .section-header .section-label { color: var(--purple-l); background: rgba(127,84,179,.15); border-color: rgba(127,84,179,.25); }
.hiw .section-header h2 { color: var(--white); }
.hiw .section-header p  { color: rgba(255,255,255,.6); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 20px;
}

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(127,84,179,.4);
  flex-shrink: 0;
}

.step-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-body p  { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

.step-line {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(127,84,179,.4), rgba(192,132,252,.4));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ── Performance metrics ──────────────────────────────────── */
.perf { background: var(--bg); }

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

.mcard {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.mcard h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 20px; }

.mbar-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.mbar-row   { display: flex; align-items: center; gap: 12px; }

.mbar-label {
  font-size: 12px;
  font-weight: 600;
  width: 44px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mbar-label--bad  { color: var(--red); }
.mbar-label--good { color: var(--green-d); }

.mbar-track {
  flex: 1;
  height: 10px;
  background: #f3f4f6;
  border-radius: 5px;
  overflow: hidden;
}
.mbar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 1.2s ease;
}
.mbar-fill--bad  { background: linear-gradient(90deg, var(--orange), var(--red)); }
.mbar-fill--good { background: linear-gradient(90deg, var(--green-d), var(--green)); }

.mbar-val {
  font-size: 13px;
  font-weight: 700;
  width: 70px;
  text-align: right;
  flex-shrink: 0;
}
.mbar-val--bad  { color: var(--red); }
.mbar-val--good { color: var(--green-d); }

.mcard-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

.perf-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
  font-style: italic;
}

/* ── Divi Exclusive ───────────────────────────────────────── */
.exclusive { background: var(--dark-2); }

.exclusive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.excl-copy .section-label { color: var(--purple-l); background: rgba(127,84,179,.15); border-color: rgba(127,84,179,.25); }
.excl-copy h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.excl-copy > p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 28px; }

.excl-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.excl-list li { display: flex; gap: 14px; align-items: flex-start; }
.excl-check { color: var(--purple-l); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.excl-list li div { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }
.excl-list li strong { color: var(--white); }

/* Terminal */
.terminal {
  background: #0d0d14;
  border: 1px solid rgba(127,84,179,.3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.t-dot--red    { background: #ff5f57; }
.t-dot--yellow { background: #febc2e; }
.t-dot--green  { background: #28c840; }
.t-title { font-size: 12px; color: rgba(255,255,255,.4); margin-left: 8px; font-family: monospace; }

.terminal-lines {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terminal-lines li {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.terminal-lines li.t-visible {
  opacity: 1;
  transform: translateX(0);
}
.t-check { color: var(--green); font-size: 14px; flex-shrink: 0; }
.t-done  { color: var(--white) !important; font-weight: 700; }
.t-rocket { font-size: 16px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--white); }

.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:first-child { border-top: 1px solid #e5e7eb; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--purple); }
.faq-q[aria-expanded="true"] { color: var(--purple); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--purple);
}

.faq-a { padding: 0 0 20px; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── CTA section ──────────────────────────────────────────── */
.cta-section { background: var(--dark); }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(127,84,179,.2) 0%, rgba(192,132,252,.1) 100%);
  border: 1px solid rgba(127,84,179,.3);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: rgba(127,84,179,.2);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-l);
  margin-bottom: 16px;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  margin-top: 24px;
}
.cta-checks li {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-brand { flex: 1; max-width: 300px; }
.footer-logo  { margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.footer-nav { display: flex; gap: 64px; }
.fnav-col { display: flex; flex-direction: column; gap: 10px; }
.fnav-col strong { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fnav-col a { font-size: 14px; color: rgba(255,255,255,.45); transition: color var(--transition); }
.fnav-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer { font-size: 12px !important; color: rgba(255,255,255,.25) !important; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-scores { order: -1; }

  .exclusive-inner { grid-template-columns: 1fr; gap: 40px; }

  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step  { flex-direction: row; text-align: left; gap: 24px; width: 100%; padding: 24px 0; }
  .step-line { width: 2px; height: 32px; margin: 0 0 0 27px; background: linear-gradient(180deg, rgba(127,84,179,.4), rgba(192,132,252,.4)); }

  .metrics-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .nav-links, .nav-header .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer.open { display: flex; }

  .hero { padding: 120px 0 64px; }
  .hero-scores { flex-direction: column; gap: 12px; }
  .score-arrow { flex-direction: row; }
  .score-arrow svg { width: 28px; transform: none; }
  .score-card { width: 100%; }

  .statsbar-inner { gap: 0; }
  .sstat { padding: 10px 20px; }
  .sstat-div { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .problem-grid  { grid-template-columns: 1fr; }

  .cta-box { padding: 40px 24px; }

  .footer-nav { flex-direction: column; gap: 28px; }
  .footer-inner { padding-top: 40px; padding-bottom: 28px; }
}
