*, *::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;
  --brand-purple: #a78bfa;
  --text: #dde6f0;
  --text-dark: #1e293b;
  --text-muted: #7a8fa6;
  --border: rgba(255,255,255,0.08);
  --bg: #070d1a;
  --bg-card: #0d1729;
  --bg-light: #0a1428;
}

html { overflow-x: clip; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: clip; }
.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 { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; margin-left: 16px; }
.nav-brand-logo { width: 32px; height: 32px; border-radius: 50%; display: block; }

/* Owl logo wrappers — transparent PNG, no filter needed */
.nav-logo-wrap {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-logo-wrap img {
  height: 36px; width: auto; display: block;
}

.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.hero-logo-wrap img {
  width: 75%; max-width: 360px; display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.about-logo-wrap {
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-logo-wrap img {
  width: 120px; height: auto; display: block;
}

.brand-rise { color: var(--brand-purple); }
.brand-know { color: #f97316; }
.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 42px;
  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: 540px;
  margin: 0 0 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 {
  margin-top: 40px;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.stats-inner {
  display: flex; align-items: center; gap: 0;
  max-width: 1080px; margin: 0 auto;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.stat-item {
  position: relative;
  color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em;
  flex: 1; text-align: center; padding: 4px 10px; white-space: nowrap;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 40px; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}
.stat-num {
  font-weight: 800; font-size: clamp(1.4rem, 1.9vw, 1.7rem); display: block;
  text-align: center; color: #f97316; margin-bottom: 4px;
  letter-spacing: -0.02em; line-height: 1;
}

/* ── 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; }
/* Light-background sections/cards use the global light --text by default,
   which is invisible on white — override to a dark color here. */
.hero2, .offer-card, .why-card, .mini-tc, .auth-card { color: var(--text-dark); }
.hero2 .hero-sub { color: var(--text-muted); }

.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; }

/* ── Auth pages (register/login) ── */
.auth-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 48px 40px; width: 100%; max-width: 460px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.auth-title { font-size: 1.7rem; font-weight: 900; text-align: center; margin-bottom: 6px; letter-spacing: -0.02em; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.6; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--text-dark); transition: border-color 0.2s; background: #fff; box-sizing: border-box;
}
.form-group input:focus { outline: none; border-color: var(--blue); }
.form-group input.err { border-color: #ef4444; }
.field-err { color: #ef4444; font-size: 0.78rem; margin-top: 4px; display: none; }
.pw-wrap { position: relative; }
.pw-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.8rem; font-family: 'Inter', sans-serif; padding: 4px; }
.forgot { display: block; text-align: right; font-size: 0.8rem; color: var(--blue); text-decoration: none; margin-top: 5px; }
.forgot:hover { text-decoration: underline; }
.plan-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--orange-light); border: 1px solid #fed7aa;
  border-radius: 10px; padding: 11px 14px; margin-bottom: 22px; font-size: 0.88rem;
}
.plan-badge strong { color: var(--orange-dark); }
.alert { padding: 11px 14px; border-radius: 10px; font-size: 0.88rem; font-weight: 500; margin-bottom: 18px; display: none; }
.alert.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.alert.success { background: #f0fdf4; border: 1px solid #86efac; color: #16a34a; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover:not(:disabled) { background: var(--orange-dark); transform: translateY(-1px); }
.btn-submit.btn-blue { background: var(--blue); }
.btn-submit.btn-blue:hover:not(:disabled) { background: var(--blue-dark); }
.btn-submit:disabled { background: #cbd5e1; cursor: not-allowed; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.auth-switch { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 18px; }
.auth-switch a { color: var(--blue); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }
.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.divider hr { flex: 1; border: none; border-top: 1px solid var(--border); }
.divider span { color: var(--text-muted); font-size: 0.8rem; }

/* ── Choice section (used on webinar page) ── */
.choice-section { padding: 80px 0; text-align: center; }
.choice-section h1, .choice-section h2 { 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; }
/* ── 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: 1.1fr 0.9fr; gap: 48px; 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; }
.hero-image.brand-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: transparent !important; box-shadow: none !important;
  overflow: visible !important; border-radius: 0 !important;
  margin-top: -110px;
}

/* ── Secondary (free option) link ── */
.secondary-action { margin-top: 16px; }
.secondary-link {
  color: rgba(241,245,249,0.52); 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) */
.section-alt .secondary-link, footer ~ * .secondary-link { color: #94a3b8; }

/* ── 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; }

/* ── Webinar announcement bar ── */
.wb-topbar {
  background: var(--orange); color: #fff; text-align: center;
  font-weight: 700; font-size: 0.85rem; padding: 10px 16px;
  letter-spacing: 0.02em;
}

/* ── Webinar popup ── */
.wb-overlay {
  position: fixed; inset: 0; background: rgba(5,10,24,0.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.wb-overlay.active { opacity: 1; visibility: visible; }
.wb-modal {
  background: #fff; color: #1e293b; border-radius: 20px;
  max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(0.97); transition: transform 0.35s ease;
}
.wb-overlay.active .wb-modal { transform: translateY(0) scale(1); }
.wb-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: none; background: rgba(0,0,0,0.06);
  font-size: 1.3rem; line-height: 1; color: #475569; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.wb-close:hover { background: rgba(0,0,0,0.12); }
.wb-graphic {
  background: linear-gradient(135deg, #0a1428 0%, #1e293b 100%);
  padding: 28px 24px 20px; border-radius: 20px 20px 0 0;
}
.wb-graphic-badge {
  text-align: center; color: #fff; font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.08em; margin-bottom: 18px; text-transform: uppercase;
}
.wb-graphic-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.wb-graphic-col {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 8px; text-align: center;
}
.wb-graphic-icon { font-size: 1.6rem; margin-bottom: 6px; }
.wb-graphic-label {
  font-size: 0.66rem; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.wb-graphic-title { font-size: 0.76rem; font-weight: 700; color: #fff; line-height: 1.3; }
.wb-graphic-footer {
  margin-top: 18px; background: #fff; color: #0a1428; text-align: center;
  font-weight: 800; font-size: 0.82rem; padding: 10px; border-radius: 10px;
  letter-spacing: 0.04em;
}
.wb-body { padding: 28px 28px 32px; text-align: center; }
.wb-body h2 { font-size: 1.35rem; font-weight: 900; line-height: 1.3; margin-bottom: 12px; color: #1e293b; }
.wb-body h2 .highlight { color: var(--orange); }
.wb-body p { font-size: 0.92rem; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.wb-body input {
  width: 100%; padding: 14px 16px; border: 1.5px solid #e2e8f0;
  border-radius: 12px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  margin-bottom: 6px; box-sizing: border-box; color: #1e293b;
}
.wb-body input:focus { outline: none; border-color: var(--blue); }
.wb-body input.err { border-color: #ef4444; }
.wb-err { color: #ef4444; font-size: 0.8rem; text-align: left; margin-bottom: 10px; display: none; }
.wb-body .btn { width: 100%; margin-top: 8px; }

/* ── Webinar page ── */
.webinar-video-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 18px;
  overflow: hidden; background: #000; box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  margin: 0 auto;
}
.webinar-video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Custom end-screen overlay — hides Vimeo's related-video recommendations */
.video-end-cta {
  position: absolute; inset: 0; z-index: 5; display: none;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(13,24,48,0.96), rgba(7,13,26,0.99));
  backdrop-filter: blur(4px);
}
.video-end-cta.show { display: flex; animation: vecFade 0.4s ease; }
@keyframes vecFade { from { opacity: 0; } to { opacity: 1; } }
.video-end-cta .vec-inner { max-width: 460px; }
.video-end-cta .vec-eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #fb923c; margin-bottom: 12px; }
.video-end-cta h3 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.video-end-cta p { color: rgba(241,245,249,0.7); font-size: 0.95rem; line-height: 1.6; margin-bottom: 22px; }
.video-end-cta .vec-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.video-end-cta .vec-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; border-radius: 12px; font-size: 1rem; font-weight: 800;
  text-decoration: none; letter-spacing: -0.01em; transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.video-end-cta .vec-btn:hover { transform: translateY(-2px); }
.video-end-cta .vec-btn-primary {
  background: linear-gradient(135deg, #fb923c, #f97316); color: #fff;
  box-shadow: 0 12px 30px rgba(249,115,22,0.4);
}
.video-end-cta .vec-btn-primary:hover { box-shadow: 0 16px 38px rgba(249,115,22,0.55); }
.video-end-cta .vec-btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px);
}
.video-end-cta .vec-btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.video-end-cta .vec-replay { margin-top: 18px; background: none; border: none; color: rgba(241,245,249,0.55); font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: color 0.15s; }
.video-end-cta .vec-replay:hover { color: #fff; }
@media (max-width: 480px) {
  .video-end-cta .vec-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .wb-graphic-title { font-size: 0.68rem; }
  .wb-graphic-icon { font-size: 1.3rem; }
}

/* ── Stacking Cards Scroll Effect ── */
section:not(.hero) {
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.6);
}

/* ── 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) {
  /* Shorter mobile page — hide secondary sections, keep the essentials
     (hero, stats, what's inside, results, FAQ, pricing/CTA). */
  .mobile-hide { display: none !important; }

  /* Nav */
  .nav { padding: 10px 0; }
  .nav-brand { margin-left: 0; font-size: 1rem; gap: 6px; }
  .nav-logo-wrap img { height: 30px; }
  .nav-cta { padding: 8px 15px; font-size: 0.8rem; }
  .nav-signin { margin-right: 10px; font-size: 0.8rem; }

  /* 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, .hero-image.brand-placeholder { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .btn-large { padding: 16px 22px; font-size: 0.98rem; }
  .hero-cta-group .btn-primary { display: inline-block; }

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

  /* Stats */
  .stats-bar { margin-top: 32px; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 12px; padding: 26px 18px; }
  .stat-item { padding: 0; white-space: normal; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-num { font-size: 1.6rem; }

  /* 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: 22px 10px; }
  .stat-item { font-size: 0.78rem; }
  .stat-num { font-size: 1.5rem; }

  /* Nav — tighten so brand + CTA never crowd */
  .nav-brand { font-size: 0.92rem; }
  .nav-logo-wrap img { height: 27px; }
  .nav-signin { display: none; }
  .nav-cta { padding: 8px 14px; }
}
