/* Course Sales Page - ₹17,999 */
/* Theme: Dark + Blue (#0052B7) */

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

:root {
  --primary: #0052B7;
  --primary-dim: #3378D4;
  --primary-dark: #003D8A;
  --secondary: #3378D4;
  --green: #0052B7;
  --green-dark: #003D8A;
  --green-light: rgba(0,82,183,0.1);
  --red: #EF4444;
  --yellow: #F59E0B;
  --text: #f3f4f6;
  --text-light: #d1d5dc;
  --text-muted: #99a1af;
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #1a1a1a;
  --border: rgba(255,255,255,0.06);
  --shadow: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 30px rgba(0,82,183,0.2);
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

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

/* Spotlight + Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,82,183,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,82,183,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,0,0,0.7) 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,0,0,0.7) 0%, transparent 100%);
}

body::after {
  content: '';
  position: fixed;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100%;
  background:
    conic-gradient(from 180deg at 50% 0%,
      transparent 30%,
      rgba(0,82,183,0.06) 40%,
      rgba(0,82,183,0.12) 47%,
      rgba(51,120,212,0.15) 50%,
      rgba(0,82,183,0.12) 53%,
      rgba(0,82,183,0.06) 60%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 70%);
}

.bg-glow {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,82,183,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.bg-glow::after {
  content: '';
  position: absolute;
  top: 30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,82,183,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  word-spacing: 4px;
  letter-spacing: 0.5px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Header */
.header {
  background: transparent; padding: 16px 0;
}
.header-inner { display: flex; justify-content: flex-start; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 120px; height: auto; border-radius: 12px; }
.logo-text { font-family: 'Clash Display', 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; }

/* Announcement Bar */
.announcement {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary); color: #fff;
  text-align: center; padding: 12px 24px;
  font-size: 0.9rem; font-weight: 600;
  margin: 0;
}

/* Hero */
.hero {
  padding: 60px 0 60px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.75) 40%, rgba(10, 10, 10, 0.9) 80%, rgba(10, 10, 10, 1) 100%),
    url('image.png') center top / cover no-repeat;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-pre {
  display: inline-block; color: var(--primary);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 16px;
  text-shadow: 0 0 15px rgba(0,82,183,0.4);
  font-family: 'Clash Display', 'Montserrat', sans-serif;
}
.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.15; max-width: 800px; margin: 0 auto 16px; color: #fff; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 24px; line-height: 1.7; }

.trust-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

.video-placeholder {
  max-width: 800px; margin: 0 auto 40px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 120px 20px;
  text-align: center; color: #fff; position: relative; cursor: pointer;
  aspect-ratio: 16 / 9; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.video-placeholder .play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 2rem;
  box-shadow: 0 0 30px rgba(0,82,183,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0,82,183,0.7);
}
.video-placeholder p { font-size: 1rem; color: var(--text-muted); }

.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-primary {
  display: inline-block; padding: 18px 40px;
  background: var(--primary); color: #fff;
  font-size: 1.1rem; font-weight: 700; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,82,183,0.3);
  font-family: 'Clash Display', 'Montserrat', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,82,183,0.5); background: var(--primary-dim); }
