/* =====================================================
   ARS ACADEMY — DESIGN SYSTEM
   Primary: #1a237e | Accent: #D4AF37 | Text: #F5F5F5
   ===================================================== */

:root {
  --bg:       #1a237e;
  --bg2:      #151c6e;
  --card:     rgba(255,255,255,0.07);
  --orange:   #e5a000;
  --orange2:  #c88a00;
  --white:    #F5F5F5;
  --grey:     rgba(255,255,255,0.72);
  --text-dark: #1a237e;
  --text-mid:  #444444;
  --radius:   12px;
  --rsm:      8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', 'Noto Sans Tamil', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
.wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 36px); font-weight: 700; line-height: 1.3; text-align: center; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.orange     { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.orange-sm  { color: var(--orange); -webkit-text-fill-color: var(--orange); font-size: .85em; font-weight: 500; }
.glow-heading { color: #FFD700; -webkit-text-fill-color: #FFD700; }

/* ── CURSOR GLOW ── */
#cursorGlow {
  pointer-events: none;
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: left 0.08s, top 0.08s;
  display: none;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(21,28,110,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 10px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-brand { display: flex; align-items: center; gap: 10px; }
.tb-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); box-shadow: 0 2px 6px rgba(0,0,0,0.2); flex-shrink: 0; }
.tb-name { font-size: .95rem; font-weight: 800; color: var(--orange); letter-spacing: 2px; }
.tb-btn { padding: 8px 20px; font-size: .85rem; }

/* ── BUTTONS ── */
.btn-orange {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #111;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform 0.25s, box-shadow 0.25s, letter-spacing 0.25s;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
  letter-spacing: 0.3px;
}
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.btn-orange:hover::after { left: 170%; }
.btn-orange:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(212,175,55,0.55), 0 2px 8px rgba(0,0,0,0.2);
}
.btn-orange:active { transform: translateY(0) scale(0.98); }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; border-radius: 10px; font-weight: 900; letter-spacing: 0.5px; }
.btn-price { color: #1a237e; font-weight: 900; font-size: 1.5em; background: #fff; padding: 1px 10px 3px; border-radius: 6px; letter-spacing: 1px; display: inline-block; line-height: 1.3; }
.btn-primary { display: inline-block; background: linear-gradient(135deg, #D4AF37, #F0C040); color: #111; font-weight: 700; padding: 14px 28px; border-radius: 8px; transition: transform .3s, box-shadow .3s; text-align: center; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(212,175,55,0.6); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(255,255,255,0.4);
}
.btn-xl { padding: 18px 48px; font-size: 1.15rem; }

.pulse { animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
  70%  { box-shadow: 0 0 0 25px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ── VIDEO MODAL ── */
.vmodal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.vmodal.open { display: flex; animation: fin .2s ease; }
@keyframes fin { from { opacity: 0; } to { opacity: 1; } }
.vmodal-box { position: relative; width: 100%; max-width: 900px; background: #000; border-radius: var(--radius); overflow: hidden; }
.vmodal-frame { position: relative; padding-bottom: 56.25%; height: 0; }
.vmodal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal-close { position: absolute; top: 10px; right: 14px; z-index: 10; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.3rem; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.vmodal-close:hover { background: rgba(212,175,55,0.4); }

/* ── MOBILE STICKY ── */
.mob-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; width: 100%; z-index: 500; padding: 8px 12px; background: var(--bg2); border-top: 2px solid var(--orange); align-items: center; justify-content: space-between; gap: 8px; transition: opacity .3s; box-sizing: border-box; overflow: hidden; }
.ms-info { line-height: 1.1; font-size: .75rem; color: var(--grey); flex-shrink: 0; }
.ms-info strong { display: block; color: var(--orange); font-size: 1.2rem; font-weight: 900; line-height: 1; }
.ms-btn { padding: 10px 14px; font-size: .78rem; white-space: nowrap; flex: 1 1 auto; min-width: 0; text-align: center; animation: pulse 2s infinite; }

/* ── SECTION BACKGROUNDS ── */
.sec-dark     { padding: 80px 0; background: var(--bg2); }

/* ── WHITE SECTION OVERRIDES ── */
.sec-primary { padding: 80px 0; background: #f4f6ff; }
.sec-primary h2, .sec-primary h3 { color: #0d1560 !important; }
.sec-primary p  { color: #444 !important; }
.sec-primary li { color: #444 !important; }
.sec-primary .sec-tag { color: var(--text-dark) !important; border-color: rgba(26,35,126,0.3) !important; }
.sec-primary .orange { color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }
/* who section */
.sec-primary .who-side { color: #444 !important; }
.sec-primary .who-side p { color: #444 !important; }
.sec-primary .who-side p::before { color: var(--orange) !important; }
.sec-primary .anim-card, .sec-primary .who-item { background: #ffffff !important; border-color: rgba(26,35,126,0.12) !important; box-shadow: 0 4px 20px rgba(26,35,126,0.08); }
.sec-primary .who-item:hover { box-shadow: 0 10px 30px rgba(26,35,126,0.18) !important; }
.sec-primary .who-txt strong { color: var(--text-dark) !important; }
.sec-primary .who-txt p { color: #555 !important; }
/* gain cards — dark premium */
.sec-primary .gain-card { background: linear-gradient(145deg,#1a237e,#151c6e) !important; border: 1px solid rgba(212,175,55,0.35) !important; border-top: 3px solid var(--orange) !important; color: var(--white) !important; box-shadow: 0 8px 28px rgba(26,35,126,0.3); }
.sec-primary .gain-card h3 { color: var(--orange) !important; font-weight: 700; }
.sec-primary .gain-card p  { color: rgba(255,255,255,0.75) !important; }
.sec-primary .gain-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,35,126,0.4) !important; }
/* curriculum */
.sec-primary .cur-list li { color: #333 !important; }
.sec-primary .cur-list li::before { color: var(--orange) !important; }
.sec-primary .cur-card { background: linear-gradient(145deg,#1a237e,#151c6e) !important; border: 1px solid rgba(212,175,55,0.25) !important; box-shadow: 0 4px 16px rgba(26,35,126,0.25); }
.sec-primary .cur-card p { color: rgba(255,255,255,0.9) !important; }
.sec-primary .cn { color: var(--orange) !important; }
/* guarantee box */
.sec-primary .gbox { background: linear-gradient(135deg,#1a237e,#0d1560) !important; border: 1px solid rgba(212,175,55,0.4) !important; box-shadow: 0 12px 40px rgba(26,35,126,0.35) !important; }
.sec-primary .gt h3 { color: var(--orange) !important; font-weight: 800; }
.sec-primary .gt p  { color: rgba(255,255,255,0.82) !important; }
.sec-primary .gt p strong { color: var(--orange) !important; font-weight: 700; }
.sec-primary .gp    { color: var(--orange) !important; font-style: italic; }
/* guru cards on white section */
.sec-primary .guru-card { background: #ffffff !important; border: 1px solid rgba(26,35,126,0.15) !important; box-shadow: 0 4px 20px rgba(26,35,126,0.1); }
.sec-primary .guru-info strong { color: var(--text-dark) !important; }
.sec-primary .guru-info span   { color: #666 !important; }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-tag {
  display: inline-block;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 16px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 50px;
  background: rgba(212,175,55,0.08);
  backdrop-filter: blur(4px);
}
.sec-sub { color: var(--grey); font-size: .95rem; margin-top: 8px; }

/* ── HERO ── */
.hero {
  display: flex;
  align-items: flex-start;
  background: #101870;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
/* Dark overlay for bg image */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  pointer-events: none;
  z-index: 0;
}
/* Orange glow — floating brand accent */
.hero::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(212,175,55,0.2);
  filter: blur(120px);
  top: 20%;
  left: 10%;
  pointer-events: none;
  z-index: 1;
  animation: floatGlow 6s ease-in-out infinite;
}
@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-single {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Floating shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.07;
}
.fs1 { width: 300px; height: 300px; background: var(--orange); top: -80px; left: -60px; animation: flt 7s ease-in-out infinite; }
.fs2 { width: 200px; height: 200px; background: var(--orange); bottom: 40px; right: -40px; animation: flt 9s ease-in-out infinite reverse; }
.fs3 { width: 120px; height: 120px; background: var(--orange); top: 40%; left: 50%; animation: flt 6s ease-in-out infinite 1s; }
.fs4 { width: 80px; height: 80px; background: #fff; top: 20%; right: 10%; animation: flt 11s ease-in-out infinite; opacity: 0.04; }
@keyframes flt { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-24px) scale(1.08); } }

.hero-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
/* ── HERO BRAND ── */
.hero-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 0; }
.hero-logo-img { width: 64px !important; height: 64px !important; max-width: 64px !important; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,0.3); flex-shrink: 0; display: block; }
.hero-brand-name { font-size: 1.8rem; font-weight: 900; color: var(--orange); letter-spacing: 3px; }
.h-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); box-shadow: 0 0 14px rgba(212,175,55,0.4); }
.h-brand { font-size: 1.1rem; font-weight: 800; color: var(--orange); letter-spacing: 2.5px; }
.hero-badge { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4); color: var(--orange); font-size: .82rem; font-weight: 600; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; }
.hero-hook { font-size: 18px; color: #ffffff; text-align: center; margin: 0; }
.hero-hook strong {
  color: #111;
  background: var(--orange);
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 900;
  letter-spacing: 1px;
}
.hero h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  letter-spacing: 1px;
  
}
.hero-sub { font-size: 1rem; color: #111; margin: 0; line-height: 1.6; text-align: center; padding: 12px 22px; background: var(--orange); border-radius: 8px; font-weight: 600; }
.hero-sub strong { color: #111; }
.price { color: #111; font-weight: 800; }
.hero-list { margin-bottom: 30px; }
.hero-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: .97rem; color: var(--white); }
.tick { background: var(--orange); color: #111; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.hero-vid-center { max-width: 520px; margin: 0 auto 28px; position: relative; z-index: 2; }
.hero-features-wrap { width: 100%; }
.features-label { text-align: center; margin-bottom: 16px; font-size: 18px; font-weight: 600; color: var(--orange); letter-spacing: 1px; }
.hero-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 680px; margin: 0 auto; text-align: left; }
.feature-box { flex: 0 0 calc(33.333% - 10px); min-width: 180px; }
.feature-box {
  background: rgba(212,175,55,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 18px 16px;
  font-size: .88rem;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: featUp 0.6s ease forwards;
  transition: transform .3s, box-shadow .3s;
}
.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }
.feature-box:nth-child(5) { animation-delay: 0.5s; }
@keyframes featUp { to { opacity: 1; transform: translateY(0); } }
.feature-box:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 10px 25px rgba(212,175,55,0.3); }
.feature-box.highlight { background: rgba(212,175,55,0.1); border-color: var(--orange); }
.feat-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 768px) { .feature-box { flex: 0 0 calc(50% - 8px); min-width: 140px; } }
.hero-cta { display: block; max-width: 420px; margin: 15px auto 0; padding: 20px 30px; }
.hero-trust { font-size: .86rem; color: var(--grey); margin-top: 16px; text-align: center; }

/* Hero video */
.hero-vid-wrap {
  position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 0 30px rgba(212,175,55,0.15), 0 20px 50px rgba(0,0,0,0.5);
  transition: transform .3s, box-shadow .3s;
}
.hero-vid-wrap:hover { transform: scale(1.03); box-shadow: 0 0 50px rgba(212,175,55,0.3), 0 24px 60px rgba(0,0,0,0.5); }
.hero-thumb { width: 100%; display: block; object-fit: cover; }
.play-ring-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%); display: flex; align-items: center; justify-content: center; }
.play-ring-a { position: absolute; width: 76px; height: 76px; border: 2px solid var(--orange); border-radius: 50%; animation: rp 1.8s infinite; }
@keyframes rp { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
.play-icon-btn { position: relative; z-index: 1; background: var(--orange); color: #111; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding-left: 4px; box-shadow: 0 0 20px rgba(212,175,55,0.6); transition: transform .2s; }
.hero-vid-wrap:hover .play-icon-btn { transform: scale(1.1); }
.vid-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(0deg,rgba(0,0,0,0.8) 0%,transparent 100%); color: var(--white); font-size: .82rem; font-weight: 600; }

/* ── MARQUEE ── */
.marquee-strip { background: linear-gradient(90deg,#0d1560,#1a237e,#0d1560); padding: 16px 0; overflow: hidden; border-top: 2px solid rgba(212,175,55,0.4); border-bottom: 2px solid rgba(212,175,55,0.4); }
.marquee-track { display: flex; gap: 40px; animation: mq 28s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.mi { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: .86rem; font-weight: 600; flex-shrink: 0; }
.md { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px var(--orange); }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── STATS ── */
.stats-sec { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: linear-gradient(145deg,#1a237e,#151c6e);
  border: 1px solid rgba(212,175,55,0.3);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.stat-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }
.sn { font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; font-variant-numeric: tabular-nums; }
.sp { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-card p { font-size: .8rem; color: var(--grey); margin-top: 8px; }

/* ── WHAT YOU WILL GAIN — SWIPE SLIDER ── */
.gain-slider {
  display: flex;
  gap: 20px;
  padding: 10px 4px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gain-slider::-webkit-scrollbar { display: none; }
.gain-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 28px 22px;
  color: var(--white);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.gain-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.gain-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,175,55,0.3); transition: background .3s, transform .3s; }
.gain-dot.active { background: var(--orange); transform: scale(1.3); }
@media (max-width: 768px) { .gain-dots { display: flex; } }
.gain-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 10px 30px rgba(212,175,55,0.25); }
.gain-card:active { transform: scale(0.97); }
.gain-icon { font-size: 36px; margin-bottom: 14px; }
.gain-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.gain-card p  { color: var(--grey); font-size: .88rem; margin: 0; }
@media (max-width: 768px) {
  .gain-slider { padding: 0 20px 20px; scroll-padding-left: 20px; gap: 16px; }
  .gain-card { flex: 0 0 82% !important; scroll-snap-align: center; margin: 0; }
}
@media (min-width: 769px) {
  .gain-slider { overflow: visible; flex-wrap: wrap; justify-content: center; }
  .gain-card { flex: 0 0 calc(25% - 15px); }
}

/* ── WHO LIST ── */
.who-list { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.who-item {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.2);
  padding: 20px 25px; border-radius: 15px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.who-item::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; height: 80%; width: 4px;
  background: var(--orange);
  border-radius: 5px;
}
.who-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212,175,55,0.25); }
.who-ic { font-size: 1.8rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(212,175,55,0.1); border-radius: 50%; flex-shrink: 0; }
.who-txt strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.who-txt p { color: var(--grey); font-size: .9rem; margin: 0; }
/* ── CIRCLE LAYOUT ── */
.circle-wrapper {
  display: flex; align-items: center; justify-content: center;
  gap: 50px; margin-top: 40px;
}
.who-side {
  width: 220px; color: #aaa; font-size: 15px; line-height: 1.6;
}
.who-side p {
  margin-bottom: 15px; padding-left: 22px; position: relative;
}
.who-side p::before {
  content: "✔"; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
@media (max-width: 768px) {
  .circle-wrapper { flex-direction: column !important; align-items: center !important; gap: 24px !important; }
  .circle-container { width: calc(100vw - 32px) !important; height: calc(100vw - 32px) !important; max-width: 320px !important; max-height: 320px !important; flex-shrink: 0 !important; }
  .who-side { display: block !important; width: 100% !important; max-width: 100% !important; font-size: 14px !important; text-align: left !important; padding: 0 !important; }
  .circle-center { width: 80px !important; height: 80px !important; font-size: 14px !important; }
  .circle-item { width: 68px !important; height: 68px !important; font-size: 17px !important; }
  .circle-item span { font-size: .56rem; }
}
.circle-container {
  position: relative;
  width: 380px; height: 380px;
  margin: 0 auto;
  flex-shrink: 0;
}
.circle-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: linear-gradient(135deg, #1a1a1a, rgba(212,175,55,0.18));
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 22px; text-align: center; line-height: 1.3;
  box-shadow: 0 0 40px rgba(212,175,55,0.5);
  z-index: 2;
}
.circle-center span { font-size: 11px; color: var(--orange); font-weight: 700; }
/* SVG lines */
.node-lines {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
.node-lines line {
  stroke: rgba(212,175,55,0.35);
  stroke-width: 1.2;
  stroke-linecap: round;
  
}
/* Circle nodes */
.circle-item {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; font-size: 22px;
  color: var(--white); z-index: 3;
  animation: nodePulse 3s infinite;
  transition: transform .3s, background .3s, border-color .3s;
}
.circle-item span { font-size: .62rem; font-weight: 600; color: #ddd; line-height: 1.3; }
.circle-item:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--orange);
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
  animation: none;
}
@keyframes nodePulse {
  0%   { box-shadow: 0 0 8px rgba(212,175,55,0.2); }
  50%  { box-shadow: 0 0 22px rgba(212,175,55,0.6); }
  100% { box-shadow: 0 0 8px rgba(212,175,55,0.2); }
}
/* positions */
.ci-top    { top: 0;   left: 50%; transform: translateX(-50%); }
.ci-right  { top: 50%; right: 0;  transform: translateY(-50%); }
.ci-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.ci-left   { top: 50%; left: 0;   transform: translateY(-50%); }
.ci-top:hover    { transform: translateX(-50%) scale(1.15) !important; }
.ci-right:hover  { transform: translateY(-50%) scale(1.15) !important; }
.ci-bottom:hover { transform: translateX(-50%) scale(1.15) !important; }
.ci-left:hover   { transform: translateY(-50%) scale(1.15) !important; }
@media (max-width: 540px) {
  .circle-container { width: 320px; height: 320px; }
  .circle-item { width: 90px !important; height: 90px !important; padding: 8px; border-radius: 50% !important; }
  .circle-center { width: 80px; height: 80px; font-size: 18px; }
}
/* WHO HIGHLIGHT */
.who-highlight {
  margin-top: 40px; max-width: 900px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 16px; padding: 28px 32px;
  text-align: center;
}
.who-hl-tag { color: var(--orange); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.who-hl-line { color: var(--grey); font-size: .95rem; margin: 10px 0; line-height: 1.6; }
.who-hl-line strong { color: var(--white); }
@media (max-width: 540px) { .who-item { flex-direction: column; align-items: flex-start; } }

/* ── CURRICULUM ── */
.cur-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.cur-list { display: flex; flex-direction: column; gap: 12px; }
.cur-card {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
  border: 1px solid rgba(212,175,55,0.1);
  padding: 16px 20px; border-radius: 16px;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.cur-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, transparent, rgba(212,175,55,0.6), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
}
.cur-card:hover::before { opacity: 1; }
.cur-card:hover { transform: translateX(6px); box-shadow: 0 8px 28px rgba(212,175,55,0.25); border-color: rgba(212,175,55,0.45) !important; }
.cn { font-size: 1.2rem; font-weight: 800; color: var(--orange); min-width: 36px; }
.cur-card p { color: var(--white); font-size: .95rem; margin: 0; }

/* ── CURRICULUM SLIDE-IN (overrides scroll-reveal fade-up) ── */
.cur-list .cur-card.scroll-reveal {
  transform: translateX(-44px);
}
.cur-list .cur-card.scroll-reveal.visible {
  transform: translateX(0);
}
.cur-list .cur-card:nth-child(1) { transition-delay: 0.05s !important; }
.cur-list .cur-card:nth-child(2) { transition-delay: 0.12s !important; }
.cur-list .cur-card:nth-child(3) { transition-delay: 0.19s !important; }
.cur-list .cur-card:nth-child(4) { transition-delay: 0.26s !important; }
.cur-list .cur-card:nth-child(5) { transition-delay: 0.33s !important; }
.cur-list .cur-card:nth-child(6) { transition-delay: 0.40s !important; }
.cur-list .cur-card:nth-child(7) { transition-delay: 0.47s !important; }
.cur-list .cur-card:nth-child(8) { transition-delay: 0.54s !important; }
.cur-list .cur-card:nth-child(9) { transition-delay: 0.61s !important; }
.cur-img { border-radius: var(--radius); opacity: .9; transition: transform .3s; }
.cur-img:hover { transform: scale(1.03); }
.cur-side { display: flex; flex-direction: column; }

/* ── TRAINER ── */
.trainer-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.trainer-img-col { flex: 1.2; }
.trainer-text    { flex: 1; }
.trainer-img-wrap {
  position: relative; display: block;
  border: 2px solid rgba(212,175,55,0.3);
  padding: 5px;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.trainer-img-wrap:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.3); }
.trainer-img-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent); z-index: 1; pointer-events: none; }
.trainer-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
  transition: transform .3s;
}
.trainer-img:hover { transform: scale(1.03); }
.trainer-role { color: var(--orange); font-weight: 600; font-size: 1rem; margin: 8px 0 22px; display: block; }
.trainer-pts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.tpt { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.12); border-radius: 10px; padding: 12px 14px; transition: border-color .2s; }
.tpt:hover { border-color: rgba(212,175,55,0.3); }
.tpt-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.tpt p { color: var(--grey); font-size: .95rem; margin: 0; }
.trainer-quote { border-left: 3px solid var(--orange); padding: 14px 18px; background: rgba(212,175,55,0.06); border-radius: 0 var(--rsm) var(--rsm) 0; color: var(--grey); font-style: italic; font-size: .95rem; line-height: 1.75; }
.trainer-quote strong { color: var(--orange); font-style: normal; }

/* ── GURU SECTION ── */
.guru { text-align: center; }
.guru h2 { font-size: clamp(1.8rem, 4vw, 34px); font-weight: 700; margin-bottom: 40px; }
.guru-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; max-width: 720px; margin: 0 auto; }
.guru-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  overflow: hidden; cursor: pointer;
  width: 100%;
  transition: transform .3s, box-shadow .3s;
}
.guru-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(212,175,55,0.3); border-color: var(--orange); }
.guru-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.guru-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; aspect-ratio: unset; border: none; margin: 0; }
.guru-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); }
.g-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(212,175,55,0.92);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; padding-left: 5px;
  box-shadow: 0 0 0 8px rgba(212,175,55,0.25), 0 4px 20px rgba(0,0,0,0.5);
  transition: transform .2s, box-shadow .2s;
  z-index: 2;
}
.guru-card:hover .g-play { transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 0 0 12px rgba(212,175,55,0.3), 0 4px 24px rgba(0,0,0,0.5); }
.guru-vid-label { position: absolute; top: 10px; left: 10px; background: rgba(255,0,0,0.85); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: 1px; padding: 3px 8px; border-radius: 4px; z-index: 2; }
.guru-info { padding: 14px 18px 18px; text-align: center; }
.guru-info strong { display: block; color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.guru-info span { font-size: .82rem; color: var(--orange); opacity: .9; }

/* Student grid */
.student-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; margin-bottom: 36px; }
.vcard { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--card); border: 1px solid rgba(212,175,55,0.1); transition: transform .25s, box-shadow .25s, border-color .25s; }
.vcard:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(212,175,55,0.15); border-color: var(--orange); }
.vcard img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.vplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%); background: var(--orange); color: #111; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; padding-left: 3px; transition: transform .2s; }
.vcard:hover .vplay { transform: translate(-50%,-58%) scale(1.1); }
.vinfo { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(0deg,rgba(0,0,0,0.8) 0%,transparent 100%); color: var(--white); font-size: .82rem; font-weight: 600; }

