/* ============================================
   PW CODE BUDDY — Modern Black & White Theme
   ============================================ */

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

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-faint: #555;
  --accent: #ffffff;
  --accent-2: #c8ff00;
  --accent-3: #00e5ff;
  --tg-blue: #2AABEE;
  --radius: 14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }

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

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
.logo span { color: var(--accent-2); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent-2); color: #0a0a0a !important;
  padding: 8px 18px; border-radius: 8px; font-weight: 700 !important;
  font-size: 0.85rem !important; transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 20px; gap: 12px; border-top: 1px solid var(--border); }
.mobile-menu a { font-size: 1rem; color: var(--text-muted); }
.nav-cta-mobile { color: var(--accent-2) !important; font-weight: 700; }
.mobile-menu.open { display: flex; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  max-width: 1140px; margin: 0 auto;
  position: relative; gap: 60px;
}
.hero-bg-grid {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: -1;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-2);
  background: rgba(200,255,0,0.08); border: 1px solid rgba(200,255,0,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1px;
  margin-bottom: 20px;
}
.accent-text {
  background: linear-gradient(135deg, #ffffff 0%, #c8ff00 60%, #00e5ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero-subtitle strong { color: var(--text); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  background: var(--accent-2); color: #0a0a0a;
  padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  font-family: 'Syne', sans-serif; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,255,0,0.25); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 13px 28px; border-radius: 10px; font-weight: 500; font-size: 0.95rem;
  border: 1px solid var(--border-hover);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: var(--surface); border-color: var(--text-muted); }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--accent-2); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual { flex: 1; position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.floating-card {
  position: absolute;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px; min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-1 { top: 20px; left: 0; animation: float1 4s ease-in-out infinite; }
.card-2 { bottom: 20px; right: 0; animation: float2 4.5s ease-in-out infinite; }
.card-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation: float3 5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-10px)} }
.fc-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.fc-discount { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--accent-2); margin-bottom: 8px; }
.fc-code { font-family: monospace; font-size: 0.85rem; background: var(--bg-3); padding: 4px 10px; border-radius: 6px; color: var(--text); display: inline-block; }

/* ====== ALERT BANNER ====== */
.alert-banner {
  background: linear-gradient(135deg, #1a1a0a, #0a1a0a);
  border-top: 1px solid rgba(200,255,0,0.15); border-bottom: 1px solid rgba(200,255,0,0.15);
  padding: 14px 24px; text-align: center; font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.alert-banner strong { color: var(--text); }
.alert-banner a { color: var(--accent-2); font-weight: 600; }
.pulse-dot {
  width: 8px; height: 8px; background: var(--accent-2); border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(200,255,0,0.4)} 50%{box-shadow:0 0 0 6px rgba(200,255,0,0)} }

/* ====== SECTION COMMON ====== */
section { padding: 80px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin-bottom: 48px; }

/* ====== HOW TO ====== */
.how-to { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; position: relative; overflow: hidden; transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--border-hover); }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: rgba(200,255,0,0.1); position: absolute; top: 16px; right: 20px; line-height: 1;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-card p strong { color: var(--text); }