.btn-secondary {
  display: inline-block; padding: 16px 32px;
  background: transparent; color: var(--primary);
  font-size: 1rem; font-weight: 600;
  border: 2px solid var(--primary); border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s;
  font-family: 'Clash Display', 'Montserrat', sans-serif;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

.guarantee-badge { font-size: 0.88rem; color: var(--text-muted); }

/* Ticker */
.ticker-wrap {
  background: linear-gradient(90deg, var(--bg-alt) 0%, rgba(0,82,183,0.06) 50%, var(--bg-alt) 100%);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(0,82,183,0.15);
  border-bottom: 1px solid rgba(0,82,183,0.15);
  position: relative;
  z-index: 1;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}
.ticker { display: flex; gap: 16px; animation: scroll 25s linear infinite; white-space: nowrap; }
.ticker span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  background: rgba(0,82,183,0.08);
  border: 1px solid rgba(0,82,183,0.15);
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
.section { padding: 80px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-card); color: #fff; }
.section-gradient { background: var(--bg-alt); color: #fff; border-top: 1px solid rgba(0,82,183,0.15); }
.section-title { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.section-dark .section-title, .section-gradient .section-title { color: #fff; }
.section-sub { text-align: center; font-size: 1rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 48px; }
.section-dark .section-sub { color: var(--text-muted); }
.section-gradient .section-sub { color: var(--text-muted); }

/* Problem */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto 32px; }
.problem-card {
  background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: all 0.3s ease; cursor: default;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,82,183,0.5);
  box-shadow: 0 10px 30px rgba(0,82,183,0.15);
  background: rgba(0,82,183,0.06);
}
.problem-card .p-icon { font-size: 1.5rem; margin-bottom: 8px; }
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.problem-card p { font-size: 0.85rem; color: var(--text-muted); }
.better-way {
  text-align: center; font-size: 1.3rem; font-weight: 700;
  color: var(--primary); margin-top: 24px;
  text-shadow: 0 0 15px rgba(0,82,183,0.4);
}

/* Solution */
.solution-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto 32px; }
.sol-step { text-align: center; transition: all 0.3s ease; cursor: default; }
.sol-step:hover { transform: translateY(-6px); filter: drop-shadow(0 8px 20px rgba(0,82,183,0.2)); }
.sol-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,82,183,0.08); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.sol-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.sol-step p { font-size: 0.88rem; color: var(--text-muted); }
.sol-result {
  text-align: center; font-size: 1.1rem; font-weight: 700;
  color: var(--primary-dim); background: rgba(0,82,183,0.08);
  border: 1px solid rgba(0,82,183,0.2);
  border-radius: var(--radius); padding: 16px; max-width: 600px; margin: 0 auto;
}