/* ── PRICING ── */
.price-card {
  max-width: 520px; margin: 0 auto;
  background: linear-gradient(160deg, #0d1560, #1a237e);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 44px 36px; text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: box-shadow .3s, transform .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(0,0,0,0.5); }
.price-badge { position: absolute; top: -1px; right: 24px; background: var(--orange); color: #111; font-size: .7rem; font-weight: 800; letter-spacing: 2px; padding: 5px 14px; border-radius: 0 0 8px 8px; }
.price-amt { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.pc { font-size: 2rem; font-weight: 700; color: var(--orange); }
.pa { font-size: 6rem; font-weight: 900; color: #111; line-height: 1; letter-spacing: -2px; background: var(--orange); padding: 4px 20px 8px; border-radius: 12px; display: inline-block; }
.po { font-size: 1.1rem; color: var(--grey); align-self: center; }
.price-note { color: var(--orange); font-size: .85rem; margin-bottom: 24px; }
.price-feats { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-feats li { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: .95rem; }
.price-feats li span { color: var(--orange); font-weight: 700; }

/* ── GUARANTEE ── */
.gbox { display: flex; align-items: flex-start; gap: 22px; flex-wrap: wrap; background: var(--card); border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); padding: 30px; box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.gi { font-size: 3.5rem; flex-shrink: 0; }
.gt h3 { color: var(--orange); margin-bottom: 8px; font-size: 1.2rem; font-weight: 800; }
.gt p { color: var(--grey); font-size: .95rem; }
.gt p strong { color: var(--orange); }
.gp { margin-top: 8px; color: var(--white) !important; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item { border-radius: var(--rsm); overflow: hidden; }
.faq-q { width: 100%; background: linear-gradient(135deg,#1a237e,#151c6e); border: 1px solid rgba(212,175,55,0.3); color: var(--white); text-align: left; padding: 18px 22px; font-size: .97rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s, border-color .2s, box-shadow .2s; border-radius: var(--rsm); font-family: inherit; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.faq-q:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.faq-q span { font-size: 1.3rem; color: var(--orange); transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-q { background: linear-gradient(135deg,#233090,#1a267e); border-color: var(--orange); border-bottom-color: transparent; border-radius: var(--rsm) var(--rsm) 0 0; }
.faq-item.active .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: rgba(26,35,126,0.6); border: 1px solid var(--orange); border-top: none; border-radius: 0 0 var(--rsm) var(--rsm); }
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { padding: 16px 22px; color: rgba(255,255,255,0.85); font-size: .93rem; line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 90px 0;
  background: var(--bg2);
  text-align: center;
}
.final-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #D4AF37, #F0C040);
  padding: 80px 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.final-cta h2 { color: #111; font-weight: 700; }
.final-cta p { color: rgba(0,0,0,0.75); font-size: 1rem; }
.blink-text { font-size: .85rem; font-weight: 700; color: #111; animation: blink 1.2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.shake-icon { font-size: 2.8rem; display: inline-block; animation: shake 1s infinite; }
@keyframes shake { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-14deg); } 75% { transform: rotate(14deg); } }

/* ── FOOTER ── */
.footer { background: #0f1760; padding: 32px 24px 20px; text-align: center; border-top: 1px solid rgba(212,175,55,0.25); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 20px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.f-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.f-name { display: block; font-size: 1rem; font-weight: 800; color: var(--orange); letter-spacing: 2px; }
.footer-brand p { font-size: .8rem; color: var(--grey); }
.f-phone { color: var(--grey); font-size: .88rem; transition: color .2s; }
.f-phone:hover { color: var(--orange); }
.f-copy { font-size: .8rem; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(212,175,55,0.2); padding-top: 16px; max-width: 1100px; margin: 0 auto; }

/* ── SCROLL REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Show sticky CTA on all screens */
.mob-sticky { display: flex; }
body { padding-bottom: 74px; }

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: 1.5rem; letter-spacing: 0; }
  .hero-hook { font-size: 14px; }
  .hero-sub { font-size: .9rem; padding: 10px 14px; }
  .hero-trust { font-size: .8rem; }
  .hero-vid-center { max-width: 100%; }
  /* Features */
  .feature-box { flex: 0 0 100%; }
  .features-label { font-size: 15px; }
  /* Trainer */
  .trainer-img { height: auto; max-height: 250px; }
  .trainer-pts { gap: 10px; }
  /* Stats */
  .sn { font-size: 2rem; }
  /* Final CTA */
  .final-wrap { padding: 40px 20px; }
  .final-cta h2 { font-size: 1.3rem; }
  /* Sections */
  .sec-primary, .sec-dark { padding: 60px 0; }
  /* Circle */
  .circle-container { width: 260px; height: 260px; }
  .circle-item { width: 78px; height: 78px; font-size: .65rem; }
  .circle-item strong { font-size: .62rem; }
  .circle-item p { display: none; }
  .ci-ic { font-size: 18px; }
  .circle-center { width: 68px; height: 68px; font-size: 16px; }
  /* Who side text */
  .who-side { width: 100%; text-align: center; font-size: 13px; }
  /* Guarantee */
  .gbox { flex-direction: column; gap: 14px; padding: 22px; }
  /* FAQ */
  .faq-q { font-size: .88rem; }
  /* Wrap padding */
  .wrap { padding: 0 16px; }
  /* Hide cursor glow & floating shapes on mobile */
  #cursorGlow { display: none; }
  .float-shape { display: none; }
  /* Price */
  .price-card { padding: 30px 18px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.3rem; }
  .circle-container { width: 220px; height: 220px; }
  .circle-item { width: 66px; height: 66px; }
  .circle-center { width: 58px; height: 58px; font-size: 14px; }
}

@media (min-width: 481px) and (max-width: 767px) {
  .feature-box { flex: 0 0 calc(50% - 8px); }
  .final-wrap { padding: 50px 28px; }
  .circle-container { width: 320px; height: 320px; }
  .circle-item { width: 90px; height: 90px; }
  .circle-center { width: 80px; height: 80px; }
}

@media (min-width: 560px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1.2fr; }
  .cur-wrap { grid-template-columns: 1.3fr 0.7fr; }
  .trainer-grid { grid-template-columns: 1.2fr 1fr; }
  .gbox { flex-wrap: nowrap; }
  .wrap { padding: 0 24px; }
  #cursorGlow { display: none !important; }
  .float-shape { display: block; }
}

@media (min-width: 1024px) { .hero { padding: 70px 0 90px; } }