/* ====== COUPONS ====== */
.coupon-cards-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 56px; }
.coupon-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; transition: border-color 0.2s, transform 0.2s;
}
.coupon-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.coupon-primary { border-color: rgba(200,255,0,0.25); }
.coupon-tag {
  position: absolute; top: -1px; right: 24px;
  background: var(--accent-2); color: #0a0a0a;
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 0 0 8px 8px; letter-spacing: 0.05em; text-transform: uppercase;
}
.coupon-icon { font-size: 2rem; margin-bottom: 16px; }
.coupon-name { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.coupon-works-on { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.coupon-code-reveal { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.code-blur-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; flex: 1; }
.code-blurred, .code-real {
  font-family: 'Syne', monospace; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text);
}
.code-blurred { filter: blur(4px); user-select: none; }
.hidden { display: none !important; }
.reveal-btn {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  padding: 10px 16px; border-radius: 8px; cursor: pointer; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 6px;
  transition: background 0.2s, border-color 0.2s; white-space: nowrap;
}
.reveal-btn:hover { background: var(--bg-3); border-color: var(--text-muted); }
.copy-btn {
  width: 100%; background: var(--accent-2); color: #0a0a0a;
  border: none; border-radius: 8px; padding: 11px 20px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 20px; transition: opacity 0.2s;
}
.copy-btn:hover { opacity: 0.85; }
.copy-btn.copied { background: #1a3a1a; color: #4cff4c; }
.coupon-covers { display: flex; flex-wrap: wrap; gap: 6px; }
.coupon-covers span {
  font-size: 0.72rem; background: var(--bg-3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; color: var(--text-muted);
}

/* Discount Table */
.discount-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.discount-table-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.table-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.discount-table { width: 100%; }
.dt-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; font-size: 0.88rem; }
.dt-row:last-child { border-bottom: none; }
.dt-header { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); padding-bottom: 12px; }
.dt-cat { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cat-dot.jee { background: #4fc3f7; }
.cat-dot.neet { background: #81c784; }
.cat-dot.upsc { background: #ffb74d; }
.cat-dot.gate { background: #ba68c8; }
.cat-dot.foundation { background: #f48fb1; }
.cat-dot.offline { background: #ff8a65; }
.cat-dot.skills { background: #4db6ac; }
.dt-disc { font-weight: 700; color: var(--accent-2); font-family: 'Syne', sans-serif; }
.dt-link { color: var(--accent-2); font-weight: 600; font-size: 0.82rem; border-bottom: 1px solid rgba(200,255,0,0.3); }
.cat-dot.gov { background: #ef9a9a; }

/* Tabs */
.tab-btns { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text-muted);
  padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--border-hover); color: var(--text); }
.tab-btn.active { background: var(--accent-2); color: #0a0a0a; border-color: var(--accent-2); }
.tab-content { display: block; }
.tab-content.hidden { display: none; }
.dt-note { font-size: 0.82rem; color: var(--accent-2); font-style: italic; grid-column: 1 / -1; padding: 12px 0 0; border: none !important; }
.table-cta-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; padding: 14px 16px; background: rgba(200,255,0,0.05); border: 1px solid rgba(200,255,0,0.15); border-radius: 8px; }
.table-cta-note strong { color: var(--text); }
.table-cta-note a { color: var(--accent-2); font-weight: 600; }

/* ====== ASSISTED SALE ====== */
.assisted-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.assisted-explainer { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 16px; }
.assisted-why h3, .assisted-steps-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.why-list li strong { color: var(--text); }
.check { color: var(--accent-2); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

.cashback-box {
  background: var(--surface); border: 1px solid rgba(200,255,0,0.2); border-radius: var(--radius);
  padding: 24px;
}
.cb-title { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.cb-example { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cb-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.cb-row span:last-child { font-weight: 600; color: var(--text); }
.cb-row.highlight { color: var(--accent-2) !important; border-color: rgba(200,255,0,0.2); }
.cb-row.highlight span { color: var(--accent-2) !important; }
.cb-row.final { font-weight: 700; border: none; }
.cb-row.final span { color: var(--accent-2) !important; }
.cb-note { font-size: 0.78rem; color: var(--text-faint); font-style: italic; }

.a-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.a-step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.a-step:last-child { border-bottom: none; }
.a-num {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent-2); color: #0a0a0a;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.a-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.a-text strong { color: var(--text); }
.a-text a { color: var(--accent-2); font-weight: 600; }
.tg-btn { display: inline-flex; margin-top: 4px; }

/* ====== PERSONALIZED ====== */
.personal-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.personal-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px;
}
.pc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.personal-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.personal-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.pc-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-step { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.pc-n {
  width: 22px; height: 22px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--text-muted);
}

.comparison-table h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }

/* Desktop grid */
.comp-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.comp-header {
  background: var(--surface-2); padding: 12px 14px; font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted);
}
.comp-header.best-col { color: var(--accent-2); background: rgba(200,255,0,0.05); }
.comp-row-label { background: var(--surface); padding: 12px 14px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.comp-cell { background: var(--surface); padding: 12px 14px; font-size: 0.85rem; color: var(--text-muted); text-align: center; }
.comp-cell.best-col { background: rgba(200,255,0,0.04); color: var(--accent-2); font-weight: 600; }

/* Mobile comparison cards */
.comp-mobile { display: none; flex-direction: column; gap: 14px; }
.comp-mobile-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.comp-mobile-card.best-card { border-color: rgba(200,255,0,0.4); }
.comp-mobile-header {
  background: var(--surface-2); padding: 12px 16px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: space-between;
}
.comp-mobile-card.best-card .comp-mobile-header { background: rgba(200,255,0,0.08); color: var(--accent-2); }
.comp-mobile-badge {
  font-size: 0.65rem; background: var(--accent-2); color: #0a0a0a;
  padding: 2px 8px; border-radius: 100px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.comp-mobile-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-top: 1px solid var(--border); font-size: 0.85rem;
}
.comp-mobile-label { color: var(--text-muted); font-weight: 500; }
.comp-mobile-val { color: var(--text); font-weight: 600; text-align: right; max-width: 55%; }
.comp-mobile-card.best-card .comp-mobile-val { color: var(--accent-2); }

/* ====== GYAAN-E ====== */
.gyaane-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gyaane-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.section-title-left { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.gyaane-desc { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 24px; }
.gyaane-desc strong { color: var(--text); }
.gyaane-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.gyaane-features li { font-size: 0.9rem; color: var(--text-muted); }
.btn-gyaane {
  display: inline-flex; background: linear-gradient(135deg, #0a84ff, #00e5ff);
  color: #fff; padding: 13px 28px; border-radius: 10px; font-weight: 700;
  font-family: 'Syne', sans-serif; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gyaane:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,0.25); }
.gyaane-note { font-size: 0.8rem; color: var(--text-faint); margin-top: 12px; }

/* Phone mockup */
.phone-mockup {
  width: 200px; background: #111; border-radius: 32px;
  padding: 12px; border: 6px solid #222; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.phone-screen { background: var(--bg-3); border-radius: 22px; overflow: hidden; padding: 16px 14px; }
.reel-card { background: var(--surface); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.reel-subject { font-size: 0.65rem; color: var(--accent-3); margin-bottom: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.reel-title { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; }
.reel-bar { height: 6px; background: var(--bg-3); border-radius: 4px; margin-bottom: 6px; }
.reel-bar.short { width: 60%; }
.reel-bar.medium { width: 80%; }
.reel-actions { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-muted); margin-top: 8px; }
.reel-progress { height: 3px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.rp-fill { height: 100%; width: 40%; background: linear-gradient(90deg, #0a84ff, #00e5ff); }

/* ====== FAQ ====== */
.faq-grid { display: flex; flex-direction: column; gap: 0; margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 24px; cursor: pointer;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface); }
.faq-icon { font-size: 1.4rem; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  background: var(--surface);
}
.faq-a strong { color: var(--text); }
.faq-a a { color: var(--accent-2); }
.faq-a.open { display: block; }

/* ====== BLOG ====== */
.blog-section { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 16px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.blog-cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent-2); background: rgba(200,255,0,0.08);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 14px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.blog-link { font-size: 0.85rem; color: var(--accent-2); font-weight: 600; }

/* ====== CONTACT ====== */
.contact-section { background: var(--bg-2); border-top: 1px solid var(--border); }
.contact-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.contact-inner p { color: var(--text-muted); margin-bottom: 36px; }
.contact-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 24px; transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--border-hover); }
.tg-card { border-color: rgba(42,171,238,0.3); }
.tg-card:hover { border-color: rgba(42,171,238,0.6); }
.cc-icon { font-size: 1.6rem; }
.cc-text { display: flex; flex-direction: column; text-align: left; }
.cc-text strong { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.cc-text span { font-size: 0.82rem; color: var(--text-muted); }
.cc-arrow { color: var(--text-muted); font-size: 1.2rem; margin-left: 8px; }

/* ====== FOOTER ====== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; max-width: 300px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.footer-links a, .footer-contact a { font-size: 0.85rem; color: var(--text-faint); transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 88px; min-height: auto; }
  .hero-visual { width: 100%; min-height: 240px; }
  .card-1 { left: 10px; }
  .card-2 { right: 10px; }
  .assisted-explainer { grid-template-columns: 1fr; gap: 32px; }
  .personal-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gyaane-inner { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Discount table: hide middle column on small screens */
  .dt-row { grid-template-columns: 1.4fr 1fr; font-size: 0.82rem; }
  /* Comparison table: hide grid, show mobile cards */
  .comp-grid { display: none; }
  .comp-mobile { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 16px; }
  /* Personal layout already 1-col via 900px breakpoint */
  .coupon-code-reveal { flex-wrap: wrap; }
  .reveal-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .floating-card { min-width: 160px; padding: 14px 16px; }
  .card-3 { display: none; }
  section { padding: 60px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .discount-table-wrap { padding: 20px 16px; }
  .tab-btn { font-size: 0.78rem; padding: 7px 12px; }
  .cashback-box { padding: 16px; }
  .contact-options { flex-direction: column; }
}

/* ====== SAVINGS COUNTER BANNER ====== */
.counter-section {
  background: linear-gradient(135deg, #0d1a0d, #0a0a0a);
  border-top: 1px solid rgba(200,255,0,0.15);
  border-bottom: 1px solid rgba(200,255,0,0.15);
  padding: 48px 0;
}
.counter-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.counter-block {
  text-align: center; padding: 16px 40px; flex: 1; min-width: 160px;
}
.counter-num {
  font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--accent-2); line-height: 1; margin-bottom: 8px;
}
.counter-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.counter-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
@media (max-width: 700px) {
  .counter-inner { gap: 0; }
  .counter-block { min-width: 140px; padding: 14px 20px; }
  .counter-num { font-size: 1.6rem; }
  .counter-divider { display: none; }
}

/* ====== BATCH SUGGESTER QUIZ ====== */
.quiz-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quiz-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.quiz-progress-bar {
  height: 4px; background: var(--bg-3); border-radius: 2px; margin-bottom: 12px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; width: 0%; background: var(--accent-2); border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-step-label { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 24px; letter-spacing: 0.06em; text-transform: uppercase; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.quiz-q { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; color: var(--text); line-height: 1.35; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-opt {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text);
  padding: 14px 16px; border-radius: var(--radius); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  text-align: left; transition: all 0.2s; line-height: 1.3;
}
.quiz-opt:hover { border-color: var(--accent-2); background: rgba(200,255,0,0.06); color: var(--accent-2); }

/* Quiz Result */
.quiz-result-wrap { text-align: center; }
.quiz-result-icon { font-size: 3rem; margin-bottom: 16px; }
.quiz-result-title { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Syne', sans-serif; font-weight: 700; }
.quiz-result-batch { font-size: 1.6rem; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--accent-2); margin-bottom: 12px; line-height: 1.2; }
.quiz-result-desc { font-size: 0.9rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; line-height: 1.6; }
.quiz-result-code {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-3); border: 1px solid rgba(200,255,0,0.25); border-radius: 10px;
  padding: 12px 20px; margin-bottom: 24px;
}
.qr-label { font-size: 0.8rem; color: var(--text-muted); }
.qr-code { font-family: 'Syne', monospace; font-size: 1.1rem; font-weight: 800; color: var(--accent-2); letter-spacing: 0.08em; }
.quiz-result-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.quiz-whatsapp { margin-bottom: 20px; display: flex; justify-content: center; }
.quiz-restart { background: none; border: none; color: var(--text-faint); font-size: 0.85rem; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.quiz-restart:hover { color: var(--text-muted); }

@media (max-width: 600px) {
  .quiz-wrap { padding: 24px 20px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-result-ctas { flex-direction: column; }
  .quiz-result-ctas a, .quiz-result-ctas button { text-align: center; }
}

/* ====== WHATSAPP BUTTON ====== */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 11px 22px; border-radius: 10px; font-weight: 700;
  font-family: 'Syne', sans-serif; font-size: 0.88rem;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-whatsapp:hover { opacity: 0.88; transform: translateY(-2px); }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 36px;
}
.testi-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; position: relative; transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-highlight { border-color: rgba(200,255,0,0.25); }
.testi-tag {
  position: absolute; top: -1px; right: 20px;
  background: var(--accent-2); color: #0a0a0a;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 0 0 8px 8px; letter-spacing: 0.04em;
}
.testi-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #1a2a1a, #2a4a2a);
  border: 1px solid rgba(200,255,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--accent-2);
  flex-shrink: 0;
}
.testi-meta { flex: 1; }
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.testi-exam { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.testi-verified { font-size: 0.72rem; color: #4cff4c; font-weight: 600; flex-shrink: 0; }
.testi-msg { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testi-proof { display: flex; flex-wrap: wrap; gap: 6px; }
.proof-tag {
  font-size: 0.7rem; background: var(--bg-3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; color: var(--text-muted);
}
.testi-share-cta { text-align: center; padding: 28px 0 0; border-top: 1px solid var(--border); }
.testi-share-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }

/* ====== PRICE TRACKER ====== */
.price-tracker-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: border-color 0.2s;
}
.price-card:hover { border-color: var(--border-hover); }
.price-card-cta { border-color: rgba(42,171,238,0.25); background: rgba(42,171,238,0.03); }
.pc-exam {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 10px;
  background: var(--bg-3);
}
.jee-color { color: #4fc3f7; border: 1px solid rgba(79,195,247,0.3); }
.neet-color { color: #81c784; border: 1px solid rgba(129,199,132,0.3); }
.upsc-color { color: #ffb74d; border: 1px solid rgba(255,183,77,0.3); }
.gov-color { color: #ef9a9a; border: 1px solid rgba(239,154,154,0.3); }
.skills-color { color: #4db6ac; border: 1px solid rgba(77,182,172,0.3); }
.pc-batch { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.pc-price { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pc-after { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.pc-after span { color: var(--accent-2); font-weight: 600; }
.pc-cta { font-size: 0.8rem; color: var(--accent-2); font-weight: 600; border-bottom: 1px solid rgba(200,255,0,0.3); }
.tg-cta { color: var(--tg-blue); border-bottom-color: rgba(42,171,238,0.3); }
.price-disclaimer { font-size: 0.78rem; color: var(--text-faint); font-style: italic; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }


/* Bot card */
.bot-card { border-color: rgba(200,255,0,0.2); }
.bot-card:hover { border-color: rgba(200,255,0,0.5); }

/* ====== NOTICE OVERLAY POPUP ====== */
.notice-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.3s ease;
}
.notice-overlay.hidden { display: none; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.notice-modal {
  background: var(--bg-2); border: 1px solid rgba(255,100,100,0.35);
  border-radius: var(--radius-lg); max-width: 540px; width: 100%;
  padding: 36px 32px; position: relative;
  animation: slideUp 0.35s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.notice-icon { font-size: 2.4rem; margin-bottom: 10px; text-align: center; }
.notice-badge {
  display: inline-block; background: rgba(255,80,80,0.12);
  border: 1px solid rgba(255,80,80,0.3); color: #ff6b6b;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.notice-title {
  font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--text); margin-bottom: 14px; line-height: 1.25;
}
.notice-body {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 22px;
}
.notice-body strong { color: var(--text); }

.notice-what-works {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; margin-bottom: 18px;
}
.notice-works-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent-2); margin-bottom: 14px;
}
.notice-works-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px; font-size: 0.88rem; color: var(--text-muted);
}
.notice-works-item:last-child { margin-bottom: 0; }
.notice-works-item strong { color: var(--text); }
.nw-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.notice-cert-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(200,255,0,0.04); border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius); padding: 16px; margin-bottom: 24px;
}
.notice-cert-icon { font-size: 1.3rem; flex-shrink: 0; }
.notice-cert-box p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.notice-cert-box strong { color: var(--text); }

.notice-ctas { display: flex; flex-direction: column; gap: 10px; }
.notice-dismiss {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 11px 20px; border-radius: 10px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s;
}
.notice-dismiss:hover { border-color: var(--border-hover); color: var(--text); }

/* ====== NOTICE BAR (sticky top) ====== */
.notice-bar {
  background: rgba(40,10,10,0.98); border-bottom: 1px solid rgba(255,80,80,0.3);
  padding: 10px 24px; display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 0.84rem; color: var(--text-muted); flex-wrap: wrap;
  position: relative; z-index: 998;
}
.notice-bar strong { color: var(--text); }
.notice-bar.hidden { display: none; }
.notice-bar-link { color: #ff9a9a; font-weight: 600; white-space: nowrap; }
.notice-bar-close {
  background: none; border: none; color: var(--text-faint); cursor: pointer;
  font-size: 0.9rem; padding: 2px 6px; margin-left: 6px;
  transition: color 0.2s;
}
.notice-bar-close:hover { color: var(--text-muted); }
.pulse-dot.red { background: #ff6b6b; }
.pulse-dot.red { animation: pulseRed 2s ease-in-out infinite; }
@keyframes pulseRed { 0%,100%{box-shadow:0 0 0 0 rgba(255,107,107,0.4)} 50%{box-shadow:0 0 0 6px rgba(255,107,107,0)} }

@media (max-width: 600px) {
  .notice-modal { padding: 24px 20px; }
  .notice-title { font-size: 1.15rem; }
  .notice-bar { font-size: 0.78rem; padding: 10px 16px; }
}

/* Coupon expiry notice inline */
.coupon-expiry-notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,80,80,0.05); border: 1px solid rgba(255,80,80,0.25);
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 32px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.65;
}
.coupon-expiry-notice span { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.coupon-expiry-notice strong { color: var(--text); }
.coupon-expiry-notice a { color: #ff9a9a; font-weight: 600; }
/* ====== PW IOI SECTION ====== */
.ioi-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.ioi-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.ioi-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}
.ioi-badge {
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  background: var(--surface); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 100px;
}
.ioi-new-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #0a0a0a;
  background: var(--accent-2); padding: 3px 10px; border-radius: 100px;
}
.ioi-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.ioi-accent {
  background: linear-gradient(135deg, #c8ff00, #00e5ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ioi-subtitle {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px; max-width: 540px;
}
.ioi-subtitle strong { color: var(--text); }
.ioi-highlights {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px;
}
.ioi-highlight {
  display: flex; gap: 14px; align-items: flex-start;
}
.ioi-h-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.ioi-highlight strong {
  display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 2px;
}
.ioi-highlight span { font-size: 0.82rem; color: var(--text-muted); }
.ioi-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.ioi-note {
  font-size: 0.8rem; color: var(--text-faint); font-style: italic;
}

/* IOI Card (right side) */
.ioi-visual { display: flex; align-items: center; justify-content: center; }
.ioi-card {
  background: var(--surface);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.ioi-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.ioi-logo-box {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, #c8ff00, #00e5ff);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 900; font-size: 0.85rem;
  color: #0a0a0a; flex-shrink: 0; flex-direction: column; line-height: 1.1;
}
.ioi-logo-box span { font-size: 0.65rem; font-weight: 700; }
.ioi-card-name {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text);
}
.ioi-card-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.ioi-card-stats {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-3); border-radius: 10px; padding: 16px;
  margin-bottom: 20px;
}
.ioi-stat { text-align: center; flex: 1; }
.ioi-stat-num {
  font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: var(--accent-2); line-height: 1;
}
.ioi-stat-label { font-size: 0.7rem; color: var(--text-faint); margin-top: 4px; }
.ioi-stat-div { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }
.ioi-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.ioi-card-tags span {
  font-size: 0.7rem; background: var(--bg-3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; color: var(--text-muted);
}
.ioi-card-cta {
  display: block; text-align: center;
  background: var(--accent-2); color: #0a0a0a;
  padding: 12px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem;
  transition: opacity 0.2s;
}
.ioi-card-cta:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .ioi-inner { grid-template-columns: 1fr; gap: 36px; }
  .ioi-visual { display: none; }
}
@media (max-width: 480px) {
  .ioi-ctas { flex-direction: column; }
}

/* ====== BLOG COLLAPSE ====== */
.blog-hidden {
  display: none;
  margin-top: 20px;
}
.blog-hidden.open {
  display: grid;
}
.blog-toggle-wrap {
  display: flex; justify-content: center; margin-top: 32px;
}
.blog-toggle-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 13px 32px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem;
  cursor: pointer; transition: all 0.2s;
}
.blog-toggle-btn:hover {
  border-color: var(--accent-2); color: var(--accent-2);
  background: rgba(200,255,0,0.05);
}
.blog-toggle-icon {
  font-size: 1rem; transition: transform 0.3s ease; display: inline-block;
}
.blog-toggle-icon.rotated { transform: rotate(180deg); }

/* ====== FEATURE 3: STICKY MOBILE CTA ====== */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: var(--accent-2);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: none;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta.dismissed { transform: translateY(100%) !important; }
.sticky-cta-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; flex: 1; text-decoration: none;
}
.sticky-cta-icon { font-size: 1.1rem; flex-shrink: 0; }
.sticky-cta-text {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.88rem; color: #0a0a0a; flex: 1; line-height: 1.2;
}
.sticky-cta-arrow { font-size: 1rem; color: #0a0a0a; flex-shrink: 0; }
.sticky-cta-close {
  background: rgba(0,0,0,0.12); border: none; color: #0a0a0a;
  width: 40px; height: 100%; cursor: pointer; font-size: 0.9rem;
  flex-shrink: 0; padding: 0 12px;
  border-left: 1px solid rgba(0,0,0,0.1);
}
.sticky-cta-close:hover { background: rgba(0,0,0,0.2); }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; align-items: stretch; }
  /* Extra bottom padding so sticky bar never covers content */
  .footer { padding-bottom: 80px; }
}
/* Push page content up so sticky bar doesn't cover last section on mobile */
@media (max-width: 768px) {
  .footer { padding-bottom: 80px; }
}

/* ====== FEATURE 4: RECENTLY HELPED TICKER ====== */
.ticker-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: stretch; overflow: hidden;
  height: 44px; position: relative;
  /* Sits in normal flow — visible after notice overlay dismissed */
}
.ticker-label {
  flex-shrink: 0; background: var(--accent-2); color: #0a0a0a;
  font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0 16px;
  display: flex; align-items: center; white-space: nowrap;
  position: relative; z-index: 2;
}
.ticker-track {
  flex: 1; overflow: hidden; position: relative;
  display: flex; align-items: center;
}
.ticker-track::before, .ticker-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2;
  pointer-events: none;
}
.ticker-track::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.ticker-track::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.ticker-inner {
  display: flex; align-items: center;
  white-space: nowrap; width: max-content;
  animation: tickerScroll 70s linear infinite;
  will-change: transform;
}
.ticker-inner:hover { animation-play-state: paused; cursor: default; }
.ticker-item {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0 24px; display: inline-block;
}
.ticker-item strong { color: var(--text); }
.ticker-sep {
  color: var(--accent-2); font-size: 0.65rem; flex-shrink: 0; padding: 0 4px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .ticker-item { font-size: 0.75rem; padding: 0 14px; }
  .ticker-label { font-size: 0.65rem; padding: 0 10px; }
}

/* ====== FEATURE 5: EXAM CALENDAR ====== */
.calendar-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.calendar-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.cal-tab {
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 16px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.cal-tab:hover { border-color: var(--border-hover); color: var(--text); }
.cal-tab.active { background: var(--accent-2); color: #0a0a0a; border-color: var(--accent-2); }
.calendar-table-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  overflow-x: auto;
}
.cal-table { min-width: 640px; }
.cal-header {
  display: grid; grid-template-columns: 1.8fr 1.4fr 1.2fr 1fr 1fr;
  padding: 12px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); gap: 12px;
}
.cal-row {
  display: grid; grid-template-columns: 1.8fr 1.4fr 1.2fr 1fr 1fr;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  align-items: center; gap: 12px; font-size: 0.88rem;
  color: var(--text-muted); transition: background 0.15s;
}
.cal-row:last-child { border-bottom: none; }
.cal-row:hover { background: rgba(255,255,255,0.02); }
.cal-row.hidden { display: none; }
.cal-exam { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cal-dot.jee { background: #4fc3f7; }
.cal-dot.neet { background: #81c784; }
.cal-dot.upsc { background: #ffb74d; }
.cal-dot.gate { background: #ba68c8; }
.cal-dot.gov { background: #ef9a9a; }
.cal-date { font-size: 0.85rem; }
.cal-days {
  display: flex; flex-direction: column; align-items: flex-start;
}
.days-num {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  line-height: 1; color: var(--accent-2);
}
.days-num.past { color: var(--text-faint); }
.days-label { font-size: 0.68rem; color: var(--text-faint); }
.cal-link { font-size: 0.78rem; color: var(--accent-2); font-weight: 600; white-space: nowrap; }
.cal-disclaimer {
  font-size: 0.78rem; color: var(--text-faint); font-style: italic;
  margin-top: 16px;
}

/* ====== FEATURE 6: GOOGLE RATING BADGE ====== */
.testi-header-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 12px;
}
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; transition: border-color 0.2s;
  flex-shrink: 0;
}
.google-rating-badge:hover { border-color: var(--border-hover); }
.grb-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 1px; }
.grb-text { font-size: 0.82rem; color: var(--text-muted); }
.grb-text strong { color: var(--text); }

/* ====== UPGRADED IOI SECTION ELEMENTS ====== */
.ioi-code-box {
  background: var(--bg-2);
  border: 1px solid rgba(200,255,0,0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.ioi-code-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8ff00, #00e5ff);
}
.ioi-code-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-2); margin-bottom: 14px;
}
.ioi-code-display {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; min-height: 56px;
}
.ioi-code-blurred, .ioi-code-real {
  font-family: 'Syne', monospace;
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: 0.12em; color: var(--text);
}
.ioi-code-blurred { filter: blur(6px); user-select: none; }
.ioi-code-actions {
  display: flex; gap: 10px; margin-bottom: 20px;
}
.ioi-reveal-btn, .ioi-copy-btn {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 11px 16px; border-radius: 10px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.2s;
}
.ioi-reveal-btn:hover { border-color: var(--accent-2); color: var(--accent-2); }
.ioi-copy-btn {
  background: var(--accent-2); color: #0a0a0a; border-color: var(--accent-2);
  font-weight: 700;
}
.ioi-copy-btn:hover { opacity: 0.88; }
.ioi-copy-btn.copied { background: #1a3a1a; color: #4cff4c; border-color: #4cff4c; }

.ioi-price-breakdown {
  background: var(--surface); border-radius: 10px; padding: 16px;
}
.ioi-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 6px 0;
  color: var(--text-muted);
}
.ioi-price-old { color: var(--text-faint); text-decoration: line-through; }
.ioi-price-disc {
  color: #ff6b6b; font-weight: 700;
}
.ioi-price-row.final {
  border-top: 1px solid var(--border);
  margin-top: 6px; padding-top: 12px;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.ioi-price-row.final span:first-child { color: var(--text); }
.ioi-price-final {
  color: var(--accent-2);
  font-size: 1.4rem; font-weight: 800;
  font-family: 'Syne', sans-serif;
}

/* Admission Process */
.ioi-process {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 24px;
}
.ioi-process-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 14px;
}
.ioi-process-steps {
  list-style: none; counter-reset: ioisteps; padding: 0; margin: 0;
}
.ioi-process-steps li {
  counter-increment: ioisteps;
  display: flex; gap: 12px; padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}
.ioi-process-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.ioi-process-steps li::before {
  content: counter(ioisteps);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,255,0,0.12); border: 1px solid rgba(200,255,0,0.35);
  color: var(--accent-2);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ioi-process-steps li strong { color: var(--text); }
.ioi-process-steps li a { color: var(--accent-2); font-weight: 600; }

/* Savings highlight card on right */
.ioi-card-savings {
  background: linear-gradient(135deg, rgba(200,255,0,0.12), rgba(0,229,255,0.05));
  border: 1px solid rgba(200,255,0,0.3); border-radius: 12px;
  padding: 18px; margin-bottom: 18px; text-align: center;
}
.ioi-savings-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 4px;
}
.ioi-savings-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent-2); line-height: 1; margin-bottom: 6px;
}
.ioi-savings-sub {
  font-size: 0.78rem; color: var(--text-muted);
}

@media (max-width: 600px) {
  .ioi-code-display { min-height: 50px; padding: 12px 16px; }
  .ioi-code-blurred, .ioi-code-real { font-size: 1.15rem; }
  .ioi-price-final { font-size: 1.2rem; }
}

/* ====== FIX: RESTORE IOI BLOG LINK ====== */
.btn-tg {
  background: transparent; color: var(--text-muted);
  padding: 13px 22px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-tg:hover { border-color: var(--accent-2); color: var(--accent-2); }

.ioi-card-secondary {
  display: block; text-align: center; margin-top: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  text-decoration: none; padding: 6px;
  transition: color 0.2s;
}
.ioi-card-secondary:hover { color: var(--accent-2); }

/* ====== EXIT INTENT POPUP ====== */
.exit-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.exit-overlay.show { display: flex; }
.exit-modal {
  background: var(--bg-2);
  border: 1px solid rgba(200,255,0,0.35);
  border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  padding: 36px 32px;
  position: relative; text-align: center;
  animation: slideUp 0.35s ease;
}
.exit-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8ff00, #00e5ff);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.exit-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: var(--text-faint);
  font-size: 1.1rem; cursor: pointer; padding: 4px 8px;
  transition: color 0.2s;
}
.exit-close:hover { color: var(--text); }
.exit-icon { font-size: 2.4rem; margin-bottom: 10px; }
.exit-badge {
  display: inline-block;
  background: rgba(255,107,107,0.12);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff6b6b;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.exit-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); line-height: 1.25;
  margin-bottom: 14px;
}
.exit-body {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 22px;
}
.exit-body strong { color: var(--accent-2); }
.exit-code-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; margin-bottom: 22px;
}
.exit-code-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 10px;
}
.exit-code-display {
  display: flex; gap: 8px; align-items: center;
}
.exit-code-text {
  flex: 1; font-family: 'Syne', monospace;
  font-size: 1.2rem; font-weight: 800;
  color: var(--accent-2); letter-spacing: 0.1em;
  background: var(--bg-3); padding: 12px 16px;
  border-radius: 8px; text-align: center;
}
.exit-copy-btn {
  background: var(--accent-2); color: #0a0a0a; border: none;
  padding: 12px 18px; border-radius: 8px; cursor: pointer;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.exit-copy-btn:hover { opacity: 0.85; }
.exit-copy-btn.copied { background: #1a3a1a; color: #4cff4c; }
.exit-ctas { display: flex; flex-direction: column; gap: 10px; }
.exit-mini {
  font-size: 0.78rem; color: var(--text-faint);
  margin-top: 14px; font-style: italic;
}
@media (max-width: 600px) {
  .exit-modal { padding: 28px 22px; }
  .exit-title { font-size: 1.2rem; }
  .exit-code-display { flex-direction: column; }
  .exit-copy-btn { width: 100%; }
}

/* ====== PROOF GALLERY ====== */
.proof-section {
  background: var(--bg);
  padding: 80px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.proof-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.proof-img {
  height: 200px; padding: 16px;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}

/* Fake receipt */
.proof-fake-receipt {
  background: #fff; color: #0a0a0a;
  border-radius: 8px; padding: 14px 16px;
  width: 100%; max-width: 240px;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.pfr-header {
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px; margin-bottom: 8px;
}
.pfr-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.78rem;
  color: #6c5ce7;
}
.pfr-status {
  font-size: 0.65rem; color: #00b894; font-weight: 700;
}
.pfr-row {
  display: flex; justify-content: space-between;
  padding: 3px 0; font-size: 0.66rem;
}
.pfr-row span:first-child { color: #888; }
.pfr-blur {
  filter: blur(3.5px); user-select: none; color: #333;
}
.pfr-amt {
  font-weight: 800; font-family: 'Syne', sans-serif;
  color: #2d3436;
}
.pfr-disc { color: #e17055; font-weight: 600; }

/* Fake UPI */
.proof-fake-upi {
  background: #fff; color: #0a0a0a;
  border-radius: 8px; padding: 16px 14px;
  width: 100%; max-width: 200px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.pfu-bank {
  font-size: 0.62rem; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.pfu-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: #4285F4; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin: 0 auto 10px;
}
.pfu-name {
  font-size: 0.78rem; font-weight: 600; color: #2d3436;
  margin-bottom: 4px;
}
.pfu-amt {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: #4285F4;
}
.pfu-sent {
  font-size: 0.65rem; color: #888; margin-top: 2px;
}
.pfu-note {
  font-size: 0.62rem; color: #aaa;
  margin-top: 6px; padding-top: 6px;
  border-top: 1px dashed #eee;
  font-style: italic;
}

/* Fake Telegram */
.proof-fake-tg {
  width: 100%; padding: 8px;
  display: flex; flex-direction: column; gap: 8px;
}
.pftg-msg {
  padding: 8px 12px; border-radius: 14px;
  font-size: 0.74rem; line-height: 1.4;
  max-width: 85%;
}
.pftg-them {
  background: #2a2a2a; color: #e0e0e0;
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.pftg-us {
  background: #0d4a3e; color: #d4f5ec;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.pftg-text { margin-bottom: 4px; }
.pftg-time {
  font-size: 0.6rem; opacity: 0.55; text-align: right;
}

.proof-meta { padding: 16px 18px; }
.proof-name {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.92rem; color: var(--text); margin-bottom: 4px;
}
.proof-tag {
  font-size: 0.75rem; color: var(--text-muted);
}
.proof-disclaimer {
  font-size: 0.78rem; color: var(--text-faint);
  font-style: italic; padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px;
}

/* ====== EXPLAINER VIDEO ====== */
.explainer-video-wrap {
  margin: 0 auto 48px;
  max-width: 720px;
  position: relative;
}
.explainer-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-3);
  /* Subtle outer glow so the video doesn't feel pasted on the page */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(200,255,0,0.08);
  transition: box-shadow 0.3s;
}
.explainer-video:hover {
  box-shadow:
    0 24px 70px rgba(0,0,0,0.6),
    0 0 0 1px rgba(200,255,0,0.18);
}
.explainer-video.desktop-only { aspect-ratio: 16 / 9; }
.explainer-video.mobile-only { aspect-ratio: 9 / 16; max-width: 360px; margin: 0 auto; }

/* Responsive: show only the right one */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .explainer-video-wrap { max-width: 100%; padding: 0 8px; }
}

/* Caption below video */
.explainer-caption {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px;
  font-size: 0.82rem; color: var(--text-faint);
  font-style: italic;
}
.ev-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,255,0,0.4); }
  50%     { box-shadow: 0 0 0 6px rgba(200,255,0,0); }
}