/* Curriculum */
.curriculum-list { max-width: 750px; margin: 0 auto 32px; }
.module-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden; background: var(--bg-alt);
}
.module-header {
  width: 100%; background: none; border: none;
  padding: 16px 20px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-family: inherit;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  text-align: left; transition: background 0.2s;
}
.module-header:hover { background: var(--bg-card); }
.module-header .m-left { display: flex; align-items: center; gap: 12px; }
.module-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.module-meta { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.module-badge {
  display: inline-block; background: rgba(0,82,183,0.1);
  color: var(--primary-dim); font-size: 0.65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 12px; margin-left: 8px;
}
.module-icon { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.module-item.active .module-icon { transform: rotate(45deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.module-item.active .module-body { max-height: 300px; }
.module-body ul { padding: 0 20px 16px 64px; }
.module-body ul li { font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; }
.module-body ul li::before { content: "•"; margin-right: 8px; color: var(--primary); }
.curriculum-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.cs-item { text-align: center; }
.cs-num { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.cs-label { font-size: 0.75rem; color: var(--text-muted); }

/* Value Stack */
.value-list { max-width: 700px; margin: 0 auto 32px; }
.value-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.value-item:hover {
  background: rgba(0,82,183,0.05);
  padding-left: 28px;
}
.value-item:last-child { border-bottom: none; }
.vi-left { display: flex; align-items: center; gap: 12px; }
.vi-icon { font-size: 1.3rem; }
.vi-title { font-weight: 600; font-size: 0.92rem; color: #fff; }
.vi-desc { font-size: 0.8rem; color: var(--text-muted); }
.vi-value { font-size: 0.88rem; color: var(--text-muted); text-decoration: line-through; white-space: nowrap; }
.value-total {
  text-align: center; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px;
}
.vt-original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.vt-price { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 8px 0; text-shadow: 0 0 20px rgba(0,82,183,0.4); }
.vt-badge { display: inline-block; background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }

/* Bonuses */
.bonuses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 24px; }
.bonus-card {
  display: flex; gap: 16px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  transition: all 0.3s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,82,183,0.5);
  box-shadow: 0 8px 25px rgba(0,82,183,0.15);
}
.bonus-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.bonus-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: #fff; }
.bonus-val { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; }
.bonus-info p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.bonus-total { text-align: center; font-size: 1rem; font-weight: 700; color: var(--primary); margin-top: 16px; }

.countdown { display: flex; justify-content: center; gap: 14px; margin: 16px 0; }
.cd-unit { text-align: center; }
.cd-num {
  display: inline-block; background: var(--bg-card); color: #fff;
  font-size: 1.4rem; font-weight: 800; padding: 8px 14px;
  border-radius: var(--radius); min-width: 52px;
  border: 1px solid var(--border);
}
.cd-label { font-size: 0.65rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 4px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 32px; }
.price-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: all 0.3s; position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,82,183,0.5);
  box-shadow: 0 10px 30px rgba(0,82,183,0.15);
}
.price-card.recommended { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.price-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.price-card.recommended .price-badge { background: var(--primary); color: #fff; }
.price-card:not(.recommended) .price-badge { background: var(--bg-card); color: var(--text-muted); }
.price-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.price-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.price-features { text-align: left; margin-bottom: 24px; }
.price-features li { font-size: 0.85rem; padding: 6px 0 6px 20px; position: relative; color: var(--text-muted); }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.price-card .btn-primary { width: 100%; padding: 14px; font-size: 0.95rem; }
.price-card .btn-secondary { width: 100%; padding: 14px; font-size: 0.95rem; }

.payment-methods { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.pm-item { font-size: 0.82rem; color: var(--text-muted); }
.security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 0.82rem; color: var(--text-muted); }

.guarantee-box {
  max-width: 600px; margin: 0 auto 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.guarantee-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.guarantee-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.urgency-text { text-align: center; font-size: 0.95rem; color: var(--primary); font-weight: 700; text-shadow: 0 0 15px rgba(0,82,183,0.4); }

/* Student Results */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 32px; }
.result-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s;
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,82,183,0.5);
  box-shadow: 0 10px 30px rgba(0,82,183,0.15);
}
.result-card .r-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 12px;
  box-shadow: 0 0 10px rgba(0,82,183,0.3);
}
.result-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.result-card .r-loc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.result-card .r-headline { font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.result-card blockquote { font-size: 0.88rem; color: var(--text-muted); font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.result-metrics { display: flex; gap: 16px; flex-wrap: wrap; }
.rm-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; text-align: center; }
.rm-val { font-size: 1rem; font-weight: 800; color: var(--primary); }
.rm-label { font-size: 0.7rem; color: var(--text-muted); }

.reviews-section { margin-top: 32px; }
.review-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 12px;
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,82,183,0.5);
  box-shadow: 0 8px 25px rgba(0,82,183,0.15);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-stars { color: #FBBF24; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-card p { font-size: 0.88rem; color: var(--text-muted); }
.review-author { font-size: 0.82rem; font-weight: 700; margin-top: 8px; color: #fff; }
.review-verified { font-size: 0.7rem; color: var(--primary); }
.trust-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.tr-item { font-size: 0.88rem; font-weight: 600; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; background: var(--bg-alt); }
.faq-q { width: 100%; background: none; border: none; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--text); text-align: left; }
.faq-q:hover { background: var(--bg-card); }
.faq-q .icon { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Final CTA */
.final-cta {
  padding: 80px 0; background: var(--bg-alt); color: #fff;
  text-align: center; position: relative; z-index: 1;
  border-top: 1px solid rgba(0,82,183,0.15);
}
.final-cta h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.final-cta .section-sub { color: var(--text-muted); }

.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto 40px; }
.comp-col { border-radius: var(--radius-lg); padding: 28px; }
.comp-col.trad { background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.comp-col.ai { background: rgba(0,82,183,0.08); border: 2px solid var(--primary); }
.comp-col h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: #fff; }
.comp-col.trad h4 { color: var(--text-muted); }
.comp-col.ai h4 { color: var(--primary); }
.comp-col li { font-size: 0.88rem; padding: 6px 0 6px 24px; position: relative; color: var(--text-muted); }
.comp-col.trad li::before { content: "❌"; position: absolute; left: 0; font-size: 0.75rem; }
.comp-col.ai li::before { content: "✅"; position: absolute; left: 0; font-size: 0.75rem; }

.urgency-items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.urgency-items span { font-size: 0.92rem; color: var(--text-light); }

.final-cta .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 0 20px rgba(0,82,183,0.3); }
.final-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,82,183,0.5); }
.final-cta .btn-secondary { border-color: var(--primary); color: var(--primary); }
.final-cta .btn-secondary:hover { background: var(--primary); color: #fff; }

.final-guarantee { margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }
.final-closing { margin-top: 32px; font-size: 1.05rem; color: var(--text-light); }
.final-ps { margin-top: 16px; font-size: 0.88rem; color: var(--text-muted); font-style: italic; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
  background: var(--bg-alt); color: var(--text-muted); text-align: center;
  padding: 40px 24px; border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-brand { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.75rem; margin-bottom: 12px; }
.footer-disclaimer { font-size: 0.7rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 16px; }

/* Sticky Footer Bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-alt); border-top: 1px solid rgba(0,82,183,0.2);
  color: #fff; padding: 12px 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 20px; z-index: 999;
  transform: translateY(100%); transition: transform 0.4s;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar span { font-size: 0.9rem; color: var(--text-light); }
.sticky-bar .btn-enroll {
  background: var(--primary); color: #fff;
  font-weight: 700; padding: 10px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 0.9rem; transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0,82,183,0.3);
}
.sticky-bar .btn-enroll:hover { transform: translateY(-1px); box-shadow: 0 0 25px rgba(0,82,183,0.5); }

/* Fade In */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.9rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .solution-steps { gap: 24px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta h2 { font-size: 1.8rem; }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Header */
  .logo-img { width: 100px; }

  /* Announcement */
  .announcement { font-size: 0.78rem; padding: 10px 16px; }

  /* Hero */
  .hero { padding: 30px 0 40px; }
  .hero-pre { font-size: 0.72rem; margin-bottom: 12px; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 12px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 20px; }

  /* Trust Badges */
  .trust-badges { flex-direction: column; align-items: center; gap: 8px; margin-bottom: 24px; }
  .trust-badge { font-size: 0.82rem; }

  /* Video */
  .video-placeholder { padding: 50px 16px; margin-bottom: 24px; }
  .video-placeholder .play-btn { width: 52px; height: 52px; font-size: 1.2rem; }

  /* Hero CTAs */
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary { padding: 16px 32px; font-size: 1rem; width: 100%; max-width: 360px; text-align: center; }
  .btn-secondary { padding: 14px 28px; font-size: 0.92rem; width: 100%; max-width: 360px; text-align: center; }

  /* Ticker */
  .ticker span { font-size: 0.75rem; padding: 6px 14px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 8px; }
  .section-sub { font-size: 0.9rem; margin-bottom: 32px; }

  /* Problems */
  .problems-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .problem-card { padding: 18px; }
  .problem-card h3 { font-size: 0.92rem; }
  .problem-card p { font-size: 0.8rem; }
  .better-way { font-size: 1.1rem; }

  /* Solution */
  .solution-steps { grid-template-columns: 1fr; gap: 24px; }
  .sol-icon { width: 52px; height: 52px; font-size: 1.2rem; }

  /* Curriculum */
  .module-header { padding: 14px 16px; font-size: 0.88rem; }
  .module-body ul { padding: 0 16px 14px 48px; }
  .module-body ul li { font-size: 0.82rem; }
  .curriculum-stats { gap: 20px; padding: 16px; }
  .cs-num { font-size: 1.1rem; }

  /* Value Stack */
  .value-item { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .vi-value { margin-left: 0; }
  .value-total { padding: 24px 16px; }
  .vt-price { font-size: 2.4rem; }

  /* Bonuses */
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonus-card { padding: 16px; }

  /* Countdown */
  .countdown { gap: 10px; }
  .cd-num { font-size: 1.1rem; padding: 6px 10px; min-width: 42px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 24px 20px; }
  .price-amount { font-size: 2rem; }

  /* Student Results */
  .results-grid { grid-template-columns: 1fr; }
  .result-card { padding: 24px 20px; }
  .result-metrics { gap: 10px; }
  .review-card { padding: 16px; }
  .trust-row { gap: 16px; }

  /* Comparison */
  .comparison { grid-template-columns: 1fr; gap: 16px; }
  .comp-col { padding: 20px; }

  /* FAQ */
  .faq-q { padding: 14px 16px; font-size: 0.88rem; }
  .faq-a p { padding: 0 16px 14px; font-size: 0.85rem; }

  /* Final CTA */
  .final-cta { padding: 48px 0; }
  .final-cta h2 { font-size: 1.5rem; margin-bottom: 8px; }
  .urgency-items { flex-direction: column; align-items: center; gap: 8px; }

  /* Footer */
  .footer { padding: 32px 16px; }
  .footer-links { gap: 16px; }

  /* Sticky Bar */
  .sticky-bar { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .sticky-bar span { font-size: 0.82rem; }
  .sticky-bar .btn-enroll { width: 100%; text-align: center; padding: 10px; }
}

/* Registration Modal */
.reg-modal {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,82,183,0.15);
}
.reg-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: #fff; font-size: 20px; cursor: pointer;
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.reg-close:hover { background: rgba(255,255,255,0.1); }
.reg-modal h2 {
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  text-align: center; margin-bottom: 16px;
}
.reg-details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  margin-bottom: 24px; font-size: 0.85rem;
  color: var(--text-muted); text-align: center; line-height: 1.8;
}
.reg-form-group { margin-bottom: 16px; }
.reg-form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.reg-form-group input,
.reg-form-group select {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); font-family: inherit;
  font-size: 0.95rem; color: var(--text);
  background: var(--bg); transition: border-color 0.2s;
}
.reg-form-group input:focus,
.reg-form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,82,183,0.15);
}
.reg-form-group input::placeholder { color: var(--text-muted); }
.reg-helper {
  display: block; font-size: 0.75rem;
  color: var(--text-muted); margin-top: 4px;
}
.reg-submit {
  display: block; width: 100%; padding: 18px;
  background: var(--primary); color: #fff;
  font-family: 'Clash Display', 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 700; border: none;
  border-radius: var(--radius); cursor: pointer;
  transition: all 0.3s; text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 0 20px rgba(0,82,183,0.3);
  margin-top: 8px;
}
.reg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,82,183,0.5);
  background: var(--primary-dim);
}
.reg-privacy {
  text-align: center; font-size: 0.78rem;
  color: var(--text-muted); margin-top: 12px;
}
.reg-badges {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 16px;
  font-size: 0.78rem; color: var(--text-muted);
}

@media (max-width: 768px) {
  .reg-modal { padding: 24px 18px; margin: 10px; }
  .reg-modal h2 { font-size: 1.2rem; }
  .reg-details { font-size: 0.78rem; padding: 10px 12px; }
  .reg-form-group input,
  .reg-form-group select { padding: 12px 14px; font-size: 0.9rem; }
  .reg-submit { padding: 16px; font-size: 1rem; }
  .reg-badges { gap: 10px; font-size: 0.72rem; }
}

/* Responsive - Small Mobile */
@media (max-width: 400px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.85rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.3rem; }
  .final-cta h2 { font-size: 1.3rem; }
  .btn-primary { padding: 14px 20px; font-size: 0.9rem; }
  .btn-secondary { padding: 12px 20px; font-size: 0.85rem; }
  .price-amount { font-size: 1.8rem; }
  .vt-price { font-size: 2rem; }
  .curriculum-stats { gap: 16px; }
}
