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

:root {
  --blue: #6366f1;
  --blue-dark: #4f46e5;
  --blue-light: rgba(99,102,241,0.12);
  --orange: #f97316;
  --orange-dark: #ea6c04;
  --orange-light: rgba(249,115,22,0.12);
  --amber: #f59e0b;
  --text: #dde6f0;
  --text-muted: #7a8fa6;
  --border: rgba(255,255,255,0.08);
  --bg: #070d1a;
  --bg-card: #0d1729;
  --bg-light: #0a1428;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0;
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 100; padding: 14px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-weight: 800; font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; }
.nav-cta {
  background: var(--orange); color: #fff; padding: 9px 22px;
  border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-signin {
  color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.875rem;
  transition: color 0.2s; margin-right: 12px;
}
.nav-signin:hover { color: var(--blue); }

/* ── Buttons ── */
.btn { display: inline-block; text-decoration: none; border-radius: 12px; font-weight: 700; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--orange); color: #fff; padding: 16px 32px; font-size: 1.05rem; box-shadow: 0 4px 20px rgba(249,115,22,0.28); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.38); }
.btn-blue { background: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,0.25); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.35); }
.btn-secondary { background: var(--blue); color: #fff; padding: 14px 24px; font-size: 1rem; box-shadow: 0 4px 20px rgba(37,99,235,0.25); }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { display: block; text-align: center; width: 100%; }
.btn-ghost {
  display: block; text-align: center; margin-top: 18px;
  color: var(--text-muted); text-decoration: underline;
  font-size: 0.9rem; cursor: pointer; background: none;
  border: none; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* ── Page 1 Hero ── */
.hero {
  padding: 90px 0 72px;
  background: #050a18;
  position: relative;
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.15); color: #fb923c;
  border: 1px solid rgba(249,115,22,0.35); padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -0.03em; color: #f1f5f9;
  animation: fadeUp 0.7s ease both;
}
.highlight { color: var(--orange); }
.highlight-blue { color: #818cf8; }
.hero-sub {
  font-size: 1.15rem; color: rgba(241,245,249,0.72); max-width: 620px;
  margin: 0 auto 36px; line-height: 1.7;
  animation: fadeUp 0.8s ease both;
}
.hero-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  margin-bottom: 32px; animation: fadeUp 0.85s ease both;
}
.price-label { font-size: 0.9rem; color: rgba(241,245,249,0.55); font-weight: 500; }
.price { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; color: #f1f5f9; }
.price-was { font-size: 1.2rem; color: rgba(241,245,249,0.4); text-decoration: line-through; }
.hero-cta-group { animation: fadeUp 0.9s ease both; }

/* ── Stats Bar ── */
.stats-bar { background: #0d1117; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.stat-item { color: rgba(255,255,255,0.95); font-size: 0.95rem; font-weight: 500; }
.stat-num { font-weight: 800; font-size: 1.1rem; display: block; text-align: center; }

/* ── Section base ── */
section { padding: 80px 0; position: relative; }

/* Each section gets its own gradient direction + tint for visual flow */
.for-section {
  background: linear-gradient(145deg, #070d1c 0%, #0f1430 100%);
}
.for-section::before {
  content: ''; position: absolute; top: 0; right: 0; pointer-events: none;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
}

.section-alt {
  background: linear-gradient(215deg, #08101f 0%, #0d1528 100%);
}
.section-alt::before {
  content: ''; position: absolute; bottom: 0; left: 0; pointer-events: none;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
}

.section-blue-tint {
  background: linear-gradient(160deg, #080e20 0%, #111a32 100%);
}
.section-blue-tint::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.09) 0%, transparent 70%);
}
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; text-align: center; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 52px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Module Cards ── */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 52px; }
.module-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.module-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.25s;
}
.module-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.12);
}
.module-card:hover::after { opacity: 1; }
.module-num {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); opacity: 0.7;
  margin-bottom: 10px;
}
.module-icon { font-size: 1.6rem; margin-bottom: 12px; }
.module-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.module-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ── What You Get ── */
.what-you-get-section {
  background: linear-gradient(190deg, #060c1c 0%, #0c1426 100%);
  position: relative;
}
.what-you-get-section::before {
  content: ''; position: absolute; bottom: 0; right: 0; pointer-events: none;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
}

/* ── Get List ── */
.get-list { max-width: 580px; margin: 36px auto 0; }
.get-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 1.02rem; font-weight: 500;
}
.get-item:last-child { border-bottom: none; }
.get-icon { color: var(--blue); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ── Author ── */
.author-card {
  display: flex; gap: 40px; align-items: center;
  max-width: 820px; margin: 0 auto;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 48px 40px;
}
.author-avatar {
  width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; letter-spacing: -2px;
}
.author-info h2 { text-align: left; font-size: 1.8rem; margin-bottom: 12px; }
.author-info p { color: var(--text-muted); line-height: 1.75; font-size: 1rem; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 52px; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px; position: relative; overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.testimonial-card::before {
  content: '\201C'; font-size: 5rem; color: var(--orange); opacity: 0.12;
  position: absolute; top: 4px; left: 16px;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 6px; }
.testimonial-author { font-weight: 700; color: var(--text-muted); font-size: 0.9rem; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(160deg, #050a18 0%, #120828 45%, #050a18 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(109,40,217,0.18) 0%, transparent 70%);
}
.cta-section h2 { margin-bottom: 12px; color: #f1f5f9; }
.cta-section > .container > p { color: rgba(241,245,249,0.65); font-size: 1.05rem; }
.cta-box {
  max-width: 480px; margin: 44px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 40px 36px;
  text-align: left; backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(109,40,217,0.12);
  position: relative; z-index: 1;
}
.cta-box-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(241,245,249,0.5); font-weight: 700; margin-bottom: 16px; }
.cta-box ul { list-style: none; margin-bottom: 28px; }
.cta-box ul li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; font-weight: 500; color: rgba(241,245,249,0.88); }
.cta-box ul li::before { content: "✓  "; color: #fb923c; font-weight: 800; }
.cta-box ul li:last-child { border-bottom: none; }
.cta-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.cta-was { font-size: 1.3rem; color: rgba(241,245,249,0.35); text-decoration: line-through; }
.cta-now { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; color: #f1f5f9; }
.secure-note { text-align: center; color: rgba(241,245,249,0.42); font-size: 0.82rem; margin-top: 12px; }

/* ── Scroll Reveal Section ── */
.scroll-reveal-section {
  background: linear-gradient(180deg, #0d1117 0%, #0a1020 100%);
  padding: 72px 0 100px;
  overflow: hidden;
  position: relative;
}
.scroll-reveal-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none; width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 70%);
}
.scroll-reveal-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.scroll-card-outer {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  perspective: 1400px;
}
.scroll-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1400px) rotateX(18deg) scale(0.9);
  transform-origin: top center;
  will-change: transform;
  transition: transform 0.05s linear;
}
.scroll-card img { width: 100%; display: block; border-radius: 20px; }

/* ── Page 2 ── */
.attention-bar { background: var(--orange); color: #fff; text-align: center; padding: 12px 24px; font-weight: 700; font-size: 0.95rem; }
.hero2 { padding: 64px 0; text-align: center; background: linear-gradient(175deg, #f0f7ff 0%, #ffffff 100%); }
.tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  border: 1px solid #bfdbfe; padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero2 h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.offer-card {
  max-width: 560px; margin: 44px auto 0; background: #fff;
  border: 1px solid var(--border); border-radius: 24px;
  padding: 36px; text-align: left; box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.offer-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 16px; }
.offer-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.offer-desc { color: var(--text-muted); font-size: 0.9rem; }
.offer-price-wrap { text-align: right; flex-shrink: 0; }
.offer-price { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em; display: block; }
.offer-was { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.offer-includes h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 700; margin-bottom: 14px; }
.offer-includes ul { list-style: none; margin-bottom: 28px; }
.offer-includes ul li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; font-weight: 500; }
.offer-includes ul li:last-child { border-bottom: none; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* ── Page 3 ── */
.progress-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 14px 0; text-align: center; }
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; font-weight: 600; }
.step { color: var(--text-muted); }
.step.done { color: var(--blue); transition: opacity 0.15s; cursor: pointer; }
.step.done:hover { opacity: 0.7; }
.step.active { color: var(--orange); font-weight: 700; }
.step-sep { color: var(--border); font-size: 0.8rem; }
.choice-section { padding: 80px 0; text-align: center; }
.choice-section h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.choice-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: start; margin-top: 56px; max-width: 900px; margin-left: auto; margin-right: auto; }
.choice-card { border-radius: 24px; padding: 40px 36px; text-align: left; }
.choice-free { background: var(--blue-light); border: 2px solid #bfdbfe; }
.choice-paid { background: var(--orange-light); border: 2px solid #fed7aa; }
.choice-badge {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.choice-free .choice-badge { background: var(--blue); color: #fff; }
.choice-paid .choice-badge { background: var(--orange); color: #fff; }
.choice-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.choice-price { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.choice-free .choice-price { color: var(--blue); }
.choice-paid .choice-price { color: var(--orange); }
.choice-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 24px; }
.choice-list { list-style: none; margin-bottom: 28px; }
.choice-list li { padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.95rem; font-weight: 500; }
.choice-list li:last-child { border-bottom: none; }
.choice-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 24px; gap: 12px; min-width: 60px; }
.divider-line { flex: 1; width: 1px; background: var(--border); }
.divider-or { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); background: #fff; padding: 8px 4px; border-radius: 100px; }
.free-form { display: flex; flex-direction: column; gap: 12px; }
.free-form input {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text);
  transition: border-color 0.2s;
}
.free-form input:focus { outline: none; border-color: var(--blue); }
.success-message { text-align: center; padding: 20px 0; }
.success-message h3 { font-size: 1.3rem; margin: 12px 0 8px; font-weight: 800; }
.success-message p { color: var(--text-muted); }

/* ── Footer ── */
.footer { background: #040811; border-top: 1px solid rgba(255,255,255,0.06); color: #fff; padding: 36px 0; }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer p { color: #4a5568; font-size: 0.875rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #4a5568; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── What You Get — laptop mockup ── */
.wyg-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.wyg-eyebrow { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.wyg-left .get-list { max-width: 100%; margin-top: 0; }
.wyg-left .get-item { font-size: 0.95rem; padding: 12px 0; }

.browser-tilt { perspective: 1400px; }
.browser-frame {
  background: #111827;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(99,102,241,0.12);
  transform: perspective(1400px) rotateY(-10deg) rotateX(4deg) scale(0.97);
  transform-origin: center center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.browser-tilt:hover .browser-frame {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) scale(1);
  box-shadow: 0 50px 120px rgba(0,0,0,0.6), 0 0 80px rgba(99,102,241,0.18);
}
.browser-bar {
  background: #1f2937; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 6px; padding: 5px 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  font-family: 'Inter', monospace; text-align: center;
}
.browser-viewport { height: 420px; overflow: hidden; position: relative; }
.browser-viewport iframe {
  width: 155%; height: 155%;
  transform: scale(0.645); transform-origin: top left;
  border: none; pointer-events: auto;
}

/* ── Animations ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(16px); }  to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Hero split ── */
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; text-align: left; }
.hero-inner .hero-price { justify-content: flex-start; }
.hero-inner .hero-cta-group { text-align: left; }
.hero-image { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.12); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── Secondary (free option) link ── */
.secondary-action { margin-top: 18px; }
.secondary-link {
  color: rgba(241,245,249,0.38); font-size: 0.82rem; text-decoration: none; font-weight: 400;
  border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.secondary-link:hover { color: rgba(241,245,249,0.65); border-bottom-color: rgba(241,245,249,0.3); }
/* light page secondary link (page2, page3) */
.section-alt .secondary-link, footer ~ * .secondary-link,
a.secondary-link[href="page3.html"] { color: #94a3b8; }
a.secondary-link[href="page3.html"]:hover { color: var(--text-muted); border-bottom-color: var(--text-muted); }

/* ── Results/achievements ── */
.results-section {
  background: linear-gradient(135deg, #09122a 0%, #160a2e 50%, #09122a 100%);
  color: #fff; padding: 80px 0; position: relative;
}
.results-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99,102,241,0.1) 0%, transparent 70%);
}
.results-section h2 { color: #fff; }
.results-section .section-sub { color: #94a3b8; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 52px; }
.result-card {
  background: rgba(255,255,255,0.05); padding: 44px 32px; text-align: center;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 20px;
  transition: background 0.2s, transform 0.2s;
}
.result-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.result-num { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; display: block; margin-bottom: 8px; }
.result-num.blue { color: #60a5fa; }
.result-num.orange { color: #fb923c; }
.result-num.green { color: #4ade80; }
.result-num.yellow { color: #facc15; }
.result-label { font-size: 0.95rem; color: #94a3b8; line-height: 1.5; }

/* ── Who is this for ── */
.for-section { padding: 80px 0; }
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.for-card { border-radius: 18px; padding: 32px 28px; }
.for-card.yes { background: rgba(22,163,74,0.08); border: 1.5px solid rgba(134,239,172,0.2); }
.for-card.no  { background: rgba(220,38,38,0.08); border: 1.5px solid rgba(252,165,165,0.2); }
.for-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.for-card.yes h3 { color: #4ade80; }
.for-card.no  h3 { color: #f87171; }
.for-list { list-style: none; }
.for-list li { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.for-list li:last-child { border-bottom: none; }

/* ── Testimonials with photos ── */
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(175deg, #07101e 0%, #0e1630 100%);
  position: relative;
}
.faq-section::before {
  content: ''; position: absolute; top: 0; right: 10%; pointer-events: none;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,0.03); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px; font-size: 1rem; font-weight: 600;
  background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; color: var(--text); transition: background 0.15s;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-icon { font-size: 1.2rem; color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.75; font-size: 0.97rem; }

/* ── Back link on page 2 ── */
.nav-back {
  display: flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid #bfdbfe; transition: background 0.2s;
}
.nav-back:hover { background: var(--blue-light); }

/* ── Mini testimonials (page 2) ── */
.mini-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.mini-tc { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.mini-tc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mini-tc-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.mini-tc-name { font-weight: 700; font-size: 0.9rem; }
.mini-tc-role { font-size: 0.78rem; color: var(--text-muted); }
.mini-tc p { font-size: 0.9rem; font-style: italic; color: var(--text-muted); line-height: 1.65; }
.mini-tc-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 4px; }

/* ── Responsive — Tablet ── */
@media (max-width: 960px) {
  .wyg-grid { grid-template-columns: 1fr; gap: 48px; }
  .wyg-right { max-width: 600px; margin: 0 auto; width: 100%; }
  .browser-frame { transform: none !important; }
  .modules-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ── Responsive — Mobile ── */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 56px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-inner .hero-price { justify-content: center; }
  .hero-inner .hero-cta-group { text-align: center; }
  .hero-image { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }

  /* Sections */
  section { padding: 56px 0; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-sub { font-size: 0.95rem; margin-bottom: 36px; }

  /* Stats */
  .stats-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stat-item { text-align: center; min-width: 120px; }

  /* For grid */
  .for-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Modules */
  .modules-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .result-card { padding: 28px 16px; }
  .result-num { font-size: 2.2rem; }

  /* What You Get */
  .wyg-grid { grid-template-columns: 1fr; gap: 36px; }
  .wyg-right { display: none; }
  .wyg-left h2 { text-align: center !important; }
  .wyg-eyebrow { text-align: center; }
  .wyg-left > p { text-align: center; }
  .wyg-left a { display: block !important; text-align: center; }

  /* Author */
  .author-card { flex-direction: column; padding: 32px 24px; text-align: center; gap: 24px; }
  .author-info h2 { text-align: center; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .mini-testimonials { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: 0.92rem; padding: 16px 18px; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 0.9rem; }

  /* CTA */
  .cta-box { padding: 28px 20px; }
  .cta-now { font-size: 2.4rem; }

  /* Page 2/3 */
  .choice-grid { grid-template-columns: 1fr; }
  .choice-divider { flex-direction: row; padding: 16px 0; min-width: auto; width: 100%; }
  .divider-line { flex: 1; height: 1px; width: auto; }
  .offer-header { flex-direction: column; }
  .offer-price-wrap { text-align: left; }
  .hero2 h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

/* ── Responsive — Small Mobile ── */
@media (max-width: 420px) {
  .results-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero-title { font-size: 2rem; }
  .stats-inner { gap: 14px; }
  .stat-item { min-width: 100px; font-size: 0.85rem; }
}
