/* ═══════════════════════════════════════════════════════════════
   WOSETECH ACADEMY — Premium UI v2
   Perfect spacing · Advanced design system · World-class finish
   ═══════════════════════════════════════════════════════════════ */

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

/* ════════════ DESIGN TOKENS ════════════ */
:root {
  /* Brand */
  --primary:      #4F46E5;
  --primary-dk:   #3730A3;
  --primary-mid:  #818CF8;
  --primary-lt:   #EEF2FF;

  --accent:       #F97316;
  --accent-dk:    #EA580C;
  --accent-lt:    #FFF7ED;
  --accent-mid:   #FED7AA;

  --violet:       #7C3AED;
  --violet-lt:    #F5F3FF;
  --blue:         #0EA5E9;
  --blue-lt:      #F0F9FF;
  --green:        #16A34A;
  --green-lt:     #F0FDF4;
  --teal:         #0D9488;
  --teal-lt:      #F0FDFA;
  --rose:         #E11D48;
  --rose-lt:      #FFF1F2;
  --amber:        #D97706;
  --amber-lt:     #FFFBEB;

  /* Neutrals */
  --navy:         #0F172A;
  --slate:        #1E293B;
  --text:         #0F172A;
  --text-2:       #334155;
  --text-3:       #64748B;
  --text-4:       #94A3B8;
  --white:        #FFFFFF;
  --surface:      #FAFBFF;
  --surface-2:    #F1F5FF;
  --border:       #E2E8F0;
  --border-lt:    #F1F5F9;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(15,23,42,.05),0 1px 2px rgba(15,23,42,.03);
  --shadow-sm:  0 4px 16px rgba(15,23,42,.07);
  --shadow-md:  0 12px 32px rgba(15,23,42,.09);
  --shadow-lg:  0 24px 60px rgba(15,23,42,.11);
  --shadow-xl:  0 40px 96px rgba(15,23,42,.14);
  --shadow-primary: 0 8px 28px rgba(79,70,229,.22);
  --shadow-accent:  0 8px 28px rgba(249,115,22,.28);

  /* Radii */
  --r-xs: 6px;  --r-sm: 10px; --r-md: 16px;
  --r-lg: 22px; --r-xl: 32px; --r-full: 9999px;

  /* Spacing scale (8px base) */
  --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px;
  --sp-5:20px; --sp-6:24px; --sp-8:32px; --sp-10:40px;
  --sp-12:48px; --sp-16:64px; --sp-20:80px; --sp-24:96px;

  /* Section padding */
  --sec: clamp(52px,6vw,84px);

  /* Announcement bar removed — kept as 0 rather than deleting the var, since
     nav/hero/sticky offsets throughout this file still reference it via calc() */
  --bar-h: 0px;

  /* Transitions */
  --ease:        cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t:    all .4s var(--ease);
  --t-sm: all .22s var(--ease);
}

/* ════════════ BASE ════════════ */
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
/* Anchor scroll offset for sticky header */
section[id], div[id] { scroll-margin-top:calc(var(--bar-h) + 72px + 8px); }
body {
  font-family:'Plus Jakarta Sans','Inter',system-ui,sans-serif;
  font-size:16px; line-height:1.65; color:var(--text);
  background:var(--white); overflow-x:hidden;
}
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
button { border:none; cursor:pointer; background:none; font-family:inherit; }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--surface); }
::-webkit-scrollbar-thumb { background:var(--primary); border-radius:2px; }

/* ════════════ LAYOUT ════════════ */
.sw { width:90%; max-width:1240px; margin:0 auto; }

/* ════════════ TYPE SCALE (6 steps) ════════════
   xs:   11px — badge labels, eyebrows, tiny UI
   sm:   13px — secondary text, captions, nav
   base: 15px — body, card descriptions
   md:   17px — card titles, emphasis
   lg:   20px — panel headings
   xl:   clamp(28px,3.5vw,40px) — section headings
   2xl:  clamp(44px,7vw,80px) — hero typewriter
═══════════════════════════════════════════════ */
.eyebrow {
  display:inline-flex; align-items:center; gap:7px;
  background:linear-gradient(135deg,var(--primary-lt),rgba(245,243,255,.8));
  color:var(--primary);
  padding:7px 18px; border-radius:var(--r-full);
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  border:1px solid rgba(79,70,229,.2);
  box-shadow:0 1px 4px rgba(79,70,229,.1), inset 0 1px 0 rgba(255,255,255,.8);
  margin-bottom:18px;
}
.eyebrow-light { background:rgba(255,255,255,.12); color:rgba(255,255,255,.9); border-color:rgba(255,255,255,.2); }
.eyebrow-accent { background:var(--accent-lt); color:var(--accent); border-color:var(--accent-mid); }

.sh {
  font-size:clamp(26px,3vw,40px); font-weight:900;
  line-height:1.08; color:var(--text); letter-spacing:-.9px;
  margin-bottom:14px;
  font-feature-settings:'ss01','kern';
}
.sh em {
  font-style:italic; font-family:'Playfair Display',serif;
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  text-decoration:underline; text-decoration-color:rgba(124,58,237,.25);
  text-underline-offset:6px; text-decoration-thickness:2px;
}
.sh-white    { color:#fff; }
.sh-white em {
  background:linear-gradient(135deg,#FCD34D,#F59E0B);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  text-decoration-color:rgba(252,211,77,.3);
}
.sp {
  font-size:15.5px; line-height:1.8; color:var(--text-3); font-weight:400;
}

/* ════════════ SECTION HEADER ════════════ */
.sec-header { text-align:center; max-width:640px; margin:0 auto 48px; }
.sec-header::after {
  content:''; display:block; width:52px; height:3px; margin:20px auto 0;
  background:linear-gradient(90deg,var(--primary),var(--violet),var(--primary));
  background-size:200%; animation:bar-shimmer 4s linear infinite;
  border-radius:2px;
}
/* Left-aligned variant (e.g. FAQ) — anchor the bar left */
.sec-header[style*="text-align:left"]::after { margin-left:0; }

/* ════════════ SECTION RHYTHM ════════════ */
.sec-white  { background:var(--white); }
.sec-soft   { background:var(--surface); }
.sec-dark   { background:var(--navy); }
.sec-grad   { background:linear-gradient(135deg,var(--primary-dk),var(--primary),var(--violet)); }

/* ════════════ DIVIDERS ════════════ */
.sec-div {
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border),transparent);
  margin:0;
}
.sec-div-accent {
  height:2px;
  background:linear-gradient(90deg,var(--primary),var(--violet),var(--accent));
  opacity:.15;
}

/* ════════════ PROGRESS BAR ════════════ */
#progress-bar {
  position:fixed; top:0; left:0; width:0%; height:3px; z-index:9999;
  background:linear-gradient(90deg,var(--primary),var(--accent),var(--violet));
  background-size:200%; animation:bar-shimmer 2s linear infinite;
  transition:width .1s linear; box-shadow:0 0 10px rgba(79,70,229,.4);
}
@keyframes bar-shimmer{0%{background-position:100%}100%{background-position:-100%}}

@keyframes pulse-g{0%,100%{box-shadow:0 0 0 3px rgba(134,239,172,.25)}50%{box-shadow:0 0 0 6px rgba(134,239,172,.08)}}

/* ════════════ NAV DOTS ════════════ */
#nav-dots {
  position:fixed; right:20px; top:50%; transform:translateY(-50%);
  z-index:500; display:flex; flex-direction:column; gap:10px;
}
.nav-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(15,23,42,.12); border:1.5px solid rgba(15,23,42,.18);
  cursor:pointer; transition:var(--t); position:relative;
}
.nav-dot.active { background:var(--primary); border-color:var(--primary-dk); transform:scale(1.6); box-shadow:0 0 8px rgba(79,70,229,.4); }
.nav-dot::after {
  content:attr(data-label); position:absolute; right:18px; top:50%; transform:translateY(-50%);
  background:var(--navy); color:#fff; font-size:10px; font-weight:700;
  padding:4px 10px; border-radius:5px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s;
}
.nav-dot:hover::after { opacity:1; }

/* ════════════ NAVBAR ════════════ */
#navbar {
  position:fixed; left:0; right:0; z-index:1000;
  top:var(--bar-h);
  height:72px; padding:0 4%;
  display:flex; align-items:center; justify-content:space-between;
  background:
    linear-gradient(180deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.94) 100%);
  backdrop-filter:blur(24px) saturate(1.6);
  -webkit-backdrop-filter:blur(24px) saturate(1.6);
  box-shadow:0 1px 0 rgba(226,232,240,.7);
  transition:top .35s var(--ease), box-shadow .3s, height .3s var(--ease);
}
#navbar::after {
  content:''; position:absolute; left:0; right:0; bottom:-1.5px; height:1.5px;
  background:linear-gradient(90deg,transparent 0%,rgba(79,70,229,.4) 20%,rgba(124,58,237,.5) 50%,rgba(236,72,153,.4) 80%,transparent 100%);
  pointer-events:none;
}
#navbar.scrolled { box-shadow:0 4px 24px rgba(15,23,42,.08); height:64px; }

.nav-logo { display:flex; align-items:center; flex-shrink:0; position:relative; transition:var(--t-sm); }
.nav-logo::before {
  content:''; position:absolute; inset:-8px; border-radius:16px;
  background:radial-gradient(circle,rgba(79,70,229,.14) 0%,transparent 70%);
  opacity:0; transition:opacity .3s; pointer-events:none;
}
.nav-logo:hover::before { opacity:1; }
.nav-logo:hover .nav-logo-img { transform:scale(1.04); }
.nav-logo-img { height:54px; width:auto; display:block; object-fit:contain; max-width:220px; position:relative; transition:transform .3s var(--ease); }
.nav-logo-icon {
  width:44px; height:44px; border-radius:11px;
  background:linear-gradient(135deg,var(--primary),var(--violet));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:19px; flex-shrink:0;
  box-shadow:0 4px 16px rgba(79,70,229,.32);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-logo:hover .nav-logo-icon {
  transform:rotate(-6deg) scale(1.06);
  box-shadow:0 6px 22px rgba(79,70,229,.44);
}
.nav-brand-text { display:flex; flex-direction:column; gap:1px; }
.nav-brand-name { font-size:18px; font-weight:900; color:var(--text); line-height:1.2; letter-spacing:-.5px; }
.nav-brand-name em { font-style:normal; color:var(--primary); }
.nav-brand-sub  {
  font-size:11px; color:var(--text-3); font-weight:600; letter-spacing:.4px;
  display:flex; align-items:center; gap:5px;
}
.nav-brand-sub::before {
  content:''; display:inline-block; width:5px; height:5px;
  border-radius:50%; background:var(--accent); flex-shrink:0;
}

.nav-center { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-center li a {
  position:relative;
  padding:7px 13px; border-radius:var(--r-xs);
  font-size:14px; font-weight:600; color:var(--text-3);
  transition:color .25s var(--ease);
}
.nav-center li a:hover { color:var(--primary); }

.nav-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-demo-btn {
  padding:8px 16px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; color:var(--primary);
  border:1.5px solid var(--primary-mid); transition:var(--t-sm);
  display:flex; align-items:center; gap:6px;
}
.nav-demo-btn:hover { background:var(--primary-lt); }
.nav-enquire-btn {
  position:relative; overflow:hidden;
  padding:8px 17px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; color:var(--primary-dk);
  border:1.5px solid rgba(79,70,229,.22);
  background:linear-gradient(135deg,rgba(79,70,229,.06),rgba(124,58,237,.06));
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  display:flex; align-items:center; gap:6px;
  cursor:pointer; font-family:inherit; transition:var(--t-sm);
  text-decoration:none;
}
.nav-enquire-btn:hover {
  background:linear-gradient(135deg,rgba(79,70,229,.12),rgba(124,58,237,.12));
  border-color:rgba(79,70,229,.4); transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(79,70,229,.12);
}
.nav-cta-btn {
  position:relative; overflow:hidden;
  padding:10px 20px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; color:#fff;
  background:linear-gradient(135deg,var(--primary) 0%,var(--violet) 60%,#EC4899 130%);
  background-size:180% auto;
  display:flex; align-items:center; gap:6px;
  box-shadow:var(--shadow-primary); transition:transform .25s var(--ease), box-shadow .25s var(--ease), background-position .5s var(--ease);
}
.nav-cta-btn::after {
  content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
  animation:btn-shimmer 3.2s ease-in-out infinite 1.5s; pointer-events:none;
}
.nav-cta-btn:hover { transform:translateY(-2px); box-shadow:0 14px 36px rgba(79,70,229,.36); background-position:right center; }

/* ── HAMBURGER ── */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:7px; border-radius:var(--r-xs); }
.hamburger span { display:block; width:21px; height:2px; background:var(--text); border-radius:2px; transition:var(--t); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mobile-menu {
  position:fixed; left:0; right:0; z-index:999;
  top:calc(var(--bar-h) + 72px);
  background:var(--white); border-bottom:1px solid var(--border);
  padding:16px 5%; display:flex; flex-direction:column; gap:3px;
  transform:translateY(-110%); opacity:0;
  transition:transform .4s var(--ease), opacity .3s;
  box-shadow:var(--shadow-md);
}
#mobile-menu.open { transform:translateY(0); opacity:1; }
#mobile-menu a {
  padding:13px 14px; border-radius:var(--r-sm);
  font-size:14.5px; font-weight:600; color:var(--text-2);
  display:flex; align-items:center; gap:9px; transition:var(--t-sm);
  min-height:44px;
}
#mobile-menu a i { width:18px; color:var(--text-4); }
#mobile-menu a:hover { color:var(--primary); background:var(--primary-lt); }
#mobile-menu .mm-demo    { color:var(--primary); background:var(--primary-lt); border:1px solid var(--primary-mid); margin-top:6px; }
#mobile-menu .mm-wa      { color:var(--green); background:var(--green-lt); }
#mobile-menu .mm-enquire {
  width:100%; padding:11px 14px; border-radius:var(--r-sm);
  font-size:14.5px; font-weight:600; color:#D97706;
  background:rgba(251,191,36,.1); border:1px solid #FDE68A;
  display:flex; align-items:center; gap:9px;
  cursor:pointer; font-family:inherit; transition:var(--t-sm); margin-top:6px;
  text-decoration:none;
}
#mobile-menu .mm-enquire:hover { background:rgba(251,191,36,.2); }
#mobile-menu .mm-enquire i { width:18px; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  position:relative; min-height:auto;
  padding-top:calc(var(--bar-h) + 72px + 48px);
  padding-bottom:64px;
  display:flex; align-items:center;
  background:
    radial-gradient(ellipse 75% 55% at 15% -8%,  rgba(79,70,229,.14) 0%,transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 22%,  rgba(124,58,237,.10) 0%,transparent 55%),
    radial-gradient(ellipse 40% 55% at 5%  88%,  rgba(14,165,233,.08) 0%,transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 95%,  rgba(249,115,22,.06) 0%,transparent 55%),
    linear-gradient(160deg,#F0F2FF 0%,#FFFFFF 38%,#FFFCF8 70%,#F4F7FF 100%);
}
.hero-bg { position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
#hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:80px;
  background:linear-gradient(to bottom,transparent,rgba(248,249,252,.8));
  pointer-events:none; z-index:0;
}
.hero-orb { position:absolute; border-radius:50%; filter:blur(70px); }
.hero-orb-1 { width:560px; height:560px; background:radial-gradient(circle,rgba(79,70,229,.14) 0%,transparent 70%); top:-80px; right:-60px; }
.hero-orb-2 { width:380px; height:380px; background:radial-gradient(circle,rgba(249,115,22,.10) 0%,transparent 70%); bottom:20px; left:38%; }
.hero-orb-3 { width:300px; height:300px; background:radial-gradient(circle,rgba(124,58,237,.10) 0%,transparent 70%); top:35%; left:-40px; }
.hero-orb-4 { width:320px; height:320px; background:radial-gradient(circle,rgba(14,165,233,.07) 0%,transparent 70%); bottom:-60px; right:25%; }
.hero-orb-5 { width:200px; height:200px; background:radial-gradient(circle,rgba(16,185,129,.06) 0%,transparent 70%); top:20%; left:42%; }
.hero-grid-pattern {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(79,70,229,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(79,70,229,.05) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:radial-gradient(ellipse 100% 100% at 70% 40%,black 20%,transparent 80%);
}
/* Blurred backdrop layer — fills the box completely, hides the video's
   own edges under blur so the crop from object-fit:cover never reads as
   "cut off". Sits behind the real, fully-uncropped video. */
.hero-video-blur {
  position:absolute; inset:-5%; width:110%; height:110%;
  object-fit:cover; object-position:center;
  filter:blur(35px) brightness(.9) saturate(1.15);
  transform:scale(1.05) translateZ(0);
  z-index:0; pointer-events:none;
  will-change:auto;
}
/* Real video — object-fit:contain guarantees the entire frame is always
   visible, zero cropping, regardless of hero aspect ratio. */
.hero-video {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:contain; object-position:center;
  z-index:0; pointer-events:none;
}
/* Text-side wash: keeps the left column (headline/CTAs) legible without
   flattening the video everywhere — right side (photo panel) stays crisp. */
.hero-video-scrim {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(100deg,
    rgba(244,246,255,.93) 0%,
    rgba(244,246,255,.88) 22%,
    rgba(244,246,255,.62) 42%,
    rgba(244,246,255,.28) 60%,
    rgba(244,246,255,.12) 78%,
    rgba(244,246,255,.08) 100%);
}

#hero-sound-toggle {
  position:absolute; z-index:2;
  right:calc(5% + 20px); bottom:96px;
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(15,23,42,.55); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  color:#fff; border:1px solid rgba(255,255,255,.18);
  font-size:12.5px; font-weight:700; font-family:inherit;
  padding:9px 16px; border-radius:var(--r-full);
  cursor:pointer; transition:var(--t-sm);
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}
#hero-sound-toggle:hover { background:rgba(15,23,42,.72); transform:translateY(-2px); }
#hero-sound-toggle.is-unmuted { background:rgba(79,70,229,.85); border-color:rgba(255,255,255,.3); }
#hero-sound-toggle i { font-size:13px; }
@media (max-width:1280px) { #hero-sound-toggle { bottom:80px; } }
@media (max-width:768px)  { #hero-sound-toggle { right:16px; bottom:24px; font-size:11.5px; padding:8px 13px; } }

.hero-inner {
  position:relative; z-index:1; width:100%;
  display:grid; grid-template-columns:1fr 420px;
  gap:40px; align-items:start;
}

/* Content — left column */
.hero-content {
  display:flex; flex-direction:column; gap:20px;
  width:100%; align-items:flex-start; text-align:left;
}

.hero-eyebrow { display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-start; }
.heb-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(79,70,229,.1); color:var(--primary-dk);
  padding:6px 14px; border-radius:var(--r-full);
  font-size:11px; font-weight:700; letter-spacing:.5px;
  border:1px solid rgba(79,70,229,.25);
}
.heb-sep { width:1px; height:14px; background:var(--border); }
.heb-text { font-size:11.5px; color:var(--text-3); font-weight:600; }

.hero-title {
  color:var(--text); display:flex; flex-direction:column; gap:10px;
}
.ht-label {
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; font-weight:700; letter-spacing:.3px; text-transform:none;
  color:var(--primary-dk);
  background:linear-gradient(135deg,#EEF2FF,#E0E7FF);
  border:1.5px solid rgba(79,70,229,.28);
  padding:7px 16px; border-radius:var(--r-full);
  margin-bottom:2px; width:fit-content;
  box-shadow:0 2px 8px rgba(79,70,229,.08),inset 0 1px 0 rgba(255,255,255,.7);
}
.ht-label i { font-size:11px; color:var(--primary); }
.ht-tw {
  font-size:clamp(38px,5vw,64px); font-weight:900; line-height:1.0;
  letter-spacing:-2.5px;
  display:flex; align-items:baseline; gap:2px;
}
.ht-sub {
  font-size:clamp(20px,2.2vw,30px); font-weight:800; line-height:1.15;
  letter-spacing:-0.5px; color:var(--text-2); display:block;
}
.ht-accent { color:var(--primary); }
.hero-title em {
  font-style:italic; font-family:'Playfair Display',serif;
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.tw-wrap { display:inline-flex; align-items:baseline; gap:3px; }
.tw-text {
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  font-style:italic; font-family:'Playfair Display',serif;
}
.tw-cursor { display:inline-block; color:var(--primary); font-weight:300; font-size:.8em; animation:blink-c .8s step-end infinite; margin-left:1px; }
@keyframes blink-c{0%,100%{opacity:1}50%{opacity:0}}

.hero-sub { font-size:16px; line-height:1.76; color:var(--text-2); max-width:640px; font-weight:400; text-align:left; }

.hero-ctas { display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-start; }
.btn-primary-hero {
  display:inline-flex; align-items:center; gap:9px;
  padding:14px 28px; border-radius:var(--r-full);
  background:linear-gradient(135deg,#FF8C00,var(--accent),var(--accent-dk));
  background-size:200% auto;
  color:#fff; font-size:15px; font-weight:800;
  box-shadow:0 8px 32px rgba(249,115,22,.35),0 0 0 0 rgba(249,115,22,.4);
  transition:var(--t); position:relative; overflow:hidden;
  animation:btn-pulse 3s ease-in-out infinite 2s;
}
.btn-primary-hero::after {
  content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  animation:btn-shimmer 3.5s ease-in-out infinite 1s; pointer-events:none;
}
.btn-primary-hero:hover {
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 20px 48px rgba(249,115,22,.45);
  background-position:right center;
}
@keyframes btn-shimmer { 0%{left:-80%} 100%{left:140%} }
@keyframes btn-pulse { 0%,100%{box-shadow:0 8px 32px rgba(249,115,22,.35),0 0 0 0 rgba(249,115,22,.4)} 50%{box-shadow:0 8px 32px rgba(249,115,22,.35),0 0 0 8px rgba(249,115,22,.0)} }

.btn-outline-hero {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 24px; border-radius:var(--r-full);
  border:none; color:var(--primary);
  font-size:15px; font-weight:700; transition:var(--t);
  background:var(--white);
  cursor:pointer; font-family:inherit;
  position:relative;
  box-shadow:0 0 0 2px var(--primary), inset 0 1px 0 rgba(255,255,255,.9);
}
.btn-outline-hero:hover {
  background:var(--primary-lt); transform:translateY(-2px);
  box-shadow:0 0 0 2px var(--primary-dk), 0 8px 24px rgba(79,70,229,.18), inset 0 1px 0 rgba(255,255,255,.9);
  color:var(--primary-dk);
}

.hero-wa-link { display:inline-flex; align-items:center; gap:10px; }
.wa-icon-wrap {
  width:36px; height:36px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; flex-shrink:0; transition:var(--t);
}
.hero-wa-link:hover .wa-icon-wrap { transform:scale(1.1); }
.wa-text { font-size:14px; font-weight:700; color:var(--green); display:block; }
.wa-sub  { font-size:12px; color:var(--text-4); display:block; line-height:1; margin-top:2px; }

.hero-trust { display:flex; align-items:center; gap:8px; flex-wrap:wrap; padding-top:2px; justify-content:flex-start; }
.ht-chip {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.92); border:1.5px solid rgba(79,70,229,.12);
  border-radius:var(--r-full); padding:7px 14px;
  font-size:12px; font-weight:700; color:var(--text-2);
  backdrop-filter:blur(8px); transition:var(--t-sm);
  box-shadow:0 2px 8px rgba(79,70,229,.06),0 1px 2px rgba(15,23,42,.04);
}
.ht-chip i { color:var(--primary); font-size:11.5px; }
.ht-chip:hover { border-color:rgba(79,70,229,.28); background:var(--primary-lt); color:var(--primary-dk); transform:translateY(-1px); box-shadow:0 4px 14px rgba(79,70,229,.1); }
.ht-sep  { width:4px; height:4px; border-radius:50%; background:var(--border); }

/* ── Hero Visual — Premium Enrollment Panel ── */
.hero-visual {
  position:relative;
  filter:drop-shadow(0 32px 64px rgba(79,70,229,.16));
}

.hv-panel {
  background:#fff;
  border:1.5px solid rgba(79,70,229,.14);
  border-radius:20px;
  box-shadow:
    0 2px 4px rgba(15,23,42,.04),
    0 12px 36px rgba(79,70,229,.11),
    0 36px 72px rgba(15,23,42,.07);
  overflow:hidden;
  animation:hv-float 6s ease-in-out infinite;
}
@keyframes hv-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* top accent bar */
.hv-panel::before {
  content:''; display:block; height:5px;
  background:linear-gradient(90deg,var(--primary),var(--violet),#0EA5E9,var(--primary));
  background-size:200%;
  animation:bar-shimmer 3s linear infinite;
}

.hv-panel-top { padding:20px 22px 16px; }

.hv-live-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(22,163,74,.09); color:#15803D;
  border:1px solid rgba(22,163,74,.22); border-radius:var(--r-full);
  font-size:11.5px; font-weight:700; padding:5px 12px;
  margin-bottom:14px;
  box-shadow:0 2px 12px rgba(22,163,74,.1);
}
.hv-live-dot {
  width:8px; height:8px; border-radius:50%; background:#22C55E; flex-shrink:0;
  box-shadow:0 0 0 3px rgba(34,197,94,.25);
  animation:pulse-g 2s infinite;
}

.hv-stats-row {
  display:flex; align-items:center; justify-content:space-between;
  background:linear-gradient(135deg,var(--primary-lt) 0%,rgba(248,250,255,1) 100%);
  border:1px solid rgba(79,70,229,.1);
  border-radius:14px; padding:12px 14px;
}
.hv-stat { text-align:center; flex:1; }
.hv-stat-val { font-size:20px; font-weight:900; color:var(--primary-dk); line-height:1; letter-spacing:-.5px; }
.hv-stat-lbl { font-size:10.5px; font-weight:600; color:var(--text-4); margin-top:3px; text-transform:uppercase; letter-spacing:.5px; }
.hv-stat-div { width:1px; height:36px; background:var(--border); flex-shrink:0; }

.hv-divider { height:1px; background:var(--border-lt); margin:0; }

.hv-panel-body { padding:16px 22px; }
.hv-body-label {
  display:flex; align-items:center; gap:7px;
  font-size:10.5px; font-weight:800; color:var(--text-4);
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.hv-body-label i { color:var(--primary); font-size:11px; }

.hv-course-list { list-style:none; display:flex; flex-direction:column; gap:9px; }
.hv-course-list li {
  display:flex; align-items:center; gap:9px;
  font-size:13.5px; font-weight:700; color:var(--text);
}
.hv-check {
  width:22px; height:22px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:10px; color:#fff;
}
.hv-c-violet { background:linear-gradient(135deg,#5B21B6,#7C3AED); }
.hv-c-blue   { background:#1877F2; }
.hv-c-red    { background:linear-gradient(135deg,#4285F4,#EA4335); }
.hv-c-green  { background:linear-gradient(135deg,#059669,#16A34A); }
.hv-course-list li span:nth-child(2) { flex:1; }
.hv-tag {
  font-size:9.5px; font-weight:800; padding:2px 8px;
  border-radius:var(--r-full); letter-spacing:.3px; white-space:nowrap;
}
.hv-t-hot    { background:linear-gradient(135deg,#F97316,#EA580C); color:#fff; border:none; box-shadow:0 1px 5px rgba(234,88,12,.3); }
.hv-t-demand { background:linear-gradient(135deg,#3B82F6,#2563EB); color:#fff; border:none; box-shadow:0 1px 5px rgba(37,99,235,.3); }
.hv-t-new    { background:linear-gradient(135deg,#16A34A,#15803D); color:#fff; border:none; box-shadow:0 1px 5px rgba(21,128,61,.3); }

.hv-panel-footer { padding:16px 22px 22px; }
.hv-wa-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:12px; border-radius:12px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff; font-size:14px; font-weight:800;
  transition:var(--t-sm); margin-bottom:10px;
  box-shadow:0 4px 18px rgba(37,211,102,.28);
}
.hv-wa-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.38); }
.hv-wa-btn i { font-size:18px; }

.hv-trust-row {
  display:flex; align-items:center; justify-content:center; gap:20px;
  font-size:11.5px; font-weight:600; color:var(--text-4);
  margin-top:14px;
}
.hv-trust-row span { display:flex; align-items:center; gap:5px; }
.hv-trust-row i { color:var(--primary); font-size:11px; }

/* Decorative blobs */
.hv-blob { position:absolute; border-radius:50%; pointer-events:none; z-index:0; }
.hv-b1 { width:220px; height:220px; top:-70px; right:-60px; background:radial-gradient(circle,rgba(79,70,229,.06) 0%,transparent 70%); }
.hv-b2 { width:170px; height:170px; bottom:20px; left:-50px; background:radial-gradient(circle,rgba(124,58,237,.05) 0%,transparent 70%); }

/* Bring all content above blobs */
.hv-header,.hv-tracks,.hv-tools-section,.hv-divider,.hv-cert-row { position:relative; z-index:1; }

.hv-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.hv-h-info  { display:flex; align-items:center; gap:9px; }
.hv-pulse-dot {
  width:9px; height:9px; border-radius:50%; background:#22C55E;
  box-shadow:0 0 0 3px rgba(34,197,94,.2); animation:pulse-g 2s infinite; flex-shrink:0;
}
.hv-h-title { font-size:13.5px; font-weight:700; color:var(--text); line-height:1.2; }
.hv-h-sub   { font-size:10px; color:var(--text-4); font-weight:500; margin-top:2px; }
.hv-enrolled-pill {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(249,115,22,.08); color:var(--accent-dk);
  padding:4px 10px; border-radius:var(--r-full);
  font-size:10px; font-weight:700; border:1px solid rgba(249,115,22,.18); white-space:nowrap;
}
.hv-enrolled-pill i { font-size:9px; color:var(--accent); }

.hv-tracks { display:flex; flex-direction:column; gap:9px; margin-bottom:16px; }
.hv-track {
  display:flex; align-items:center; gap:10px;
  background:var(--surface); border:1px solid var(--border-lt);
  border-left:3px solid var(--primary);
  border-radius:var(--r-md); padding:11px 12px; transition:var(--t-sm);
}
.hv-track:nth-child(1) { border-left-color:#7C3AED; }
.hv-track:nth-child(2) { border-left-color:#1877F2; }
.hv-track:nth-child(3) { border-left-color:#EA4335; }
.hv-track:hover { background:var(--primary-lt); border-color:var(--primary-mid); }
.hv-t-icon {
  width:32px; height:32px; border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:#fff; flex-shrink:0;
}
.hv-t-purple { background:linear-gradient(135deg,#5B21B6,#7C3AED); }
.hv-t-blue   { background:#1877F2; }
.hv-t-red    { background:linear-gradient(135deg,#4285F4,#EA4335); }
.hv-track-body { flex:1; min-width:0; }
.hv-t-top    { display:flex; align-items:center; justify-content:space-between; margin-bottom:2px; }
.hv-t-name   { font-size:12.5px; font-weight:700; color:var(--text); line-height:1.2; }
.hv-t-detail { font-size:10px; color:var(--text-4); font-weight:500; margin-bottom:6px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hv-t-bar    { height:3px; background:var(--border); border-radius:2px; overflow:hidden; }
.hv-t-fill   { height:100%; width:var(--w); border-radius:2px; background:linear-gradient(90deg,#7C3AED,#4F46E5); animation:grow-bar 1.4s var(--ease) forwards; }
.hv-track:nth-child(2) .hv-t-fill { background:linear-gradient(90deg,#1877F2,#4267B2); }
.hv-track:nth-child(3) .hv-t-fill { background:linear-gradient(90deg,#4285F4,#EA4335); }
.hv-t-pct { font-size:11.5px; font-weight:800; color:var(--text-2); min-width:30px; text-align:right; flex-shrink:0; }

.hv-tools-section { margin-bottom:14px; }
.hv-tools-label { display:flex; align-items:center; gap:5px; font-size:10px; font-weight:700; color:var(--text-4); text-transform:uppercase; letter-spacing:.8px; margin-bottom:8px; }
.hv-tools-label i { font-size:9px; }
.hv-tools-grid { display:flex; align-items:center; flex-wrap:wrap; gap:6px; }
.hv-tool-badge {
  width:28px; height:28px; border-radius:7px;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; color:#fff; flex-shrink:0;
}
.hv-tb-fb { background:#1877F2; }
.hv-tb-ig { background:linear-gradient(135deg,#833AB4,#E1306C,#F77737); }
.hv-tb-wa { background:#25D366; }
.hv-tb-g  { background:linear-gradient(135deg,#4285F4 0%,#34A853 50%,#EA4335 100%); }
.hv-tb-yt { background:#FF0000; }
.hv-tool-text {
  padding:4px 10px; border-radius:var(--r-full);
  background:var(--surface-2); border:1px solid var(--border);
  font-size:10px; font-weight:700; color:var(--text-3);
}

.hv-divider { height:1px; background:var(--border-lt); margin:14px 0; }

.hv-cert-row {
  display:flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:var(--r-md);
  background:linear-gradient(135deg,rgba(245,158,11,.07),rgba(251,191,36,.04));
  border:1px solid rgba(245,158,11,.18);
}
.hv-cert-icon  { font-size:22px; color:#D97706; flex-shrink:0; }
.hv-cert-body  { flex:1; }
.hv-cert-title { font-size:12.5px; font-weight:700; color:var(--text); line-height:1.2; }
.hv-cert-sub   { font-size:10px; color:var(--text-4); font-weight:500; margin-top:2px; }
.hv-cert-check { font-size:18px; color:#22C55E; flex-shrink:0; }
@keyframes grow-bar{from{width:0}}

/* Floating pills */
.hero-pill {
  position:absolute; background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-full); padding:8px 14px;
  font-size:11.5px; font-weight:700; color:var(--text-2);
  box-shadow:var(--shadow-md); white-space:nowrap;
  display:flex; align-items:center; gap:6px; z-index:3;
}
.hero-pill i { color:var(--primary); font-size:12px; }
.pill-1 { top:-18px; left:16px; animation:fp1 4s ease-in-out infinite; }
.pill-2 { bottom:36px; right:-14px; animation:fp2 5s ease-in-out infinite; }
.pill-3 { top:44%; right:-14px; transform:translateY(-50%); animation:fp3 4.5s ease-in-out infinite; }
@keyframes fp1{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes fp2{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}
@keyframes fp3{0%,100%{transform:translateY(-50%)}50%{transform:translateY(calc(-50% - 7px))}}

/* Scroll hint */
.scroll-hint {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:2;
}
.scroll-line {
  width:1.5px; height:48px;
  background:linear-gradient(to bottom,var(--primary),rgba(124,58,237,.4),transparent);
  animation:scroll-a 2s ease-in-out infinite;
  border-radius:1px;
}
.scroll-hint span { font-size:9px; color:var(--text-4); font-weight:700; letter-spacing:2.5px; text-transform:uppercase; }
@keyframes scroll-a{0%,100%{opacity:1}50%{opacity:.3;transform:scaleY(.85)}}

/* ── Hero enhancements ─────────────────────── */

/* Live enrollment badge in eyebrow */
.heb-live {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(22,163,74,.13); color:#15803D;
  padding:5px 12px; border-radius:var(--r-full);
  font-size:11px; font-weight:700; letter-spacing:.4px;
  border:1.5px solid rgba(22,163,74,.35); flex-shrink:0;
}
.heb-live-dot {
  width:7px; height:7px; border-radius:50%; background:#22C55E; flex-shrink:0;
  animation:live-dot 2s ease-in-out infinite;
  box-shadow:0 0 0 3px rgba(34,197,94,.25);
}
@keyframes live-dot{0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,.25)}50%{box-shadow:0 0 0 6px rgba(34,197,94,.06)}}

/* Rating row */
.hero-rating {
  display:flex; align-items:center; gap:5px; flex-wrap:wrap; justify-content:flex-start;
}
.hr-stars { color:#FBBF24; font-size:14px; letter-spacing:1.5px; line-height:1; }
.hr-score { font-size:16px; font-weight:900; color:var(--text); }
.hr-div   { font-size:13px; color:var(--text-4); font-weight:500; }
.hr-sep   { color:var(--border); font-size:18px; padding:0 3px; line-height:1; }
.hr-count { font-size:13px; color:var(--text-3); font-weight:600; }

/* Hero-visual radial glow */
.hv-glow {
  position:absolute; inset:-60px; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse 65% 65% at 50% 50%,rgba(79,70,229,.11) 0%,rgba(124,58,237,.07) 40%,transparent 70%);
  animation:hv-glow-p 5s ease-in-out infinite;
}
@keyframes hv-glow-p{0%,100%{opacity:.7;transform:scale(1)}50%{opacity:1;transform:scale(1.07)}}

/* Orb float animations */
.hero-orb-1 { animation:orb-f1 9s ease-in-out infinite; }
.hero-orb-2 { animation:orb-f2 11s ease-in-out infinite; }
.hero-orb-3 { animation:orb-f3 7s ease-in-out infinite; }
@keyframes orb-f1{0%,100%{transform:translate(0,0)}50%{transform:translate(-18px,14px)}}
@keyframes orb-f2{0%,100%{transform:translate(0,0)}50%{transform:translate(14px,-12px)}}
@keyframes orb-f3{0%,100%{transform:translate(0,0)}50%{transform:translate(10px,18px)}}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background:linear-gradient(100deg,var(--primary-dk) 0%,var(--primary) 50%,var(--violet) 85%,#5B21B6 100%);
  padding:0; position:relative; z-index:2;
  overflow:hidden;
  box-shadow:0 4px 28px rgba(79,70,229,.28),inset 0 1px 0 rgba(255,255,255,.12);
}
.stats-bar::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
  pointer-events:none;
}
.stats-bar::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;
}
.stats-inner {
  display:flex; align-items:stretch; justify-content:space-evenly;
  min-height:96px; position:relative; z-index:1;
}
.stat-item {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:18px 12px; flex:1;
  position:relative;
}
.stat-item::after {
  content:''; position:absolute; right:0; top:18%; bottom:18%;
  width:1px; background:rgba(255,255,255,.14);
}
.stat-item:last-child::after { display:none; }
.stat-icon {
  font-size:18px; color:rgba(255,255,255,.5);
  margin-bottom:6px; line-height:1;
}
.stat-val { font-size:clamp(26px,3vw,38px); font-weight:900; color:#fff; line-height:1; letter-spacing:-1.5px; text-shadow:0 0 24px rgba(255,255,255,.2); }
.stat-lbl { font-size:11px; color:rgba(255,255,255,.65); font-weight:600; margin-top:7px; text-transform:uppercase; letter-spacing:.8px; }
.stat-sep { display:none; }

/* ════════════════════════════════════════
   COURSES
════════════════════════════════════════ */
#courses-old-unused {
  padding:var(--sec) 0;
  background-color:var(--surface);
  background-image:radial-gradient(rgba(79,70,229,.10) 1.2px,transparent 1.2px);
  background-size:24px 24px;
  position:relative; overflow:hidden;
}
.bg-text-mark {
  position:absolute; left:50%; transform:translateX(-50%);
  top:48px; font-size:clamp(56px,9vw,120px); font-weight:900;
  color:rgba(79,70,229,.035); letter-spacing:8px; text-transform:uppercase;
  pointer-events:none; user-select:none; white-space:nowrap; z-index:0;
}

/* ════════════════════════════════════════
   GLOBAL TRUST BAR
════════════════════════════════════════ */
.global-bar {
  background:#F0FDF4;
  border-top:1px solid #BBF7D0;
  border-bottom:1px solid #BBF7D0;
  padding:10px 0;
}
.global-bar-inner {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.gb-label {
  font-size:12px; font-weight:700; color:#15803D;
  display:flex; align-items:center; gap:5px; white-space:nowrap;
}
.gb-flags {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; flex:1;
}
.gb-flags span {
  font-size:12.5px; font-weight:600; color:#166534;
  background:#DCFCE7; padding:3px 10px; border-radius:999px;
  white-space:nowrap;
}
.gb-cta {
  font-size:11.5px; font-weight:700; color:#15803D;
  background:#BBF7D0; padding:4px 12px; border-radius:999px;
  white-space:nowrap; margin-left:auto;
}
@media(max-width:768px){
  .global-bar-inner { gap:8px; }
  .gb-cta { display:none; }
  .gb-flags span { font-size:11px; padding:2px 8px; }
}

.courses-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:20px; position:relative; z-index:1; }

/* ── Course Card ── */
.ccard {
  background:var(--white); border-radius:var(--r-lg);
  border:1px solid var(--border-lt); overflow:hidden;
  box-shadow:0 1px 3px rgba(15,23,42,.07),0 4px 14px rgba(15,23,42,.05),0 8px 28px rgba(79,70,229,.04);
  transition:var(--t);
  display:flex; flex-direction:column;
  opacity:0; transform:translateY(18px) scale(.97);
  position:relative; will-change:transform;
}
/* Top accent line per card */
.ccard[data-course="automation"]::before { content:''; display:block; height:4px; background:linear-gradient(90deg,#5B21B6,#4F46E5,#818CF8); background-size:200%; animation:bar-shimmer 4s linear infinite; }
.ccard[data-course="meta"]::before       { content:''; display:block; height:4px; background:linear-gradient(90deg,#0369A1,#2563EB,#60A5FA); background-size:200%; animation:bar-shimmer 4s linear infinite .5s; }
.ccard[data-course="google"]::before     { content:''; display:block; height:4px; background:linear-gradient(90deg,#B91C1C,#EA580C,#FB923C); background-size:200%; animation:bar-shimmer 4s linear infinite 1s; }
.ccard[data-course="excel"]::before      { content:''; display:block; height:4px; background:linear-gradient(90deg,#065F46,#059669,#34D399); background-size:200%; animation:bar-shimmer 4s linear infinite 1.5s; }
/* Per-card colored hover glow */
.ccard:hover { transform:translateY(-6px) scale(1.005); }
.ccard[data-course="automation"]:hover { box-shadow:0 8px 28px rgba(91,33,182,.14),0 24px 56px rgba(79,70,229,.11); border-color:rgba(91,33,182,.2); }
.ccard[data-course="meta"]:hover       { box-shadow:0 8px 28px rgba(24,119,242,.14),0 24px 56px rgba(37,99,235,.11); border-color:rgba(24,119,242,.2); }
.ccard[data-course="google"]:hover     { box-shadow:0 8px 28px rgba(234,67,53,.14),0 24px 56px rgba(234,88,12,.11); border-color:rgba(234,67,53,.2); }
.ccard[data-course="excel"]:hover      { box-shadow:0 8px 28px rgba(5,150,105,.14),0 24px 56px rgba(22,163,74,.11); border-color:rgba(5,150,105,.2); }

/* Compact horizontal header */
.cc-header {
  padding:13px 16px; position:relative;
  display:flex; flex-direction:row; align-items:center;
  gap:10px; overflow:hidden; min-height:0;
}
.cc-header::before {
  content:''; position:absolute; right:-24px; top:-24px;
  width:80px; height:80px; border-radius:50%;
  background:rgba(255,255,255,.09); pointer-events:none; z-index:0;
}
.cc-header > * { position:relative; z-index:1; }

.cc-violet { background:linear-gradient(130deg,#5B21B6,#4F46E5); }
.cc-blue   { background:linear-gradient(130deg,#0369A1,#2563EB); }
.cc-green  { background:linear-gradient(130deg,#065F46,#059669); }
.cc-orange { background:linear-gradient(130deg,#B91C1C,#EA580C); }
/* Color outcome dots per card theme */
.ccard[data-course="automation"] .cc-out-item::before { background:#7C3AED; }
.ccard[data-course="meta"]       .cc-out-item::before { background:#1877F2; }
.ccard[data-course="google"]     .cc-out-item::before { background:#EA4335; }
.ccard[data-course="excel"]      .cc-out-item::before { background:#059669; }

.cc-icon-wrap {
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  background:rgba(255,255,255,.22); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:#fff;
}
.cc-label {
  font-size:10px; font-weight:700; color:rgba(255,255,255,.72);
  text-transform:uppercase; letter-spacing:1px; flex:1; line-height:1;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cc-badge {
  padding:2px 7px; border-radius:var(--r-full);
  background:rgba(255,255,255,.2); color:#fff;
  font-size:9px; font-weight:800; white-space:nowrap; flex-shrink:0;
  border:1px solid rgba(255,255,255,.25);
}
.cc-badge-new { background:rgba(255,255,255,.15); color:rgba(255,255,255,.9); }

/* Body */
.cc-body { padding:14px 16px 16px; flex:1; display:flex; flex-direction:column; gap:9px; }
.cc-title { font-size:15px; font-weight:800; color:var(--text); letter-spacing:-.2px; line-height:1.3; }
.cc-desc  {
  font-size:12.5px; color:var(--text-3); line-height:1.65;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}

.cc-tools-wrap { display:flex; flex-direction:column; gap:5px; }
.cc-tools-label {
  font-size:9.5px; font-weight:800; color:var(--text-4);
  text-transform:uppercase; letter-spacing:1.2px;
}
.cc-tools {
  display:flex; flex-wrap:nowrap; gap:5px;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to right,black 80%,transparent 100%);
  mask-image:linear-gradient(to right,black 80%,transparent 100%);
}
.cc-tools span {
  padding:4px 8px; border-radius:5px;
  background:var(--surface-2); color:var(--text-3);
  font-size:10.5px; font-weight:600; border:1px solid var(--border);
  white-space:nowrap; flex-shrink:0;
}
.cc-outcomes { display:flex; flex-direction:column; gap:5px; flex:1; padding-top:2px; }
.cc-outcomes::before {
  content:'Career Roles';
  display:block; font-size:9.5px; font-weight:800;
  color:var(--text-4); text-transform:uppercase; letter-spacing:1.2px;
  margin-bottom:2px;
}
.cc-out-item {
  display:flex; align-items:center; gap:7px;
  font-size:11.5px; font-weight:600; color:var(--text-2);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cc-out-item::before {
  content:''; display:block; width:5px; height:5px;
  border-radius:50%; background:var(--primary); flex-shrink:0;
}
.cc-out-item i { display:none; }

.cc-footer {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:11px; border-top:1px solid var(--border-lt); margin-top:3px;
  gap:8px;
}
.cc-duration { font-size:11px; color:var(--text-4); font-weight:600; display:flex; align-items:center; gap:4px; min-width:0; flex:1; }
.cc-duration i { font-size:9px; flex-shrink:0; }
.cc-duration span { color:var(--text-3); font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cc-price {
  font-size:11px; font-weight:900; color:#059669;
  background:#F0FDF4; border:1px solid rgba(5,150,105,.2);
  padding:4px 9px; border-radius:var(--r-full);
  white-space:nowrap; flex-shrink:0; letter-spacing:-.3px;
}
.cc-btn {
  display:inline-flex; align-items:center; gap:4px;
  font-size:11.5px; font-weight:700; color:var(--primary);
  padding:6px 12px; border-radius:var(--r-full);
  background:var(--primary-lt); border:1px solid rgba(79,70,229,.18);
  transition:var(--t-sm); flex-shrink:0; white-space:nowrap;
}
.cc-btn:hover { background:var(--primary); color:#fff; }

/* MASTER CARD */
.master-card {
  background:linear-gradient(135deg,#0F0B2B 0%,#150D36 40%,#0A0519 100%);
  border-radius:var(--r-xl); padding:40px 44px;
  display:grid; grid-template-columns:1fr 320px; gap:44px; align-items:center;
  position:relative; overflow:hidden; margin-top:8px;
  opacity:0; transform:translateY(20px);
  border:1px solid rgba(124,58,237,.2);
  box-shadow:0 8px 40px rgba(0,0,0,.28),0 0 0 1px rgba(124,58,237,.18),0 0 80px rgba(124,58,237,.08),inset 0 3px 0 rgba(124,58,237,.45),inset 0 1px 0 rgba(255,255,255,.06);
}
.master-card::before {
  content:''; position:absolute;
  width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.25) 0%,transparent 70%);
  top:-200px; right:-80px; pointer-events:none;
}
.master-card::after {
  content:''; position:absolute;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(249,115,22,.15) 0%,transparent 70%);
  bottom:-100px; left:20%; pointer-events:none;
}
.mc-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(252,211,77,.12); color:#FCD34D;
  padding:5px 13px; border-radius:var(--r-full);
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  border:1px solid rgba(252,211,77,.2); margin-bottom:14px;
}
.mc-title {
  font-size:clamp(22px,3vw,34px); font-weight:900; color:#fff;
  letter-spacing:-.5px; margin-bottom:12px; line-height:1.15;
}
.mc-title em { font-style:italic; font-family:'Playfair Display',serif; color:#FCD34D; }
.mc-desc { font-size:15px; color:rgba(255,255,255,.65); line-height:1.8; margin-bottom:22px; }
.mc-modules { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:24px; }
.mc-modules span {
  display:flex; align-items:center; gap:5px;
  padding:5px 13px; border-radius:var(--r-full);
  background:rgba(255,255,255,.07); color:rgba(255,255,255,.82);
  font-size:12px; font-weight:600; border:1px solid rgba(255,255,255,.14);
  transition:var(--t-sm);
}
.mc-modules span:hover { background:rgba(255,255,255,.13); border-color:rgba(255,255,255,.22); color:#fff; transform:translateY(-1px); }
.mc-outcomes h4 { font-size:11px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:2px; font-weight:700; margin-bottom:9px; }
.mc-outcomes-grid { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:24px; }
.mc-outcomes-grid span {
  padding:5px 12px; border-radius:var(--r-full);
  background:rgba(79,70,229,.25); color:var(--primary-mid);
  font-size:12px; font-weight:600; border:1px solid rgba(99,102,241,.25);
}
.mc-ctas { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.btn-master-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px; border-radius:var(--r-full);
  background:linear-gradient(135deg,#FF8C00,var(--accent),var(--accent-dk));
  background-size:200% auto;
  color:#fff; font-size:13.5px; font-weight:800;
  box-shadow:0 6px 28px rgba(249,115,22,.38),0 0 0 0 rgba(249,115,22,.35);
  transition:var(--t); position:relative; overflow:hidden;
  animation:btn-pulse 3s ease-in-out infinite 1.5s;
}
.btn-master-primary::after {
  content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  animation:btn-shimmer 3.5s ease-in-out infinite 2.5s; pointer-events:none;
}
.btn-master-primary:hover { transform:translateY(-3px); background-position:right center; box-shadow:0 12px 36px rgba(249,115,22,.48); }
.btn-master-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 22px; border-radius:var(--r-full);
  border:1.5px solid rgba(255,255,255,.25); color:rgba(255,255,255,.85);
  font-size:13.5px; font-weight:700; transition:var(--t);
}
.btn-master-outline:hover { background:rgba(255,255,255,.08); }

.mc-right { display:flex; flex-direction:column; gap:14px; position:relative; z-index:1; }
.mc-badge-stack { display:flex; flex-direction:column; gap:9px; }
.mc-badge-item { display:flex; align-items:center; gap:9px; font-size:13.5px; color:rgba(255,255,255,.8); font-weight:600; }
.mc-badge-item i { color:#22C55E; font-size:13px; flex-shrink:0; }
.mc-duration-card {
  background:linear-gradient(145deg,rgba(255,255,255,.09) 0%,rgba(255,255,255,.04) 100%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-md); padding:20px; text-align:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.mc-d-val { font-size:38px; font-weight:900; color:#fff; line-height:1; letter-spacing:-2px; }
.mc-d-lbl { font-size:11px; color:rgba(255,255,255,.45); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin:5px 0 12px; }
.mc-d-formats { display:flex; flex-direction:column; gap:5px; }
.mc-d-formats span { display:flex; align-items:center; justify-content:center; gap:7px; font-size:12px; color:rgba(255,255,255,.6); font-weight:600; }
.mc-wa-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  padding:12px; border-radius:var(--r-md);
  background:#25D366; color:#fff; font-size:13px; font-weight:800; transition:var(--t-sm);
}
.mc-wa-btn:hover { background:#1da851; transform:translateY(-1px); }

/* ════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════ */
#why {
  padding:var(--sec) 0;
  background:
    linear-gradient(180deg,rgba(250,251,255,.4) 0%,rgba(248,249,255,.45) 100%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=75&auto=format&fit=crop');
  background-size:cover; background-position:center 30%; background-repeat:no-repeat;
  position:relative; overflow:hidden;
  /* Below the fold — skip rendering (and the background-image fetch) until near-viewport */
  content-visibility:auto; contain-intrinsic-size:auto 700px;
}
#why::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 55% 50% at 50% -5%,rgba(79,70,229,.08) 0%,transparent 65%);
  pointer-events:none;
}

/* Frosted card behind section heading — guaranteed legibility over any photo */
.photo-sec .sec-header {
  position:relative; z-index:1;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px) saturate(160%); -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  padding:36px 40px;
  box-shadow:0 16px 48px rgba(15,23,42,.12);
}
@media (max-width:600px) {
  .photo-sec .sec-header { padding:26px 22px; border-radius:18px; }
}
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.why-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:26px 22px; transition:var(--t);
  position:relative; overflow:hidden;
  opacity:0; transform:translateY(16px);
  box-shadow:0 1px 4px rgba(15,23,42,.04),0 4px 16px rgba(15,23,42,.03);
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  opacity:1; transition:var(--t); z-index:1;
}
.why-card::after {
  content:''; position:absolute; inset:0; border-radius:inherit;
  opacity:.4; transition:opacity .4s; pointer-events:none; z-index:0;
}
.why-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(15,23,42,.12),0 4px 16px rgba(15,23,42,.06); border-color:transparent; }
.why-card:hover::after { opacity:1; }
.why-card > * { position:relative; z-index:1; }

/* Per-card color glow on hover — shimmer bars */
.wc-indigo::before { background:linear-gradient(90deg,var(--primary),var(--violet),var(--primary)); background-size:200%; animation:bar-shimmer 4s linear infinite; }
.wc-indigo::after  { background:linear-gradient(135deg,rgba(79,70,229,.06) 0%,transparent 65%); }
.wc-orange::before { background:linear-gradient(90deg,var(--accent),#ef4444,var(--accent)); background-size:200%; animation:bar-shimmer 4s linear infinite .3s; }
.wc-orange::after  { background:linear-gradient(135deg,rgba(249,115,22,.07) 0%,transparent 65%); }
.wc-blue::before   { background:linear-gradient(90deg,var(--blue),var(--primary),var(--blue)); background-size:200%; animation:bar-shimmer 4s linear infinite .6s; }
.wc-blue::after    { background:linear-gradient(135deg,rgba(59,130,246,.06) 0%,transparent 65%); }
.wc-green::before  { background:linear-gradient(90deg,var(--green),var(--teal),var(--green)); background-size:200%; animation:bar-shimmer 4s linear infinite .9s; }
.wc-green::after   { background:linear-gradient(135deg,rgba(22,163,74,.06) 0%,transparent 65%); }
.wc-violet::before { background:linear-gradient(90deg,var(--violet),var(--primary-dk),var(--violet)); background-size:200%; animation:bar-shimmer 4s linear infinite 1.2s; }
.wc-violet::after  { background:linear-gradient(135deg,rgba(124,58,237,.07) 0%,transparent 65%); }
.wc-teal::before   { background:linear-gradient(90deg,var(--teal),var(--blue),var(--teal)); background-size:200%; animation:bar-shimmer 4s linear infinite 1.5s; }
.wc-teal::after    { background:linear-gradient(135deg,rgba(13,148,136,.06) 0%,transparent 65%); }
.wc-rose::before   { background:linear-gradient(90deg,var(--rose),var(--accent),var(--rose)); background-size:200%; animation:bar-shimmer 4s linear infinite 1.8s; }
.wc-rose::after    { background:linear-gradient(135deg,rgba(244,63,94,.06) 0%,transparent 65%); }
.wc-amber::before  { background:linear-gradient(90deg,var(--amber),var(--accent),var(--amber)); background-size:200%; animation:bar-shimmer 4s linear infinite 2.1s; }
.wc-amber::after   { background:linear-gradient(135deg,rgba(245,158,11,.06) 0%,transparent 65%); }

.wc-icon-wrap {
  width:52px; height:52px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:14px; flex-shrink:0;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55),0 2px 8px rgba(0,0,0,.07);
}
.wci-indigo { background:linear-gradient(135deg,#EEF2FF,#E0E7FF); color:var(--primary); }
.wci-orange { background:linear-gradient(135deg,#FFF7ED,#FFEDD5); color:var(--accent); }
.wci-blue   { background:linear-gradient(135deg,#EFF6FF,#DBEAFE); color:var(--blue); }
.wci-green  { background:linear-gradient(135deg,#F0FDF4,#DCFCE7); color:var(--green); }
.wci-violet { background:linear-gradient(135deg,#F5F3FF,#EDE9FE); color:var(--violet); }
.wci-teal   { background:linear-gradient(135deg,#F0FDFA,#CCFBF1); color:var(--teal); }
.wci-rose   { background:linear-gradient(135deg,#FFF1F2,#FFE4E6); color:var(--rose); }
.wci-amber  { background:linear-gradient(135deg,#FFFBEB,#FEF3C7); color:var(--amber); }

.why-card h3 { font-size:15.5px; font-weight:800; color:var(--text); margin-bottom:8px; }
.why-card p  { font-size:13.5px; color:var(--text-3); line-height:1.75; }

/* ════════════════════════════════════════
   WHY MARQUEE
════════════════════════════════════════ */
#why { padding:var(--sec) 0; overflow:hidden; }

/* Track container with fade edges */
.wm-track-wrap {
  position:relative;
  overflow:hidden;
}
.wm-fade-edges::before,
.wm-fade-edges::after {
  content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2; pointer-events:none;
}
.wm-fade-edges::before { left:0;  background:linear-gradient(to right,var(--surface) 0%,transparent 100%); }
.wm-fade-edges::after  { right:0; background:linear-gradient(to left, var(--surface) 0%,transparent 100%); }

/* Scrolling track */
.wm-track {
  display:flex;
  gap:14px;
  width:max-content;
  padding:6px 0;
}
.wm-left  { animation:wm-scroll-left  36s linear infinite; }
.wm-right { animation:wm-scroll-right 36s linear infinite; }
.wm-track:hover { animation-play-state:paused; }

@keyframes wm-scroll-left  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes wm-scroll-right { from { transform:translateX(-50%); } to { transform:translateX(0); } }

/* Individual chip */
.wm-chip {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:999px;
  padding:10px 20px 10px 10px;
  white-space:nowrap;
  flex-shrink:0;
  box-shadow:var(--shadow-xs);
  transition:transform .2s, box-shadow .2s, border-color .2s;
  cursor:default;
}
.wm-chip:hover { transform:translateY(-3px); box-shadow:var(--shadow-sm); }

.wmc-icon {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; flex-shrink:0;
}
.wmc-name { font-size:13.5px; font-weight:700; color:var(--text); }

/* Chip color variants */
.wmc-indigo .wmc-icon { background:linear-gradient(135deg,#EEF2FF,#E0E7FF); color:#4F46E5; }
.wmc-indigo { border-color:rgba(79,70,229,.15); }
.wmc-indigo:hover { border-color:rgba(79,70,229,.35); box-shadow:0 8px 24px rgba(79,70,229,.12); }

.wmc-orange .wmc-icon { background:linear-gradient(135deg,#FFF7ED,#FFEDD5); color:#F97316; }
.wmc-orange { border-color:rgba(249,115,22,.15); }
.wmc-orange:hover { border-color:rgba(249,115,22,.35); box-shadow:0 8px 24px rgba(249,115,22,.12); }

.wmc-blue .wmc-icon { background:linear-gradient(135deg,#EFF6FF,#DBEAFE); color:#3B82F6; }
.wmc-blue { border-color:rgba(59,130,246,.15); }
.wmc-blue:hover { border-color:rgba(59,130,246,.35); box-shadow:0 8px 24px rgba(59,130,246,.12); }

.wmc-green .wmc-icon { background:linear-gradient(135deg,#F0FDF4,#DCFCE7); color:#16A34A; }
.wmc-green { border-color:rgba(22,163,74,.15); }
.wmc-green:hover { border-color:rgba(22,163,74,.35); box-shadow:0 8px 24px rgba(22,163,74,.12); }

.wmc-violet .wmc-icon { background:linear-gradient(135deg,#F5F3FF,#EDE9FE); color:#7C3AED; }
.wmc-violet { border-color:rgba(124,58,237,.15); }
.wmc-violet:hover { border-color:rgba(124,58,237,.35); box-shadow:0 8px 24px rgba(124,58,237,.12); }

.wmc-teal .wmc-icon { background:linear-gradient(135deg,#F0FDFA,#CCFBF1); color:#0D9488; }
.wmc-teal { border-color:rgba(13,148,136,.15); }
.wmc-teal:hover { border-color:rgba(13,148,136,.35); box-shadow:0 8px 24px rgba(13,148,136,.12); }

.wmc-rose .wmc-icon { background:linear-gradient(135deg,#FFF1F2,#FFE4E6); color:#F43F5E; }
.wmc-rose { border-color:rgba(244,63,94,.15); }
.wmc-rose:hover { border-color:rgba(244,63,94,.35); box-shadow:0 8px 24px rgba(244,63,94,.12); }

.wmc-amber .wmc-icon { background:linear-gradient(135deg,#FFFBEB,#FEF3C7); color:#D97706; }
.wmc-amber { border-color:rgba(217,119,6,.15); }
.wmc-amber:hover { border-color:rgba(217,119,6,.35); box-shadow:0 8px 24px rgba(217,119,6,.12); }

/* ════════════════════════════════════════
   AUDIENCE TABS
════════════════════════════════════════ */
#audience {
  padding:var(--sec) 0;
  background:
    linear-gradient(150deg,rgba(250,251,255,.4) 0%,rgba(245,247,255,.38) 50%,rgba(248,249,255,.42) 100%),
    url('https://images.unsplash.com/photo-1758270705518-b61b40527e76?w=1920&q=75&auto=format&fit=crop');
  background-size:cover; background-position:center 30%; background-repeat:no-repeat;
  position:relative; overflow:hidden;
  content-visibility:auto; contain-intrinsic-size:auto 700px;
}
#audience::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 65% 60% at 82% 48%,rgba(79,70,229,.08) 0%,transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 20%,rgba(124,58,237,.05) 0%,transparent 60%),
    radial-gradient(ellipse 30% 35% at 45% 100%,rgba(14,165,233,.04) 0%,transparent 55%);
  pointer-events:none;
}

.audience-tabs { max-width:880px; margin:0 auto; position:relative; z-index:1; }
.at-tab-nav {
  display:flex; align-items:center; gap:6px; margin-bottom:28px;
  background:rgba(255,255,255,.85); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  padding:5px; border-radius:var(--r-full);
  border:1px solid rgba(79,70,229,.14); overflow-x:auto;
  box-shadow:0 8px 28px rgba(15,23,42,.08);
}
.at-tab-btn {
  flex:1; min-width:fit-content;
  display:flex; align-items:center; justify-content:center; gap:7px;
  padding:12px 16px; min-height:44px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; color:var(--text-3);
  transition:var(--t-sm); white-space:nowrap;
}
.at-tab-btn.active {
  background:linear-gradient(135deg,var(--primary),var(--violet)); color:#fff;
  box-shadow:0 2px 12px rgba(79,70,229,.35),0 1px 4px rgba(0,0,0,.1);
  font-weight:800;
}
.at-tab-btn:hover:not(.active) { color:var(--primary); background:rgba(79,70,229,.06); }

.at-tab-content {}
.at-panel {
  display:none;
  background:rgba(255,255,255,.92);
  border-radius:var(--r-xl);
  border:1px solid rgba(79,70,229,.12); padding:26px 28px;
  gap:22px; align-items:flex-start;
  backdrop-filter:blur(16px) saturate(160%); -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 16px 48px rgba(15,23,42,.1);
  position:relative; overflow:hidden;
}
.at-panel::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(79,70,229,.25),transparent);
  pointer-events:none;
}
.at-panel.active { display:flex; }
.atp-icon {
  width:68px; height:68px; border-radius:var(--r-lg); flex-shrink:0;
  background:rgba(79,70,229,.12); color:var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:26px;
}
.atp-content h3  { font-size:21px; font-weight:800; color:var(--text); margin-bottom:9px; }
.atp-content > p { font-size:15px; color:var(--text-3); line-height:1.8; margin-bottom:18px; }
.atp-content ul  { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:22px; }
.atp-content li  { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-2); font-weight:500; }
.atp-content li i { color:#16A34A; font-size:12px; flex-shrink:0; }
.atp-ctas { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }

/* ════════════════════════════════════════
   ROADMAP
════════════════════════════════════════ */
#roadmap {
  padding:var(--sec) 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(79,70,229,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(249,115,22,.05) 0%, transparent 55%),
    linear-gradient(165deg, #FAFBFF 0%, #F5F7FF 50%, #FFFDF9 100%);
  position:relative; overflow:hidden;
}
#roadmap::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(79,70,229,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(79,70,229,.04) 1px,transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}

.rm-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rm-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:28px 24px 22px;
  position:relative; overflow:hidden; transition:var(--t);
  display:flex; flex-direction:column; gap:10px;
  opacity:0; transform:translateY(16px);
  box-shadow:0 2px 8px rgba(15,23,42,.04),0 1px 3px rgba(15,23,42,.03);
}
.rm-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
}
.rm-c-indigo::before { background:linear-gradient(90deg,var(--primary),var(--violet)); }
.rm-c-blue::before   { background:linear-gradient(90deg,var(--blue),var(--primary)); }
.rm-c-green::before  { background:linear-gradient(90deg,var(--green),var(--teal)); }
.rm-c-orange::before { background:linear-gradient(90deg,var(--accent),#EF4444); }
.rm-c-violet::before { background:linear-gradient(90deg,var(--violet),var(--primary-dk)); }
.rm-c-teal::before   { background:linear-gradient(90deg,var(--teal),var(--blue)); }

/* Roadmap card tinted backgrounds */
.rm-c-indigo { background:linear-gradient(145deg,rgba(79,70,229,.04) 0%,var(--white) 50%); }
.rm-c-blue   { background:linear-gradient(145deg,rgba(59,130,246,.04) 0%,var(--white) 50%); }
.rm-c-green  { background:linear-gradient(145deg,rgba(22,163,74,.04) 0%,var(--white) 50%); }
.rm-c-orange { background:linear-gradient(145deg,rgba(249,115,22,.04) 0%,var(--white) 50%); }
.rm-c-violet { background:linear-gradient(145deg,rgba(124,58,237,.04) 0%,var(--white) 50%); }
.rm-c-teal   { background:linear-gradient(145deg,rgba(13,148,136,.04) 0%,var(--white) 50%); }
.rm-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--primary-mid); }

.rm-big-num {
  position:absolute; right:-4px; bottom:-14px;
  font-size:88px; font-weight:900; line-height:1;
  pointer-events:none; user-select:none;
  font-family:'Plus Jakarta Sans',sans-serif; letter-spacing:-4px;
}
.rm-c-indigo .rm-big-num { color:var(--primary); opacity:.05; }
.rm-c-blue   .rm-big-num { color:var(--blue);    opacity:.06; }
.rm-c-green  .rm-big-num { color:var(--green);   opacity:.06; }
.rm-c-orange .rm-big-num { color:var(--accent);  opacity:.06; }
.rm-c-violet .rm-big-num { color:var(--violet);  opacity:.05; }
.rm-c-teal   .rm-big-num { color:var(--teal);    opacity:.06; }

.rm-step-tag {
  font-size:10px; font-weight:900; letter-spacing:2px; color:var(--text-4); text-transform:uppercase;
  display:inline-flex; align-items:center; gap:4px;
}
.rm-step-tag::before {
  content:''; display:inline-block; width:14px; height:2px;
  border-radius:1px; background:currentColor; opacity:.4;
}
.rm-icon {
  width:52px; height:52px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:21px; flex-shrink:0; margin:2px 0;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 2px 8px rgba(0,0,0,.07);
}
.rm-c-indigo .rm-icon { background:var(--primary-lt); color:var(--primary); }
.rm-c-blue   .rm-icon { background:var(--blue-lt);    color:var(--blue); }
.rm-c-green  .rm-icon { background:var(--green-lt);   color:var(--green); }
.rm-c-orange .rm-icon { background:var(--accent-lt);  color:var(--accent); }
.rm-c-violet .rm-icon { background:var(--violet-lt);  color:var(--violet); }
.rm-c-teal   .rm-icon { background:var(--teal-lt);    color:var(--teal); }

.rm-title { font-size:17px; font-weight:800; color:var(--text); margin:0; line-height:1.25; }
.rm-desc  { font-size:14px; color:var(--text-3); line-height:1.75; flex:1; }
.rm-phase {
  display:inline-flex; align-items:center; gap:5px; margin-top:4px;
  font-size:11px; font-weight:700; color:var(--text-3);
  background:rgba(255,255,255,.7); border:1px solid var(--border);
  padding:5px 12px; border-radius:var(--r-full); width:fit-content;
  position:relative; z-index:1;
  backdrop-filter:blur(4px);
  box-shadow:0 1px 4px rgba(15,23,42,.05);
}
.rm-phase i { font-size:10px; }

/* ════════════════════════════════════════
   TOOLS
════════════════════════════════════════ */
#tools {
  padding:var(--sec) 0;
  background-color:var(--white);
  background-image:radial-gradient(rgba(79,70,229,.08) 1px,transparent 1px);
  background-size:22px 22px;
}

.tools-showcase {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:0 4px 24px rgba(79,70,229,.06),0 1px 4px rgba(15,23,42,.04);
}
.tg-row:nth-child(even) { background:rgba(255,255,255,.7); }
.tg-row {
  display:flex; align-items:center; gap:20px;
  padding:18px 28px; border-bottom:1px solid var(--border-lt);
}
.tg-row:last-child { border-bottom:none; }
.tg-label {
  display:inline-flex; align-items:center; gap:7px;
  font-size:11.5px; font-weight:800; letter-spacing:.3px;
  padding:8px 16px; border-radius:var(--r-full);
  min-width:190px; flex-shrink:0;
}
.tg-indigo { background:var(--primary-lt); color:var(--primary); border:1.5px solid rgba(79,70,229,.2); }
.tg-orange { background:var(--accent-lt); color:var(--accent-dk); border:1.5px solid rgba(249,115,22,.2); }
.tg-green  { background:var(--green-lt); color:var(--green); border:1.5px solid rgba(22,163,74,.2); }
.tg-teal   { background:var(--teal-lt); color:var(--teal); border:1.5px solid rgba(13,148,136,.2); }
.tg-violet { background:var(--violet-lt); color:var(--violet); border:1.5px solid rgba(124,58,237,.2); }

.tg-items { display:flex; flex-wrap:wrap; gap:8px; align-items:center; flex:1; }
.tg-item {
  display:flex; align-items:center; gap:8px;
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-md); padding:9px 14px;
  font-size:13px; font-weight:700; color:var(--text-2);
  transition:var(--t-sm); white-space:nowrap;
  box-shadow:0 1px 3px rgba(15,23,42,.04);
}
.tg-item:hover { border-color:var(--primary-mid); background:var(--primary-lt); color:var(--primary-dk); transform:translateY(-2px); box-shadow:0 4px 14px rgba(79,70,229,.12); }
.tg-item-more { border-style:dashed; color:var(--text-4); }
.tg-item-more:hover { border-style:dashed; color:var(--text-3); background:var(--surface-2); }
.ti-icon {
  width:26px; height:26px; border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:11.5px; flex-shrink:0;
}
.tci-meta   { background:#E8F0FE; color:#1877F2; }
.tc-google  { background:linear-gradient(135deg,#E8F0FE,#FCE8E6); color:#4285F4; }
.tc-ga4     { background:#FFF8E1; color:#E37400; }
.tc-gtm     { background:#E8F5E9; color:#34A853; }
.tc-pixel   { background:#E8EAFD; color:#3A3AF4; }
.tc-wa      { background:#E8F5E9; color:#25D366; }
.tc-ghl     { background:linear-gradient(135deg,var(--primary-lt),var(--violet-lt)); color:var(--violet); }
.tc-hubspot { background:#FFF1F0; color:#FF5C35; }
.tc-zoho    { background:#FFF8E1; color:#E3A400; }
.tc-zapier  { background:#FFF1F0; color:#FF4A00; }
.tc-make    { background:var(--primary-lt); color:var(--primary); }
.tc-n8n     { background:#FFF8E1; color:#EF6C00; }
.tc-looker  { background:#E8F0FE; color:#4285F4; }
.tc-canva   { background:var(--violet-lt); color:var(--violet); }
.tc-landing { background:var(--teal-lt); color:var(--teal); }
.tc-plus    { background:var(--surface-2); color:var(--text-4); }

/* ════════════════════════════════════════
   PROJECTS
════════════════════════════════════════ */
#projects { padding:var(--sec) 0; background:var(--surface); }
.pt-nav { display:flex; align-items:center; gap:7px; margin-bottom:28px; flex-wrap:wrap; }
.pt-btn {
  padding:9px 18px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; color:var(--text-3);
  border:1.5px solid var(--border); transition:var(--t-sm);
}
.pt-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }
.pt-btn:hover:not(.active) { color:var(--primary); border-color:var(--primary); background:var(--primary-lt); }

.proj-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.proj-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden; transition:var(--t);
  opacity:0; transform:translateY(14px);
}
.proj-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.proj-card.hidden { display:none; }

.pc-header {
  padding:14px 18px; display:flex; align-items:center; gap:7px;
  font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:1.5px; color:#fff;
}
.pc-meta       { background:linear-gradient(135deg,#1877F2,#7B3FFF); }
.pc-google     { background:linear-gradient(135deg,#4285F4,#34A853); }
.pc-wa         { background:linear-gradient(135deg,#25D366,#128C7E); }
.pc-automation { background:linear-gradient(135deg,var(--primary),var(--violet)); }
.pc-reporting  { background:linear-gradient(135deg,var(--teal),var(--blue)); }

.pc-body { padding:20px; }
.pc-body h4 { font-size:16px; font-weight:800; color:var(--text); margin-bottom:8px; }
.pc-body p  { font-size:14px; color:var(--text-3); line-height:1.72; margin-bottom:14px; }
.pc-metrics { display:flex; flex-wrap:wrap; gap:5px; }
.pc-metrics span {
  display:flex; align-items:center; gap:4px;
  padding:5px 10px; border-radius:var(--r-full);
  background:var(--surface); border:1px solid var(--border);
  font-size:11px; font-weight:600; color:var(--text-3);
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#success {
  padding:var(--sec) 0;
  background:
    linear-gradient(160deg,rgba(250,251,255,.4) 0%,rgba(245,247,255,.38) 45%,rgba(248,249,255,.42) 100%),
    url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?w=1920&q=75&auto=format&fit=crop');
  background-size:cover; background-position:center; background-repeat:no-repeat;
  position:relative; overflow:hidden;
  content-visibility:auto; contain-intrinsic-size:auto 700px;
}
#success::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(79,70,229,.09) 0%,transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(124,58,237,.06) 0%,transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 100%,rgba(14,165,233,.04) 0%,transparent 55%);
  pointer-events:none;
}
#success .sec-header { position:relative; z-index:1; }

.testimonials-swiper { padding-bottom:48px !important; position:relative; z-index:1; }
.tcard {
  background:linear-gradient(145deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.82) 100%);
  border:1px solid rgba(79,70,229,.12);
  border-radius:var(--r-xl); padding:26px;
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  box-shadow:0 4px 20px rgba(15,23,42,.06);
  transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position:relative; overflow:hidden;
}
.tcard::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(79,70,229,.25),transparent);
  pointer-events:none;
}
.tcard:hover { transform:translateY(-5px); box-shadow:0 24px 56px rgba(15,23,42,.14),0 0 0 1px rgba(79,70,229,.2); border-color:rgba(79,70,229,.3); }
.tc-top  { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.tc-info { flex:1; min-width:0; background:none !important; }
.tc-avatar {
  width:54px; height:54px; border-radius:50%; flex-shrink:0;
  background:rgba(79,70,229,.14); color:var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:900; font-family:'Plus Jakarta Sans',sans-serif;
  letter-spacing:0;
  box-shadow:0 0 0 3px rgba(79,70,229,.08),0 4px 14px rgba(15,23,42,.08);
}
.tc-av-violet { background:linear-gradient(135deg,rgba(91,33,182,.16),rgba(124,58,237,.14)); color:#6D28D9; }
.tc-av-blue   { background:linear-gradient(135deg,rgba(3,105,161,.16),rgba(37,99,235,.14)); color:#1D4ED8; }
.tc-av-green  { background:linear-gradient(135deg,rgba(6,95,70,.16), rgba(22,163,74,.14));  color:#15803D; }
.tc-av-orange { background:linear-gradient(135deg,rgba(185,28,28,.16),rgba(234,88,12,.14)); color:#C2410C; }
.tc-name  { font-size:15px; font-weight:800; color:var(--text); }
.tc-role  { font-size:12px; color:var(--text-4); font-weight:500; margin-top:2px; }
.tc-stars { color:#F59E0B; font-size:13px; margin-top:3px; }
.tc-quote {
  font-size:14.5px; line-height:1.82; color:var(--text-2);
  font-style:italic; margin-bottom:16px;
  padding-left:16px; border-left:2px solid rgba(79,70,229,.35);
  position:relative;
}
.tc-quote::before {
  content:'\201C';
  position:absolute; top:-8px; left:-4px;
  font-size:56px; line-height:.8; font-style:normal;
  color:rgba(124,58,237,.22); font-family:'Playfair Display',serif;
  pointer-events:none;
}
.tc-course-tag {
  display:inline-flex; align-items:center; gap:5px;
  padding:5px 12px; border-radius:var(--r-full);
  background:rgba(79,70,229,.1); color:var(--primary-dk);
  font-size:11px; font-weight:700;
}
.success-note {
  display:flex; align-items:flex-start; gap:9px;
  background:rgba(249,115,22,.08); border:1px solid rgba(249,115,22,.18);
  border-radius:var(--r-md); padding:13px 17px;
  font-size:12.5px; color:var(--text-3); font-weight:500;
  max-width:580px; margin:20px auto 0;
  position:relative; z-index:1;
}
.success-note i { color:var(--accent); font-size:14px; flex-shrink:0; margin-top:1px; }

/* ════════════════════════════════════════
   RESOURCES
════════════════════════════════════════ */
#resources {
  padding:var(--sec) 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 0%,rgba(79,70,229,.05) 0%,transparent 55%),
    radial-gradient(ellipse 45% 50% at 100% 100%,rgba(249,115,22,.04) 0%,transparent 55%),
    var(--surface);
  position:relative; overflow:hidden;
}
#resources::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(rgba(79,70,229,.05) 1px,transparent 1px);
  background-size:22px 22px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 30%,transparent 100%);
}
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; position:relative; z-index:1; }
.res-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:24px;
  display:flex; flex-direction:column; gap:14px;
  transition:var(--t); position:relative; overflow:hidden;
  opacity:0; transform:translateY(14px) scale(.97);
  box-shadow:0 2px 8px rgba(15,23,42,.04),0 1px 3px rgba(15,23,42,.03);
}
.res-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  border-radius:var(--r-xl) var(--r-xl) 0 0;
  background-size:200%; animation:bar-shimmer 4s linear infinite;
}
.res-pdf::before      { background:linear-gradient(90deg,#EF4444,#F87171,#EF4444); }
.res-event::before    { background:linear-gradient(90deg,var(--primary),var(--violet),var(--primary)); animation-delay:.6s; }
.res-brochure::before { background:linear-gradient(90deg,var(--accent),#F97316,var(--accent)); animation-delay:1.2s; }
.res-card:hover { transform:translateY(-6px); box-shadow:0 16px 44px rgba(79,70,229,.1),0 4px 12px rgba(15,23,42,.06); border-color:rgba(79,70,229,.2); }
.rc-icon {
  width:52px; height:52px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center; font-size:21px;
  box-shadow:0 2px 8px rgba(0,0,0,.07),inset 0 1px 0 rgba(255,255,255,.6);
}
.res-pdf .rc-icon     { background:linear-gradient(135deg,#FFF1F0,#FEE2E2); color:#EF4444; }
.res-event .rc-icon   { background:linear-gradient(135deg,var(--primary-lt),#E0E7FF); color:var(--primary); }
.res-brochure .rc-icon{ background:linear-gradient(135deg,var(--accent-lt),#FEF3C7); color:var(--accent); }
.rc-body { flex:1; }
.rc-type { font-size:10.5px; font-weight:800; text-transform:uppercase; letter-spacing:2px; color:var(--text-4); margin-bottom:5px; }
.rc-type-event    { color:var(--primary); }
.rc-type-brochure { color:var(--accent); }
.rc-body h4 { font-size:15px; font-weight:800; color:var(--text); margin-bottom:7px; }
.rc-body p  { font-size:14px; color:var(--text-3); line-height:1.72; }
.rc-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:var(--r-full);
  font-size:13px; font-weight:700; transition:var(--t-sm);
  background:var(--surface-2); border:1.5px solid var(--border); color:var(--text-2);
  align-self:flex-start;
  box-shadow:0 1px 4px rgba(15,23,42,.04);
}
.rc-btn:hover { color:var(--primary); border-color:var(--primary-mid); background:var(--primary-lt); transform:translateY(-1px); box-shadow:0 4px 14px rgba(79,70,229,.1); }
.rc-btn-event   { background:var(--primary-lt); color:var(--primary); border-color:var(--primary-mid); }
.rc-btn-brochure{ background:var(--accent-lt); color:var(--accent-dk); border-color:rgba(249,115,22,.3); }

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
#pricing {
  padding:var(--sec) 0 calc(var(--sec) + 8px);
  background:
    radial-gradient(ellipse 70% 55% at 0% 50%,rgba(79,70,229,.05) 0%,transparent 60%),
    radial-gradient(ellipse 55% 60% at 100% 0%,rgba(124,58,237,.06) 0%,transparent 60%),
    linear-gradient(165deg,#F8F9FF 0%,#FFFFFF 50%,#F5F3FF 100%);
  position:relative; overflow:hidden; isolation:isolate;
}
#pricing::before {
  content:''; position:absolute;
  width:600px; height:600px; border-radius:50%; z-index:0;
  background:radial-gradient(circle,rgba(79,70,229,.07) 0%,transparent 65%);
  top:-250px; right:-150px; pointer-events:none;
}
#pricing::after {
  content:''; position:absolute;
  width:450px; height:450px; border-radius:50%; z-index:0;
  background:radial-gradient(circle,rgba(249,115,22,.05) 0%,transparent 65%);
  bottom:-180px; left:-100px; pointer-events:none;
}
.pricing-grid { position:relative; z-index:1; }
.pricing-grid { display:grid; grid-template-columns:1fr 1.05fr 1fr; gap:20px; align-items:start; }
.price-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:28px 24px;
  display:flex; flex-direction:column; gap:20px;
  transition:var(--t); position:relative;
  opacity:0; transform:translateY(22px);
  box-shadow:0 2px 8px rgba(15,23,42,.04),0 1px 3px rgba(15,23,42,.03);
}
.price-card:hover {
  box-shadow:0 16px 48px rgba(79,70,229,.1),0 4px 16px rgba(15,23,42,.06);
  transform:translateY(-5px); border-color:rgba(79,70,229,.18);
}
.price-card-featured {
  background:linear-gradient(145deg,#0f0b2b 0%,#1e1050 45%,#0a0720 100%);
  border:1.5px solid rgba(124,58,237,.4);
  box-shadow:0 0 0 1px rgba(124,58,237,.15),var(--shadow-primary);
  transform:translateY(-8px); padding:36px 24px 30px;
  animation:pricing-glow 4s ease-in-out infinite;
}
@keyframes pricing-glow {
  0%,100% { box-shadow:0 0 0 1px rgba(124,58,237,.15),0 16px 48px rgba(79,70,229,.2); }
  50%      { box-shadow:0 0 0 1px rgba(124,58,237,.28),0 22px 60px rgba(79,70,229,.3),0 0 40px rgba(124,58,237,.12); }
}
.price-card-featured::before {
  content:''; position:absolute;
  width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.22) 0%,transparent 70%);
  top:-100px; right:-80px; pointer-events:none; z-index:0;
}
.price-card-featured::after {
  content:''; position:absolute;
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle,rgba(79,70,229,.15) 0%,transparent 70%);
  bottom:-60px; left:-40px; pointer-events:none; z-index:0;
}
.price-card-featured:hover { transform:translateY(-14px); box-shadow:0 0 0 1px rgba(124,58,237,.25),0 28px 64px rgba(79,70,229,.3); }
.price-card-featured > * { position:relative; z-index:1; }
.price-card-featured .pc-type-featured { color:#C4B5FD; }
.price-card-featured .pc-name { color:#fff; }
.price-card-featured .pc-sub  { color:rgba(255,255,255,.58); }
.price-card-featured .pc-price-wrap {
  background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.08);
}
.price-card-featured .pc-price-label { color:rgba(255,255,255,.45); }
.price-card-featured .pc-price { color:#fff; }
.price-card-featured .pc-price-featured { color:#C4B5FD; }
.price-card-featured .pc-price-note { color:#86EFAC; }
.price-card-featured .pc-features li { color:rgba(255,255,255,.82); }
.price-card-featured .pc-feat-no { opacity:.3; }
.pc-featured-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--primary),var(--violet));
  color:#fff; padding:5px 18px; border-radius:var(--r-full);
  font-size:10.5px; font-weight:800; white-space:nowrap;
  display:flex; align-items:center; gap:5px; box-shadow:var(--shadow-primary);
}
.pc-type { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:2px; color:var(--text-4); }
.pc-type-featured { color:var(--primary); }
.pc-name { font-size:20px; font-weight:900; color:var(--text); margin-top:5px; }
.pc-sub  { font-size:14px; color:var(--text-3); line-height:1.75; margin-top:5px; }
.pc-price-wrap {
  background:var(--surface-2); border-radius:var(--r-md);
  padding:18px; text-align:center; border:1px solid var(--border-lt);
}
.pc-price-label { font-size:10px; color:var(--text-4); text-transform:uppercase; letter-spacing:1.5px; font-weight:700; margin-bottom:5px; }
.pc-price         { font-size:18px; font-weight:900; color:var(--text); line-height:1.2; }
.pc-price-featured{ color:var(--primary); }
.pc-price-note    { font-size:11px; color:var(--green); font-weight:600; margin-top:5px; }
.pc-features { list-style:none; display:flex; flex-direction:column; gap:10px; flex:1; }
.pc-features li  { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-2); font-weight:500; }
.pc-features li i { font-size:11px; flex-shrink:0; }
.pc-features li i.fa-check { color:var(--green); }
.pc-feat-no { opacity:.38; }
.pc-feat-no i.fa-times { color:var(--text-4) !important; }
.pc-btn {
  display:flex; align-items:center; justify-content:center;
  padding:13px; border-radius:var(--r-full); font-size:13.5px; font-weight:800; transition:var(--t);
}
.pc-btn-outline { border:2px solid var(--border); color:var(--text-2); background:transparent; }
.pc-btn-outline:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-lt); }
.pc-btn-featured {
  background:linear-gradient(135deg,var(--primary),var(--violet));
  color:#fff; box-shadow:var(--shadow-primary);
}
.pc-btn-featured:hover { transform:translateY(-1px); box-shadow:0 14px 36px rgba(79,70,229,.3); }
.pc-wa-link {
  display:flex; align-items:center; justify-content:center; gap:7px;
  padding:11px; border-radius:var(--r-full);
  background:#25D366; color:#fff; font-size:13px; font-weight:700; transition:var(--t-sm);
}
.pc-wa-link:hover { background:#1da851; }
.pricing-note {
  display:flex; align-items:center; gap:9px; justify-content:center;
  background:var(--primary-lt); border:1px solid var(--primary-mid);
  border-radius:var(--r-md); padding:14px 22px;
  font-size:14px; color:var(--primary); font-weight:600;
  max-width:600px; margin:28px auto 0; text-align:center;
  position:relative; z-index:2;
}
.pricing-note i { font-size:15px; flex-shrink:0; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq {
  padding:var(--sec) 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%,rgba(79,70,229,.05) 0%,transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%,rgba(124,58,237,.04) 0%,transparent 55%),
    var(--surface);
}
.faq-wrap { display:grid; grid-template-columns:320px 1fr; gap:56px; align-items:flex-start; }
.faq-left { position:sticky; top:calc(var(--bar-h) + 72px + 24px); }
.faq-left .sec-header { text-align:left; max-width:100%; margin-bottom:24px; }
.faq-sidebar-cta {
  padding:18px; background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); display:flex; flex-direction:column; gap:8px;
}
.faq-sidebar-cta p { font-size:14px; color:var(--text-3); font-weight:600; }
.faq-wa-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  padding:11px; border-radius:var(--r-md); background:#25D366; color:#fff;
  font-size:13px; font-weight:800; transition:var(--t-sm);
}
.faq-wa-btn:hover { background:#1da851; }
.faq-demo-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  padding:10px; border-radius:var(--r-md);
  border:1.5px solid var(--primary); color:var(--primary);
  font-size:13px; font-weight:700; transition:var(--t-sm);
}
.faq-demo-btn:hover { background:var(--primary-lt); }

.faq-accordion { display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; transition:var(--t-sm);
  box-shadow:0 1px 3px rgba(15,23,42,.04);
}
.faq-item.open {
  border-color:rgba(79,70,229,.3);
  box-shadow:0 4px 20px rgba(79,70,229,.1),0 0 0 0.5px rgba(79,70,229,.2);
  background:linear-gradient(180deg,rgba(79,70,229,.02) 0%,var(--white) 60%);
}
.faq-q {
  width:100%; padding:19px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  text-align:left; font-size:15px; font-weight:700; color:var(--text); transition:var(--t-sm);
}
.faq-q:hover { color:var(--primary); }
.faq-q i { font-size:12px; color:var(--text-4); transition:transform .35s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q { color:var(--primary-dk); }
.faq-item.open .faq-q i { transform:rotate(180deg); color:var(--primary); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .45s var(--ease), padding .3s;
  font-size:14.5px; color:var(--text-2); line-height:1.85; padding:0 22px;
}
.faq-item.open .faq-a { max-height:500px; padding-bottom:20px; }

/* ════════════════════════════════════════
   ENROLL SECTION
════════════════════════════════════════ */
#demo, #courses {
  padding:var(--sec) 0;
  background:linear-gradient(150deg,#F8FAFF 0%,#EEF2FF 48%,#F0F9FF 100%);
  position:relative; overflow:hidden;
}
#demo::before, #courses::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%,rgba(79,70,229,.08) 0%,transparent 65%),
    radial-gradient(ellipse 45% 55% at 0% 100%,rgba(14,165,233,.06) 0%,transparent 60%);
  pointer-events:none;
}
#demo::after, #courses::after {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(79,70,229,.06) 1px,transparent 1px);
  background-size:24px 24px;
  pointer-events:none;
}
#demo .sec-header, #courses .sec-header { position:relative; z-index:1; }

/* Override white-text classes for this light-bg section */
#demo .sh-white   { color:var(--text); }
#demo .sh-white em {
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
#demo .sp-white   { color:var(--text-3); }
#demo .eyebrow-light {
  background:var(--primary-lt); color:var(--primary);
  border-color:var(--primary-mid);
}

.enroll-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  margin-bottom:28px; position:relative; z-index:1;
}
.enroll-card {
  position:relative; overflow:hidden; display:flex; flex-direction:column;
  background:#fff;
  border:1px solid rgba(79,70,229,.12); border-radius:20px;
  padding:22px 20px 20px; transition:var(--t);
  box-shadow:0 2px 14px rgba(79,70,229,.06),0 1px 3px rgba(0,0,0,.03);
}
.enroll-card:hover { background:#fff; transform:translateY(-6px); border-color:var(--primary-mid); box-shadow:0 16px 48px rgba(79,70,229,.13),0 4px 12px rgba(15,23,42,.06); }
/* Per-card tinted backgrounds */
.enroll-card:has(.ec-acc-purple) { background:linear-gradient(160deg,rgba(91,33,182,.03) 0%,#fff 50%); }
.enroll-card:has(.ec-acc-blue)   { background:linear-gradient(160deg,rgba(24,119,242,.03) 0%,#fff 50%); }
.enroll-card:has(.ec-acc-red)    { background:linear-gradient(160deg,rgba(234,67,53,.03) 0%,#fff 50%); }
.enroll-card:has(.ec-acc-green)  { background:linear-gradient(160deg,rgba(5,150,105,.03) 0%,#fff 50%); }
/* Per-card hover shadow colors */
.enroll-card:has(.ec-acc-purple):hover { box-shadow:0 16px 48px rgba(91,33,182,.15),0 4px 12px rgba(91,33,182,.08); border-color:rgba(91,33,182,.22); }
.enroll-card:has(.ec-acc-blue):hover   { box-shadow:0 16px 48px rgba(24,119,242,.14),0 4px 12px rgba(24,119,242,.07); border-color:rgba(24,119,242,.22); }
.enroll-card:has(.ec-acc-red):hover    { box-shadow:0 16px 48px rgba(234,67,53,.13),0 4px 12px rgba(234,67,53,.07); border-color:rgba(234,67,53,.2); }
.enroll-card:has(.ec-acc-green):hover  { box-shadow:0 16px 48px rgba(5,150,105,.14),0 4px 12px rgba(5,150,105,.07); border-color:rgba(5,150,105,.2); }
.enroll-card-featured {
  background:linear-gradient(150deg,#EEF2FF 0%,#F5F3FF 30%,#fff 65%);
  border-color:rgba(79,70,229,.28);
  box-shadow:0 8px 32px rgba(79,70,229,.12),0 0 0 1.5px rgba(79,70,229,.15);
  transform:translateY(-3px);
}
.enroll-card-featured:hover { box-shadow:0 18px 52px rgba(79,70,229,.18),0 0 0 2px var(--primary-mid); transform:translateY(-7px) scale(1.005); }
.ec-featured-badge {
  position:absolute; top:14px; right:14px; overflow:hidden;
  background:linear-gradient(135deg,var(--primary),var(--violet)); color:#fff;
  font-size:9px; font-weight:800; padding:4px 10px; border-radius:var(--r-full);
  letter-spacing:.5px; text-transform:uppercase;
  box-shadow:0 2px 12px rgba(79,70,229,.35);
}
.ec-accent { position:absolute; top:0; left:0; right:0; height:4px; border-radius:20px 20px 0 0; background-size:200%; animation:bar-shimmer 4s linear infinite; }
.ec-acc-purple { background:linear-gradient(90deg,#5B21B6,#7C3AED,#5B21B6); }
.ec-acc-blue   { background:linear-gradient(90deg,#1877F2,#4267B2,#1877F2); animation-delay:.5s; }
.ec-acc-red    { background:linear-gradient(90deg,#4285F4,#EA4335,#4285F4); animation-delay:1s; }
.ec-acc-green  { background:linear-gradient(90deg,#059669,#16A34A,#059669); animation-delay:1.5s; }
.ec-icon-wrap {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:#fff; margin-bottom:12px; flex-shrink:0;
  box-shadow:0 4px 14px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.2);
}
.ec-iw-purple { background:linear-gradient(135deg,#5B21B6,#7C3AED); }
.ec-iw-blue   { background:#1877F2; }
.ec-iw-red    { background:linear-gradient(135deg,#4285F4,#EA4335); }
.ec-iw-green  { background:linear-gradient(135deg,#059669,#16A34A); }
.ec-title { font-size:16px; font-weight:800; color:var(--text); margin-bottom:6px; }
.ec-desc  { font-size:12px; color:var(--text-3); font-weight:500; margin-bottom:14px; line-height:1.6; }
.ec-list  { display:flex; flex-direction:column; gap:9px; margin-bottom:16px; flex:1; list-style:none; }
.ec-list li { display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--text-2); font-weight:500; }
.ec-list li i { color:var(--green); font-size:11px; flex-shrink:0; }
.ec-meta { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:14px; }
.ec-dur, .ec-cert {
  display:inline-flex; align-items:center; gap:4px;
  font-size:10px; font-weight:700;
  background:var(--surface-2); color:var(--text-3);
  padding:4px 10px; border-radius:var(--r-full);
  border:1px solid var(--border);
}
.ec-dur i, .ec-cert i { font-size:9px; }
.ec-btn-group { display:flex; flex-direction:column; gap:9px; margin-top:auto; }
.ec-pay-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  background:linear-gradient(135deg,#4F46E5,#7C3AED);
  color:#fff; padding:11px 16px; border-radius:var(--r-md);
  font-size:13px; font-weight:700; border:none; cursor:pointer;
  transition:var(--t-sm); text-decoration:none; font-family:inherit;
  box-shadow:0 4px 16px rgba(79,70,229,.3);
  position:relative; overflow:hidden;
}
.ec-pay-btn::after {
  content:''; position:absolute; top:0; left:-80%;
  width:50%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  animation:btn-shimmer 3.5s ease-in-out infinite 2s;
}
.ec-pay-btn:hover { opacity:.92; transform:translateY(-1px); box-shadow:0 8px 24px rgba(79,70,229,.42); }
.ec-pay-btn:active { transform:scale(.98); }
.ec-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  background:var(--surface-2); color:var(--primary);
  border:1.5px solid rgba(79,70,229,.2);
  padding:10px 16px; border-radius:var(--r-md);
  font-size:13px; font-weight:700; text-decoration:none;
  transition:var(--t-sm); cursor:pointer; font-family:inherit;
}
.ec-btn:hover { background:var(--primary-lt); border-color:var(--primary-mid); transform:translateY(-1px); }
.ec-btn-featured { background:var(--primary-lt); border-color:rgba(79,70,229,.25); }
.enroll-note {
  display:flex; align-items:flex-start; gap:12px;
  background:linear-gradient(135deg,rgba(79,70,229,.06) 0%,rgba(124,58,237,.04) 100%);
  border:1px solid rgba(79,70,229,.18);
  border-left:3px solid var(--primary);
  border-radius:var(--r-md); padding:18px 22px;
  font-size:13.5px; color:var(--text-3); font-weight:500; line-height:1.7;
  max-width:700px; margin:0 auto; position:relative; z-index:1;
  box-shadow:0 4px 20px rgba(79,70,229,.07);
}
.enroll-note i { color:var(--primary); font-size:16px; flex-shrink:0; margin-top:2px; }
.enroll-note strong { color:var(--text-2); font-weight:700; }

/* ════════════════════════════════════════
   HOW IT WORKS — Advanced Automation Pipeline
════════════════════════════════════════ */
#how-it-works {
  padding:var(--sec) 0;
  background:#F7F9FF;
  position:relative; overflow:hidden;
}
/* Grid mesh */
#how-it-works::before {
  content:''; position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(rgba(79,70,229,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(79,70,229,.035) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse 90% 90% at 50% 50%,#000 20%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 90% 90% at 50% 50%,#000 20%,transparent 100%);
  pointer-events:none;
}
/* Ambient glows */
#how-it-works::after {
  content:''; position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 55% 35% at 50% 0%,rgba(79,70,229,.09) 0%,transparent 65%),
    radial-gradient(ellipse 35% 25% at 85% 75%,rgba(124,58,237,.06) 0%,transparent 55%),
    radial-gradient(ellipse 30% 20% at 10% 60%,rgba(14,165,233,.05) 0%,transparent 50%);
  pointer-events:none;
}
#how-it-works .sw { position:relative; z-index:1; }
.eyebrow-indigo { background:rgba(79,70,229,.1); color:#4F46E5; border:1px solid rgba(79,70,229,.25); }

/* ── Stats bar ── */
.hiw-stats {
  display:flex; align-items:stretch;
  background:rgba(255,255,255,.92); backdrop-filter:blur(14px);
  border-radius:18px; border:1.5px solid rgba(79,70,229,.13);
  box-shadow:0 8px 32px rgba(79,70,229,.1), 0 1px 0 rgba(255,255,255,.9) inset;
  margin:26px auto 52px; max-width:660px; overflow:hidden;
}
.hiw-stat {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:20px 16px; gap:4px; flex:1;
  transition:background .2s;
  cursor:default;
}
.hiw-stat:hover { background:rgba(79,70,229,.04); }
.hiw-stat-n {
  font-size:28px; font-weight:900; line-height:1;
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hiw-stat-l { font-size:10px; font-weight:700; color:#64748B; text-transform:uppercase; letter-spacing:.6px; }
.hiw-stat-div { width:1px; flex-shrink:0; background:linear-gradient(180deg,transparent,rgba(79,70,229,.18),transparent); }

/* ── Pipeline ── */
.hiw-pipeline {
  position:relative; max-width:800px; margin:0 auto;
  display:flex; flex-direction:column;
}
.hiw-pipeline::before {
  content:''; position:absolute; left:50%; top:36px; bottom:36px; width:2px;
  background:linear-gradient(180deg,
    #4F46E5 0%,#7C3AED 18%,#4F46E5 32%,
    #22C55E 50%,#F59E0B 68%,
    #14B8A6 84%,#F59E0B 100%
  );
  transform:translateX(-50%); z-index:0;
  filter:blur(.4px); opacity:.7;
}

/* ── Steps ── */
.hiw-step {
  display:grid; align-items:center; gap:24px;
  position:relative; z-index:1; padding:18px 0;
}
.hiw-step-left,
.hiw-step-right { grid-template-columns:1fr 60px 1fr; }

.hiw-step-left  .hiw-step-body      { order:1; }
.hiw-step-left  .hiw-step-icon-wrap { order:2; }
.hiw-step-left  .hiw-step-connector { order:3; display:none; }
.hiw-step-right .hiw-step-connector { order:1; display:none; }
.hiw-step-right .hiw-step-icon-wrap { order:2; }
.hiw-step-right .hiw-step-body      { order:3; }
.hiw-step-last { padding-bottom:0; }

/* Step card */
.hiw-step-body {
  background:linear-gradient(145deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.86) 100%);
  backdrop-filter:blur(12px);
  border:1px solid rgba(226,232,240,.8);
  border-radius:14px; padding:18px 20px;
  box-shadow:0 2px 12px rgba(15,23,42,.06),0 1px 0 rgba(255,255,255,.9) inset;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hiw-step:hover .hiw-step-body {
  transform:translateY(-4px);
  box-shadow:0 14px 42px rgba(79,70,229,.14),0 1px 0 rgba(255,255,255,.9) inset;
  border-color:rgba(79,70,229,.24);
}
.hiw-step-left  .hiw-step-body { border-radius:14px 4px 14px 14px; text-align:right; }
.hiw-step-right .hiw-step-body { border-radius:4px 14px 14px 14px; }

/* ── Icon circles with pulse ── */
@keyframes hiwPulse {
  0%,100% { box-shadow:0 0 0 0 var(--hiw-glow), 0 4px 18px rgba(0,0,0,.22); }
  55%     { box-shadow:0 0 0 9px rgba(0,0,0,0), 0 4px 18px rgba(0,0,0,.22); }
}
.hiw-step-icon-wrap {
  --hiw-glow: rgba(79,70,229,.4);
  width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff; flex-shrink:0;
  position:relative; z-index:2;
  animation:hiwPulse 3.2s ease-in-out infinite;
  transition:transform .25s ease;
}
.hiw-step:hover .hiw-step-icon-wrap { transform:scale(1.1); }
.hiw-step[data-step="1"] .hiw-step-icon-wrap { animation-delay:0s; }
.hiw-step[data-step="2"] .hiw-step-icon-wrap { animation-delay:.46s; }
.hiw-step[data-step="3"] .hiw-step-icon-wrap { animation-delay:.92s; }
.hiw-step[data-step="4"] .hiw-step-icon-wrap { animation-delay:1.38s; }
.hiw-step[data-step="5"] .hiw-step-icon-wrap { animation-delay:1.84s; }
.hiw-step[data-step="6"] .hiw-step-icon-wrap { animation-delay:2.3s; }
.hiw-step[data-step="7"] .hiw-step-icon-wrap { animation-delay:2.76s; }

.hiw-ic-blue   { --hiw-glow:rgba(14,165,233,.4);  background:linear-gradient(135deg,#0EA5E9,#6366F1); }
.hiw-ic-purple { --hiw-glow:rgba(139,92,246,.4);  background:linear-gradient(135deg,#8B5CF6,#7C3AED); }
.hiw-ic-indigo { --hiw-glow:rgba(79,70,229,.4);   background:linear-gradient(135deg,#4F46E5,#6366F1); }
.hiw-ic-green  { --hiw-glow:rgba(34,197,94,.4);   background:linear-gradient(135deg,#22C55E,#16A34A); }
.hiw-ic-orange { --hiw-glow:rgba(245,158,11,.4);  background:linear-gradient(135deg,#F59E0B,#EF4444); }
.hiw-ic-teal   { --hiw-glow:rgba(20,184,166,.4);  background:linear-gradient(135deg,#14B8A6,#0EA5E9); }
.hiw-ic-gold   { --hiw-glow:rgba(245,158,11,.4);  background:linear-gradient(135deg,#F59E0B,#EC4899); }

/* ── Step text ── */
.hiw-step-num  { font-size:9.5px; font-weight:800; color:#94A3B8; text-transform:uppercase; letter-spacing:.8px; margin-bottom:4px; }
.hiw-step-title{ font-size:15px; font-weight:800; color:#0F172A; margin:0 0 5px; line-height:1.3; }
.hiw-step-desc { font-size:12.5px; color:#475569; line-height:1.65; margin:0 0 9px; }

.hiw-tags { display:flex; flex-wrap:wrap; gap:4px; }
.hiw-step-left .hiw-tags { justify-content:flex-end; }

/* Tags — bordered pill */
.hiw-tag {
  display:inline-flex; align-items:center; gap:4px;
  font-size:10px; font-weight:700; padding:2px 8px; border-radius:20px;
  border:1px solid transparent;
}
.hiw-tag i { font-size:9px; }
.hiw-tag-blue   { background:rgba(14,165,233,.08);  color:#0369A1; border-color:rgba(14,165,233,.22); }
.hiw-tag-purple { background:rgba(139,92,246,.08);  color:#6D28D9; border-color:rgba(139,92,246,.22); }
.hiw-tag-indigo { background:rgba(79,70,229,.08);   color:#4338CA; border-color:rgba(79,70,229,.22); }
.hiw-tag-green  { background:rgba(34,197,94,.08);   color:#15803D; border-color:rgba(34,197,94,.22); }
.hiw-tag-orange { background:rgba(245,158,11,.08);  color:#B45309; border-color:rgba(245,158,11,.25); }
.hiw-tag-teal   { background:rgba(20,184,166,.08);  color:#0F766E; border-color:rgba(20,184,166,.22); }
.hiw-tag-gold   { background:rgba(245,158,11,.1);   color:#92400E; border-color:rgba(245,158,11,.28); }

/* ── Reminder timeline ── */
.hiw-reminder-timeline { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.hiw-rt-item { display:flex; align-items:center; gap:9px; font-size:11.5px; color:#475569; font-weight:500; }
.hiw-rt-dot  { width:9px; height:9px; border-radius:50%; flex-shrink:0; }
.hiw-rt-7 { background:#0EA5E9; box-shadow:0 0 0 3px rgba(14,165,233,.18); }
.hiw-rt-3 { background:#8B5CF6; box-shadow:0 0 0 3px rgba(139,92,246,.18); }
.hiw-rt-1 { background:#F59E0B; box-shadow:0 0 0 3px rgba(245,158,11,.18); }
.hiw-rt-0 { background:#22C55E; box-shadow:0 0 0 3px rgba(34,197,94,.18); }

/* ── CTA ── */
.hiw-cta { margin-top:48px; }
.hiw-cta-inner {
  display:flex; align-items:center; gap:20px;
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 100%);
  border-radius:20px; padding:22px 30px;
  box-shadow:0 16px 48px rgba(79,70,229,.35), 0 1px 0 rgba(255,255,255,.14) inset;
  position:relative; overflow:hidden;
}
.hiw-cta-inner::before {
  content:''; position:absolute; top:-60%; right:-8%;
  width:280px; height:280px; border-radius:50%;
  background:rgba(255,255,255,.05); pointer-events:none;
}
@keyframes hiwShimmer {
  0%   { transform:translateX(-120%) skewX(-18deg); }
  100% { transform:translateX(320%)  skewX(-18deg); }
}
.hiw-cta-inner::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,.09) 50%,transparent 62%);
  animation:hiwShimmer 3.8s ease-in-out infinite;
  pointer-events:none;
}
.hiw-cta-icon  { font-size:28px; color:rgba(255,255,255,.88); flex-shrink:0; position:relative; z-index:1; }
.hiw-cta-title { font-size:15px; font-weight:800; color:#fff; margin:0 0 3px; position:relative; z-index:1; }
.hiw-cta-sub   { font-size:12.5px; color:rgba(255,255,255,.72); margin:0; position:relative; z-index:1; }
.hiw-cta-btn {
  margin-left:auto; flex-shrink:0; position:relative; z-index:1;
  background:rgba(255,255,255,.15); backdrop-filter:blur(8px);
  color:#fff; padding:11px 20px; border-radius:50px;
  font-size:13px; font-weight:700; text-decoration:none;
  border:1.5px solid rgba(255,255,255,.32);
  transition:background .2s, transform .2s; white-space:nowrap;
  display:flex; align-items:center; gap:8px;
}
.hiw-cta-btn:hover { background:rgba(255,255,255,.25); transform:translateY(-1px); }

/* ── WhatsApp confirm (booking success) ── */
.bk-wa-confirm-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff; padding:12px 20px; border-radius:10px;
  font-size:14px; font-weight:700; text-decoration:none;
  margin-bottom:10px; transition:opacity .2s, transform .2s;
  box-shadow:0 4px 16px rgba(37,211,102,.28);
}
.bk-wa-confirm-btn:hover { opacity:.9; transform:translateY(-1px); }

/* ── Responsive ── */
@media(max-width:768px){
  #how-it-works::before { background-size:32px 32px; }
  .hiw-pipeline::before { left:30px; top:20px; bottom:20px; }
  .hiw-step { grid-template-columns:60px 1fr!important; gap:14px; padding:14px 0; }
  .hiw-step-left  .hiw-step-body,
  .hiw-step-right .hiw-step-body { order:2!important; text-align:left!important; border-radius:4px 14px 14px 14px!important; }
  .hiw-step-left  .hiw-step-icon-wrap,
  .hiw-step-right .hiw-step-icon-wrap { order:1!important; }
  .hiw-step-left  .hiw-step-connector,
  .hiw-step-right .hiw-step-connector { display:none!important; }
  .hiw-step-left  .hiw-tags,
  .hiw-step-right .hiw-tags { justify-content:flex-start!important; }
  .hiw-stats { overflow-x:auto; -webkit-overflow-scrolling:touch; max-width:100%; border-radius:14px; }
  .hiw-stat-div { display:none; }
  .hiw-stat { padding:18px 18px; flex-shrink:0; }
  .hiw-cta-inner { flex-direction:column; text-align:center; gap:14px; }
  .hiw-cta-btn { margin-left:0; }
}
@media(max-width:480px){
  .hiw-step { grid-template-columns:52px 1fr!important; }
  .hiw-pipeline::before { left:26px; }
  .hiw-step-icon-wrap { width:52px!important; height:52px!important; font-size:19px!important; }
  .hiw-step-body { padding:13px 14px; }
  .hiw-cta-inner { padding:18px 20px; }
}

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
#final-cta { padding:var(--sec) 0; background:var(--surface); }
.fcta-wrap {
  background:
    linear-gradient(140deg,rgba(250,251,255,.4) 0%,rgba(245,247,255,.38) 40%,rgba(248,247,255,.38) 70%,rgba(250,251,255,.42) 100%),
    url('https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?w=1920&q=75&auto=format&fit=crop');
  background-size:cover,cover;
  background-position:center,center;
  background-repeat:no-repeat,no-repeat;
  border-radius:var(--r-xl); padding:64px 48px;
  text-align:center; position:relative; overflow:hidden;
  box-shadow:0 32px 80px rgba(15,23,42,.1),0 0 0 1px rgba(79,70,229,.14);
  content-visibility:auto; contain-intrinsic-size:auto 500px;
}
.fcta-textcard {
  position:relative; z-index:1;
  display:inline-block; max-width:100%;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px) saturate(160%); -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  padding:32px 40px;
  margin-bottom:28px;
  box-shadow:0 16px 48px rgba(15,23,42,.12);
}
@media (max-width:600px) { .fcta-textcard { padding:22px 20px; border-radius:18px; } }
.fcta-wrap::before {
  content:''; position:absolute;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(79,70,229,.14) 0%,transparent 65%);
  top:-280px; right:-160px; pointer-events:none;
}
.fcta-wrap::after {
  content:''; position:absolute;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,rgba(249,115,22,.08) 0%,transparent 65%);
  bottom:-160px; left:-80px; pointer-events:none;
}
.fcta-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(249,115,22,.1); color:var(--accent-dk);
  padding:5px 15px; border-radius:var(--r-full);
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  border:1px solid rgba(249,115,22,.22); margin-bottom:18px;
}
.fcta-title {
  font-size:clamp(24px,4vw,42px); font-weight:900; color:var(--text);
  letter-spacing:-.5px; margin-bottom:14px; line-height:1.15;
  max-width:740px; margin-left:auto; margin-right:auto;
  text-shadow:0 1px 16px rgba(255,255,255,.8),0 1px 3px rgba(255,255,255,.6);
}
.fcta-title em { font-style:italic; font-family:'Playfair Display',serif; color:var(--accent-dk); }
.fcta-sub { font-size:15px; color:var(--text-3); margin-bottom:32px; text-shadow:0 1px 12px rgba(255,255,255,.8),0 1px 3px rgba(255,255,255,.6); }
.fcta-ctas { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }
.fcta-btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 28px; border-radius:var(--r-full);
  background:linear-gradient(135deg,#FF8C00,var(--accent),var(--accent-dk));
  background-size:200% auto;
  color:#fff; font-size:14.5px; font-weight:800;
  box-shadow:0 6px 28px rgba(249,115,22,.38); transition:var(--t);
  cursor:pointer; font-family:inherit; border:none; text-decoration:none;
  position:relative; overflow:hidden;
  animation:btn-pulse 3s ease-in-out infinite 2s;
}
.fcta-btn-primary::after {
  content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  animation:btn-shimmer 3.5s ease-in-out infinite 3s; pointer-events:none;
}
.fcta-btn-primary:hover { transform:translateY(-3px); background-position:right center; box-shadow:0 12px 36px rgba(249,115,22,.48); }
.fcta-btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 24px; border-radius:var(--r-full);
  border:1.5px solid rgba(79,70,229,.28); color:var(--primary-dk);
  font-size:14.5px; font-weight:700; transition:var(--t);
  background:rgba(255,255,255,.5);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}
.fcta-btn-outline:hover { background:rgba(79,70,229,.08); border-color:rgba(79,70,229,.5); transform:translateY(-2px); }
.fcta-btn-wa {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 24px; border-radius:var(--r-full);
  background:linear-gradient(135deg,#25D366,#1da851); color:#fff;
  font-size:14.5px; font-weight:700; transition:var(--t);
  box-shadow:0 4px 20px rgba(37,211,102,.28);
}
.fcta-btn-wa:hover { background:linear-gradient(135deg,#1da851,#17a845); transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.4); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#footer {
  background:linear-gradient(170deg,#0A0E1F 0%,#0F172A 55%,#080C1A 100%);
  padding:64px 0 0; position:relative; overflow:hidden;
}
#footer::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(79,70,229,.4) 30%,rgba(124,58,237,.3) 70%,transparent 100%);
  pointer-events:none;
}
#footer::after {
  content:''; position:absolute; top:-200px; left:-100px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(79,70,229,.07) 0%,transparent 65%);
  pointer-events:none;
}
.footer-inner { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.2fr; gap:44px; margin-bottom:48px; }
.footer-logo { margin-bottom:16px; }
.footer-logo-pill { display:inline-flex; max-width:100%; align-items:center; background:#fff; border-radius:12px; padding:10px 16px; box-shadow:0 4px 24px rgba(0,0,0,.4); border:1px solid rgba(255,255,255,.06); box-sizing:border-box; }
.footer-logo-img  { height:clamp(40px,9vw,110px); width:auto; display:block; object-fit:contain; max-width:100%; }
.fl-icon {
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(135deg,var(--primary),var(--violet));
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; flex-shrink:0;
}
.fl-name { font-size:17px; font-weight:800; color:#fff; }
.fl-name em { font-style:normal; color:var(--primary-mid); }
.fl-tagline { font-size:11px; color:rgba(255,255,255,.4); font-weight:500; }
.footer-desc { font-size:14px; color:rgba(255,255,255,.5); line-height:1.8; margin-bottom:20px; }
.footer-social { display:flex; gap:9px; }
.footer-social a {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.45); font-size:13px; transition:var(--t-sm);
}
.footer-social a:hover { color:#fff; border-color:var(--primary); background:rgba(79,70,229,.2); }
.footer-col h4 { font-size:11px; font-weight:800; color:rgba(255,255,255,.85); text-transform:uppercase; letter-spacing:2px; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col li a { font-size:14px; color:rgba(255,255,255,.48); font-weight:500; transition:var(--t-sm); }
.footer-col li a:hover { color:#fff; padding-left:4px; }
.footer-social a:hover { color:#fff; border-color:var(--primary); background:rgba(79,70,229,.25); transform:translateY(-2px); }
.footer-contact-info { display:flex; flex-direction:column; gap:9px; margin-top:18px; }
.fci-item { display:flex; align-items:center; gap:7px; font-size:13px; color:rgba(255,255,255,.5); font-weight:500; }
.fci-item i { color:var(--primary-mid); font-size:12px; flex-shrink:0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:18px 0; }
.footer-bottom-inner {
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.35); font-weight:500;
}

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.wa-float {
  position:fixed; bottom:26px; right:26px; z-index:9000;
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(145deg,#25D366 0%,#1DA851 100%);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  box-shadow:0 6px 22px rgba(37,211,102,.42), 0 2px 8px rgba(0,0,0,.18);
  transition:transform .2s ease, box-shadow .2s ease;
  animation:float-wa 4s ease-in-out infinite;
}
.wa-float:hover { transform:scale(1.08); box-shadow:0 10px 28px rgba(37,211,102,.55); animation:none; }
.wa-float i { font-size:26px; line-height:1; }
.wa-float-label { display:none; }
@keyframes float-wa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
#back-to-top {
  position:fixed; bottom:26px; right:90px; z-index:9000;
  width:46px; height:46px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-primary); cursor:pointer;
  opacity:0; transform:translateY(16px) scale(.85);
  transition:opacity .3s, transform .35s var(--ease-spring);
  pointer-events:none; overflow:hidden;
  /* on mobile moves to left side — see responsive block */
}
#back-to-top.visible { opacity:1; transform:translateY(0) scale(1); pointer-events:all; }
#back-to-top:hover { background:var(--primary-dk); transform:translateY(-3px) scale(1.05); }
#back-to-top svg { position:absolute; inset:0; width:100%; height:100%; }
#back-to-top i { position:relative; z-index:1; font-size:14px; }
#btt-ring { transition:stroke-dashoffset .1s linear; }

/* ════════════════════════════════════════
   TYPEWRITER
════════════════════════════════════════ */
.gradient-text {
  background:linear-gradient(135deg,#4F46E5 0%,#7C3AED 50%,#EC4899 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.btn-primary-sm {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 18px; border-radius:var(--r-full);
  background:var(--primary); color:#fff; font-size:12.5px; font-weight:700; transition:var(--t);
}
.btn-primary-sm:hover { background:var(--primary-dk); transform:translateY(-1px); }
.btn-outline-sm {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 16px; border-radius:var(--r-full);
  border:1.5px solid rgba(255,255,255,.25); color:rgba(255,255,255,.8);
  font-size:12.5px; font-weight:700; transition:var(--t);
}
.btn-outline-sm:hover { border-color:rgba(255,255,255,.5); color:#fff; }

/* ════════════════════════════════════════
   GSAP INITIAL STATES
════════════════════════════════════════ */
.gsap-fade-up    { opacity:0; transform:translateY(28px); }
.gsap-fade-right { opacity:0; transform:translateX(36px); }
.gsap-scale      { opacity:0; transform:scale(.94); }

/* ════════════════════════════════════════
   SWIPER
════════════════════════════════════════ */
.swiper-pagination-bullet { background:rgba(255,255,255,.3) !important; }
.swiper-pagination-bullet-active { background:#fff !important; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* ── 1280px — Large tablet / small desktop ── */
@media (max-width:1280px) {
  .hero-inner { grid-template-columns:1fr 340px; gap:48px; }
  .courses-grid { grid-template-columns:repeat(4,1fr); gap:14px; }
  .enroll-grid  { grid-template-columns:repeat(4,1fr); gap:14px; }
  .why-grid { grid-template-columns:repeat(4,1fr); }
  .master-card { grid-template-columns:1fr 320px; padding:36px 40px; gap:40px; }
  .resources-grid { grid-template-columns:repeat(3,1fr); }
  .footer-inner { grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:36px; }
  .tg-label { min-width:160px; }
}

/* ── 1024px — Tablet landscape / nav collapses ── */
@media (max-width:1024px) {
  .nav-center { display:none; }
  .hamburger { display:flex; }
  .nav-demo-btn { display:none; }

  #hero { padding-bottom:80px; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; gap:40px; text-align:center; }
  .hero-content { align-items:center; text-align:center; }
  .hero-eyebrow { justify-content:center; }
  .hero-sub { text-align:center; max-width:600px; margin:0 auto; }
  .hero-ctas { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-rating { justify-content:center; }
  .hero-visual { max-width:480px; margin:0 auto; }
  .ht-label { align-self:center; }

  .master-card { grid-template-columns:1fr; gap:28px; }
  .mc-right { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

  .why-grid { grid-template-columns:repeat(3,1fr); }
  .rm-grid  { grid-template-columns:repeat(2,1fr); }
  .tg-row   { flex-direction:column; align-items:flex-start; gap:10px; }

  .faq-wrap { grid-template-columns:1fr; }
  .faq-left { position:static; }
  .faq-sidebar-cta { flex-direction:row; align-items:center; flex-wrap:wrap; }

  .footer-inner { grid-template-columns:1fr 1fr; gap:32px; }
  .courses-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .enroll-grid  { grid-template-columns:repeat(2,1fr); gap:14px; }

  .pricing-grid { grid-template-columns:1fr 1fr; }
  .price-card-featured { order:-1; grid-column:1/-1; transform:none; animation:none; padding:36px 28px; }

  .at-panel { flex-direction:column; }
  /* No translateY on enroll featured in 2-col */
  .enroll-card-featured { transform:none; }
}

/* ── 768px — Tablet portrait ── */
@media (max-width:768px) {
  :root { --sec: clamp(32px,5vw,48px); }

  /* Hide nav dots — no room, tiny tap target */
  #nav-dots { display:none; }
  /* Nav enquire btn in mobile menu already */
  .nav-enquire-btn { display:none; }

  .courses-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .enroll-grid  { grid-template-columns:1fr; gap:12px; }
  .why-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
  .rm-grid { grid-template-columns:1fr; }
  .proj-grid { grid-template-columns:1fr; }
  .resources-grid { grid-template-columns:repeat(2,1fr); }
  .master-card { padding:24px 20px; }
  .mc-right { grid-template-columns:1fr; }
  .fcta-wrap { padding:36px 24px; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:24px; }
  .stats-inner { display:grid; grid-template-columns:repeat(2,1fr); }
  .stat-item::after { display:none; }
  .hero-visual { max-width:400px; }
  .enroll-card-featured { transform:none; }

  /* Testimonials — lighter blur for mobile perf */
  .tcard { backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }

  /* Section headings comfortable on tablet */
  .sh { font-size:clamp(24px,4vw,36px); }

  /* Swiper bullets bigger for touch */
  .swiper-pagination-bullet { width:10px !important; height:10px !important; }
}

/* ── 640px — Large phones (new breakpoint) ── */
@media (max-width:640px) {
  :root { --sec: clamp(28px,5vw,44px); }

  .courses-grid { grid-template-columns:1fr; gap:12px; }
  .enroll-grid  { grid-template-columns:1fr; gap:12px; }
  .why-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:22px; }

  /* Navbar: hide CTA btn — it's in mobile menu */
  .nav-cta-btn { display:none; }

  /* Navbar compacted */
  #navbar { height:60px; }
  #hero { padding-top:calc(var(--bar-h) + 60px + 32px); }
  #mobile-menu { top:calc(var(--bar-h) + 60px); }

  /* Hero visual: simplify at this size */
  .hero-visual { max-width:100%; }
  /* Hero pills overflow with stacked layout */
  .hero-pill { display:none; }

  /* Float stack: move back-to-top to left side (bottom offset owned by the
     ≤640px float-stack block further down — single source of truth) */
  #back-to-top { right:auto; left:20px; }

  /* Footer bottom stacks */
  .footer-bottom-inner { flex-direction:column; gap:6px; text-align:center; }

  /* Final CTA buttons stack */
  .fcta-ctas { flex-direction:column; align-items:stretch; gap:10px; }
  .fcta-btn-primary, .fcta-btn-outline, .fcta-btn-wa { justify-content:center; }

  /* Why cards text size */
  .why-card { padding:20px 16px; }
  .why-card h3 { font-size:14.5px; }
  .why-card p  { font-size:13px; }
}

/* ── 480px — Small phones ── */
@media (max-width:480px) {
  :root { --sec: clamp(24px,5vw,36px); }

  .ht-tw  { font-size:clamp(28px,8vw,38px); letter-spacing:-1.5px; }
  .ht-sub { font-size:clamp(17px,5vw,22px); }
  .hero-ctas { flex-direction:column; align-items:stretch; gap:10px; }
  .btn-primary-hero, .btn-outline-hero { justify-content:center; min-height:50px; }
  .hero-eyebrow { flex-direction:column; align-items:center; gap:6px; justify-content:center; }
  .heb-sep { display:none; }
  .hero-visual { max-width:100%; }

  /* Nav brand: hide sub on tiny screens */
  .nav-brand-sub { display:none; }

  /* Grids */
  .why-grid { grid-template-columns:1fr; }
  .rm-grid  { grid-template-columns:1fr; }
  .resources-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:20px; }
  .footer-bottom-inner { flex-direction:column; gap:6px; text-align:center; }

  /* Cards */
  .mc-ctas { flex-direction:column; }
  .btn-master-primary, .btn-master-outline { justify-content:center; }
  .roadmap-wrap { grid-template-columns:1fr; }

  /* Float buttons — size/side only here; horizontal (right) AND vertical
     (bottom) offsets are both owned entirely by the ≤640px block below, since
     #vc-wrap/#wt-chat's own base rules (later in this file) were silently
     re-winning over a "right" override placed here — same class of bug this
     comment already called out for "bottom", just not caught for "right" too */
  .wa-float { width:52px; height:52px; }
  .wa-float i { font-size:24px; }
  #back-to-top { right:auto; left:20px; }

  /* Panels full-width on tiny screens */
  .wt-panel { width:calc(100vw - 24px); right:0; }
  #vc-panel { width:calc(100vw - 24px); right:0; }

  /* Sections */
  .fcta-wrap { padding:28px 18px; }
  .fcta-ctas { flex-direction:column; align-items:stretch; gap:10px; }
  .fcta-btn-primary, .fcta-btn-outline, .fcta-btn-wa { justify-content:center; }

  /* Stats compact */
  .stat-val  { font-size:clamp(22px,6vw,30px); }
  .stat-lbl  { font-size:10px; }
  .stat-item { padding:14px 8px; }

  /* Course card compact padding */
  .cc-body { padding:12px 14px 14px; gap:7px; }
  .cc-title { font-size:14px; }
  .cc-footer { padding-top:9px; }

  /* Enroll card compact */
  .enroll-card { padding:18px 16px 16px; }
  .ec-title { font-size:15px; }
  .ec-desc  { font-size:11.5px; margin-bottom:12px; }
  .ec-list  { gap:7px; }
  .ec-list li { font-size:12px; }
  .enroll-card-featured { transform:none; }

  /* Pricing single col */
  .price-card-featured { animation:none; }

  /* Why grid compact */
  .why-card { padding:18px 14px; }
  .wc-icon-wrap { width:44px; height:44px; font-size:18px; margin-bottom:10px; }

  /* FAQ */
  .faq-q { padding:15px 16px; font-size:14px; }
  .faq-a { padding:0 16px; font-size:14px; }

  /* Section header */
  .sec-header { margin-bottom:32px; }
  .sh { font-size:clamp(22px,6vw,30px); }
  .sp { font-size:14.5px; }
  .eyebrow { font-size:10px; padding:6px 14px; }

  /* Roadmap card */
  .rm-card { padding:20px 16px; }
  .rm-title { font-size:15.5px; }

  /* Testimonial card */
  .tcard { padding:18px 16px; }
  .tc-quote { font-size:13.5px; line-height:1.75; }
  .tc-quote::before { font-size:44px; }
}

/* ── 360px — Tiny phones ── */
@media (max-width:360px) {
  :root { --sec: 24px; }

  .sw { width:92%; }

  .ht-tw { font-size:clamp(26px,8vw,32px); }
  .ht-sub { font-size:16px; }

  #navbar { height:56px; padding:0 4%; }
  #hero { padding-top:calc(var(--bar-h) + 56px + 24px); }
  #mobile-menu { top:calc(var(--bar-h) + 56px); }
  .nav-logo-img { height:42px; max-width:180px; }
  .nav-logo-icon { width:36px; height:36px; font-size:15px; }
  .nav-brand-name { font-size:15px; }

  .sh { font-size:clamp(20px,7vw,26px); }
  .sp { font-size:13.5px; }
  .sec-header { margin-bottom:24px; }

  /* Avoid clutter on tiny screen */
  .hero-pill { display:none; }

  /* Course cards full single col */
  .cc-header { padding:10px 12px; }
  .cc-body { padding:10px 12px 12px; }
  .cc-footer { padding-top:8px; gap:6px; }
  .cc-price { font-size:10px; padding:3px 7px; }
  .cc-btn { font-size:10px; padding:5px 10px; }

  .enroll-card { padding:14px 12px; }
  .ec-pay-btn { padding:10px 12px; font-size:12px; }
  .ec-btn { padding:9px 12px; font-size:12px; }
}

.sh-white    { color:#fff; }
.sh-white em { color:#FCD34D; }
.sp-white    { color:rgba(255,255,255,.65); }

/* ════════════════════════════════════════
   VOICE WIDGET — browser-native, $0
════════════════════════════════════════ */
#vc-wrap {
  position:fixed; bottom:170px; right:26px; z-index:9400;
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
  pointer-events:none;
}
#vc-wrap > * { pointer-events:auto; }

/* FAB toggle */
#vc-toggle {
  position:relative; width:56px; height:56px; border-radius:50%;
  background:linear-gradient(145deg,#1e1b4b 0%,#312e81 55%,#4C1D95 100%);
  border:none; cursor:pointer; flex-shrink:0;
  box-shadow:0 6px 22px rgba(79,70,229,.5), 0 2px 8px rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s ease, box-shadow .2s ease;
}
#vc-toggle:hover { transform:scale(1.08); box-shadow:0 10px 32px rgba(79,70,229,.6), 0 2px 8px rgba(0,0,0,.3); }

.vc-ti {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; line-height:1; color:#fff; pointer-events:none;
  transition:opacity .26s ease, transform .26s cubic-bezier(.34,1.56,.64,1);
}
.vc-ti-open  { opacity:1;  transform:scale(1)   rotate(0deg); }
.vc-ti-close { opacity:0;  transform:scale(.55) rotate(-90deg); }
#vc-wrap.vc-open .vc-ti-open  { opacity:0;  transform:scale(.55) rotate(90deg); }
#vc-wrap.vc-open .vc-ti-close { opacity:1;  transform:scale(1)   rotate(0deg); }

.vc-pulse-ring {
  position:absolute; inset:-5px; border-radius:50%;
  border:2px solid rgba(99,102,241,.55);
  animation:vc-pulse 2.4s ease-out infinite; pointer-events:none;
}
#vc-wrap.vc-open .vc-pulse-ring { animation:none; opacity:0; }
@keyframes vc-pulse {
  0%   { transform:scale(1);    opacity:.7; }
  70%  { transform:scale(1.38); opacity:0; }
  100% { transform:scale(1.38); opacity:0; }
}

/* Panel */
#vc-panel {
  position:absolute; bottom:calc(100% + 12px); right:0;
  width:340px; background:#fff; border-radius:20px;
  box-shadow:0 20px 70px rgba(0,0,0,.16), 0 4px 18px rgba(79,70,229,.10), 0 0 0 1px rgba(79,70,229,.08);
  display:flex; flex-direction:column; overflow:hidden;
  max-height:min(480px,calc(100vh - 120px));
  transform:translateY(16px) scale(.96); opacity:0; pointer-events:none !important;
  transition:transform .32s cubic-bezier(.34,1.4,.64,1), opacity .22s ease;
  transform-origin:bottom right;
}
#vc-wrap.vc-open #vc-panel { transform:translateY(0) scale(1); opacity:1; pointer-events:auto !important; }

/* Header */
.vc-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 15px; flex-shrink:0;
  background:linear-gradient(130deg,#3730A3 0%,#4F46E5 50%,#7C3AED 100%);
  position:relative; overflow:hidden;
}
.vc-head::after {
  content:''; position:absolute; right:-30px; top:-30px;
  width:120px; height:120px; border-radius:50%;
  background:rgba(255,255,255,.06); pointer-events:none;
}
.vc-head-left { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
.vc-avatar {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:15px; flex-shrink:0; position:relative;
}
.vc-online-dot {
  position:absolute; bottom:0; right:0; width:10px; height:10px;
  border-radius:50%; background:#22C55E; border:2px solid #4F46E5;
}
.vc-head-name { color:#fff; font-weight:700; font-size:13.5px; }
.vc-head-status {
  color:rgba(255,255,255,.72); font-size:11px;
  display:flex; align-items:center; gap:4px; margin-top:1px;
}
.vc-live-dot {
  width:5px; height:5px; border-radius:50%; background:#4ADE80; flex-shrink:0;
  animation:vc-blink 1.5s ease-in-out infinite;
}
@keyframes vc-blink { 0%,100%{opacity:1}50%{opacity:.25} }
#vc-close {
  background:rgba(255,255,255,.12); border:none; cursor:pointer;
  width:26px; height:26px; border-radius:50%; color:rgba(255,255,255,.9);
  font-size:12px; display:flex; align-items:center; justify-content:center;
  transition:background .15s; flex-shrink:0; position:relative; z-index:1;
}
#vc-close:hover { background:rgba(255,255,255,.25); }

/* Messages */
#vc-msgs {
  flex:1; overflow-y:auto; padding:12px 13px 6px;
  display:flex; flex-direction:column; gap:9px;
  scroll-behavior:smooth; min-height:80px;
}
#vc-msgs::-webkit-scrollbar { width:3px; }
#vc-msgs::-webkit-scrollbar-thumb { background:rgba(79,70,229,.15); border-radius:3px; }

.vc-msg  { display:flex; flex-direction:column; max-width:86%; }
.vc-bot  { align-self:flex-start; }
.vc-user { align-self:flex-end; }
.vc-bubble {
  padding:8px 12px; border-radius:14px;
  font-size:13px; line-height:1.55; word-break:break-word;
}
.vc-bot  .vc-bubble { background:#F3F4F6; color:#111827; border-bottom-left-radius:4px; }
.vc-user .vc-bubble { background:linear-gradient(135deg,#4F46E5,#7C3AED); color:#fff; border-bottom-right-radius:4px; }

/* Controls */
.vc-controls {
  display:flex; flex-direction:column; align-items:center; gap:10px;
  padding:16px 16px 12px; flex-shrink:0;
  border-top:1px solid #F3F4F6;
}

/* Sound waves (animate when listening/speaking) */
.vc-waves {
  display:flex; align-items:center; gap:3px; height:28px;
}
.vc-waves span {
  display:block; width:3px; border-radius:3px;
  background:var(--primary); opacity:.25;
  height:6px; transition:height .1s ease;
}
#vc-wrap[data-state="listening"] .vc-waves span { opacity:1; animation:vc-wave .7s ease-in-out infinite; }
#vc-wrap[data-state="speaking"]  .vc-waves span { opacity:1; animation:vc-wave .5s ease-in-out infinite; background:#22C55E; }
.vc-waves span:nth-child(1) { animation-delay:0s; }
.vc-waves span:nth-child(2) { animation-delay:.12s; }
.vc-waves span:nth-child(3) { animation-delay:.24s; }
.vc-waves span:nth-child(4) { animation-delay:.12s; }
.vc-waves span:nth-child(5) { animation-delay:0s; }
@keyframes vc-wave {
  0%,100% { height:5px; }
  50%      { height:22px; }
}

/* Mic button */
.vc-mic-btn {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,#4F46E5,#7C3AED);
  border:none; cursor:pointer; color:#fff; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(79,70,229,.4);
  transition:transform .18s, box-shadow .18s;
}
.vc-mic-btn:hover:not(:disabled) { transform:scale(1.08); box-shadow:0 8px 28px rgba(79,70,229,.5); }
.vc-mic-btn:disabled { opacity:.38; cursor:not-allowed; }

/* Active mic states */
#vc-wrap[data-state="listening"] .vc-mic-btn { background:linear-gradient(135deg,#EF4444,#DC2626); animation:vc-mic-pulse 1s ease-in-out infinite; }
#vc-wrap[data-state="thinking"]  .vc-mic-btn { background:linear-gradient(135deg,#F59E0B,#D97706); }
#vc-wrap[data-state="speaking"]  .vc-mic-btn { background:linear-gradient(135deg,#22C55E,#16A34A); }
@keyframes vc-mic-pulse { 0%,100%{box-shadow:0 4px 18px rgba(239,68,68,.4)} 50%{box-shadow:0 4px 28px rgba(239,68,68,.7),0 0 0 8px rgba(239,68,68,.08)} }

.vc-hint {
  font-size:11.5px; font-weight:600; color:var(--text-4); text-align:center;
}
#vc-wrap[data-state="listening"] .vc-hint { color:#EF4444; }
#vc-wrap[data-state="thinking"]  .vc-hint { color:#F59E0B; }
#vc-wrap[data-state="speaking"]  .vc-hint { color:#22C55E; }

/* Footer */
.vc-footer {
  text-align:center; font-size:10px; font-weight:600;
  color:var(--text-4); padding:7px 16px 11px;
  display:flex; align-items:center; justify-content:center; gap:5px;
}
.vc-footer i { color:var(--green); font-size:9px; }

/* Mobile — overridden by main responsive block; keep toggle size only */
@media (max-width:480px) {
  #vc-toggle { width:52px; height:52px; }
}

/* ════════════════════════════════════════
   AI CHATBOT WIDGET
════════════════════════════════════════ */
#wt-chat {
  position:fixed; bottom:98px; right:26px; z-index:9500;
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
  pointer-events:none;
}
#wt-chat > * { pointer-events:auto; }

/* ── FAB wrapper + spinning ring ── */
.wt-fab {
  position:relative; flex-shrink:0;
  width:60px; height:60px;
  display:flex; align-items:center; justify-content:center;
}
.wt-fab::before {
  content:''; position:absolute; inset:-2px; border-radius:50%;
  background:conic-gradient(
    #4F46E5 0deg, #7C3AED 80deg, #EC4899 160deg,
    #06B6D4 240deg, #22C55E 300deg, #4F46E5 360deg
  );
  animation:wt-ring-spin 5s linear infinite;
  z-index:0;
}
@keyframes wt-ring-spin { to { transform:rotate(360deg); } }

/* ── Toggle Button ── */
.wt-toggle {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(145deg,#1e1b4b 0%,#312e81 55%,#4C1D95 100%);
  border:none; cursor:pointer; flex-shrink:0;
  position:relative; z-index:1;
  box-shadow:0 6px 22px rgba(79,70,229,.5), 0 2px 8px rgba(0,0,0,.3);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex; align-items:center; justify-content:center;
}
.wt-toggle:hover {
  transform:scale(1.06);
  box-shadow:0 10px 32px rgba(79,70,229,.6), 0 2px 8px rgba(0,0,0,.3);
}
/* both icons: fill button, flex-center, identical font rules */
.wt-ti {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; line-height:1; color:#fff; pointer-events:none;
  transition:opacity .26s ease, transform .26s cubic-bezier(.34,1.56,.64,1);
}
.wt-ti-open  { opacity:1;  transform:scale(1)   rotate(0deg); }
.wt-ti-close { opacity:0;  transform:scale(.55) rotate(-90deg); }
#wt-chat.wt-open .wt-ti-open  { opacity:0;  transform:scale(.55) rotate(90deg); }
#wt-chat.wt-open .wt-ti-close { opacity:1;  transform:scale(1)   rotate(0deg); }

.wt-badge {
  position:absolute; top:-6px; right:-6px; z-index:2;
  width:18px; height:18px; border-radius:50%;
  background:linear-gradient(135deg,#EF4444,#DC2626); color:#fff;
  font-size:9.5px; font-weight:800;
  border:2.5px solid #fff; display:flex; align-items:center; justify-content:center;
  transition:transform .2s, opacity .2s;
  animation:wt-badge-pop .45s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow:0 2px 8px rgba(239,68,68,.5);
}
@keyframes wt-badge-pop { 0%{transform:scale(0) rotate(-30deg)}100%{transform:scale(1) rotate(0)} }

/* ── Panel ── */
.wt-panel {
  position:absolute; bottom:calc(100% + 12px); right:0;
  width:360px;
  background:#fff; border-radius:20px;
  box-shadow:0 20px 70px rgba(0,0,0,.16), 0 4px 18px rgba(79,70,229,.10), 0 0 0 1px rgba(79,70,229,.08);
  display:flex; flex-direction:column; overflow:hidden;
  transform:translateY(16px) scale(.96); opacity:0; pointer-events:none !important;
  transition:transform .32s cubic-bezier(.34,1.4,.64,1), opacity .22s ease;
  transform-origin:bottom right;
  max-height:min(520px, calc(100vh - 180px));
}
#wt-chat.wt-open .wt-panel {
  transform:translateY(0) scale(1); opacity:1; pointer-events:auto !important;
}

/* ── Header ── */
.wt-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 15px; flex-shrink:0;
  background:linear-gradient(130deg,#3730A3 0%,#4F46E5 50%,#7C3AED 100%);
  position:relative; overflow:hidden;
}
.wt-head::after {
  content:''; position:absolute; right:-30px; top:-30px;
  width:120px; height:120px; border-radius:50%;
  background:rgba(255,255,255,.06); pointer-events:none;
}
.wt-head-left { display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
.wt-avatar {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.15); border:2px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; position:relative; flex-shrink:0;
}
.wt-avatar-icon { color:#fff; font-size:15px; }
.wt-online-dot {
  position:absolute; bottom:0; right:0; width:10px; height:10px;
  border-radius:50%; background:#22C55E; border:2px solid #4F46E5;
}
.wt-head-name { color:#fff; font-weight:700; font-size:13.5px; letter-spacing:.01em; }
.wt-head-status {
  color:rgba(255,255,255,.72); font-size:11px; display:flex; align-items:center; gap:4px; margin-top:1px;
}
.wt-live-dot {
  width:5px; height:5px; border-radius:50%; background:#4ADE80; flex-shrink:0;
  animation:wt-blink 1.5s ease-in-out infinite;
}
@keyframes wt-blink { 0%,100%{opacity:1}50%{opacity:.25} }
.wt-close {
  background:rgba(255,255,255,.12); border:none; cursor:pointer;
  width:26px; height:26px; border-radius:50%;
  color:rgba(255,255,255,.9); font-size:12px;
  display:flex; align-items:center; justify-content:center;
  transition:background .15s; flex-shrink:0; position:relative; z-index:1;
}
.wt-close:hover { background:rgba(255,255,255,.25); }

/* ── Messages ── */
.wt-msgs {
  flex:1; overflow-y:auto; padding:14px 13px 8px;
  display:flex; flex-direction:column; gap:10px;
  scroll-behavior:smooth; min-height:0;
}
.wt-msgs::-webkit-scrollbar { width:3px; }
.wt-msgs::-webkit-scrollbar-track { background:transparent; }
.wt-msgs::-webkit-scrollbar-thumb { background:rgba(79,70,229,.15); border-radius:3px; }

.wt-msg  { display:flex; flex-direction:column; max-width:84%; }
.wt-bot  { align-self:flex-start; align-items:flex-start; }
.wt-user { align-self:flex-end;   align-items:flex-end; }

.wt-bubble {
  padding:9px 13px; border-radius:16px;
  font-size:13.5px; line-height:1.58; word-break:break-word;
}
.wt-bot  .wt-bubble { background:#F3F4F6; color:#111827; border-bottom-left-radius:4px; }
.wt-user .wt-bubble {
  background:linear-gradient(135deg,#4F46E5,#7C3AED); color:#fff; border-bottom-right-radius:4px;
}
.wt-bubble a { color:inherit; text-decoration:underline; }
.wt-bubble code { background:rgba(0,0,0,.07); border-radius:3px; padding:1px 4px; font-size:12px; }
.wt-ts { font-size:10px; color:#9CA3AF; margin-top:2px; }

/* ── Typing Indicator ── */
.wt-typing .wt-bubble {
  display:flex; align-items:center; gap:4px; padding:12px 14px;
}
.wt-dot {
  display:inline-block; width:6px; height:6px; border-radius:50%; background:#9CA3AF;
  animation:wt-bounce .8s ease-in-out infinite;
}
.wt-dot:nth-child(2) { animation-delay:.16s; }
.wt-dot:nth-child(3) { animation-delay:.32s; }
@keyframes wt-bounce { 0%,80%,100%{transform:translateY(0)}40%{transform:translateY(-5px)} }

/* ── Quick Chips ── */
.wt-chips {
  padding:7px 13px 9px; display:flex; flex-wrap:wrap; gap:6px; flex-shrink:0;
  border-top:1px solid #F3F4F6;
}
.wt-chip {
  padding:5px 12px; border-radius:20px; font-size:12px; font-weight:600;
  background:#EEF2FF; color:#4F46E5; border:1px solid #C7D2FE; cursor:pointer;
  transition:background .15s, transform .1s, box-shadow .1s;
  font-family:var(--font-body);
}
.wt-chip:hover { background:#E0E7FF; transform:translateY(-1px); box-shadow:0 2px 8px rgba(79,70,229,.15); }

/* ── Input Row ── */
.wt-input-row {
  display:flex; align-items:flex-end; gap:8px;
  padding:9px 11px 11px; border-top:1px solid #F3F4F6; flex-shrink:0;
}
.wt-input {
  flex:1; border:1.5px solid #E5E7EB; border-radius:12px;
  padding:8px 12px; font-size:13.5px; font-family:var(--font-body);
  resize:none; outline:none; max-height:96px; overflow-y:auto;
  transition:border-color .15s, box-shadow .15s; line-height:1.45; color:#111827;
  background:#fff;
}
.wt-input:focus { border-color:#4F46E5; box-shadow:0 0 0 3px rgba(79,70,229,.09); }
.wt-input::placeholder { color:#B0B7C3; }
.wt-send {
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  background:linear-gradient(135deg,#4F46E5,#7C3AED); border:none; cursor:pointer;
  color:#fff; font-size:13px; display:flex; align-items:center; justify-content:center;
  transition:transform .15s, opacity .15s, box-shadow .15s;
  box-shadow:0 2px 10px rgba(79,70,229,.3);
}
.wt-send:hover:not(:disabled) { transform:scale(1.08); box-shadow:0 4px 14px rgba(79,70,229,.4); }
.wt-send:disabled { opacity:.38; cursor:not-allowed; }

/* ── Responsive — overridden by main responsive block; keep sizes only ── */
@media (max-width:480px) {
  .wt-fab { width:56px; height:56px; }
  .wt-toggle { width:52px; height:52px; }
}

/* ════════════════════════════════════════════════
   LEAD CAPTURE MODAL
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════
   BOOKING MODAL (Razorpay)
════════════════════════════════════════ */
#bk-overlay {
  position:fixed; inset:0; z-index:9950;
  background:rgba(0,0,0,.65); backdrop-filter:blur(6px);
  display:none; align-items:center; justify-content:center; padding:20px;
}
#bk-overlay.bk-open { display:flex; }
#bk-box {
  background:#fff; border-radius:22px; padding:32px 28px 26px;
  width:100%; max-width:480px; position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,.32);
  animation:bkUp .36s cubic-bezier(.34,1.4,.64,1);
  max-height:92vh; overflow-y:auto;
}
@keyframes bkUp { from{transform:translateY(40px);opacity:0} to{transform:translateY(0);opacity:1} }
#bk-x {
  position:absolute; top:12px; right:14px;
  background:none; border:none; font-size:24px; line-height:1;
  color:#94A3B8; cursor:pointer; padding:2px 7px; border-radius:6px; z-index:10;
}
#bk-x:hover { background:#F1F5F9; color:#334155; }
.bk-progress { display:flex; align-items:center; margin-bottom:20px; }
.bk-ps { display:flex; align-items:center; gap:6px; flex-shrink:0; }
.bk-pn {
  width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:800;
  background:#E2E8F0; color:#94A3B8; transition:background .3s,color .3s;
}
.bk-pt { font-size:12px; font-weight:600; color:#94A3B8; white-space:nowrap; transition:color .3s; }
.bk-ps.bk-ps-active .bk-pn { background:linear-gradient(135deg,#4F46E5,#7C3AED); color:#fff; }
.bk-ps.bk-ps-active .bk-pt { color:#4F46E5; }
.bk-ps.bk-ps-done .bk-pn { background:#22C55E; color:#fff; }
.bk-ps.bk-ps-done .bk-pt { color:#22C55E; }
.bk-pl-line { flex:1; height:2px; background:#E2E8F0; margin:0 8px; }
.bk-course-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,rgba(79,70,229,.08),rgba(124,58,237,.08));
  border:1.5px solid rgba(79,70,229,.2); border-radius:40px; padding:6px 16px;
  font-size:13px; font-weight:700; color:#4F46E5; margin-bottom:10px;
}
.bk-price-row { display:flex; align-items:baseline; gap:10px; margin-bottom:18px; }
.bk-amt { font-size:30px; font-weight:900; color:#0F172A; }
.bk-amt-note { font-size:12px; color:#64748B; font-weight:500; }
.bk-field { margin-bottom:12px; }
.bk-field label {
  display:block; font-size:11px; font-weight:700; color:#475569;
  text-transform:uppercase; letter-spacing:.5px; margin-bottom:5px;
}
.bk-req { color:#EF4444; }
.bk-opt { font-size:10px; color:#94A3B8; text-transform:none; letter-spacing:0; font-weight:500; }
.bk-field input,.bk-field select {
  width:100%; padding:11px 13px; border:1.5px solid #E2E8F0;
  border-radius:10px; font-size:14px; color:#1E293B; outline:none;
  transition:border-color .2s; font-family:inherit; box-sizing:border-box; background:#fff;
}
.bk-field input:focus,.bk-field select:focus { border-color:#4F46E5; box-shadow:0 0 0 3px rgba(79,70,229,.1); }
.bk-ph-wrap {
  display:flex; align-items:stretch;
  border:1.5px solid #E2E8F0; border-radius:10px;
  overflow:hidden; transition:border-color .2s;
}
.bk-ph-wrap:focus-within { border-color:#4F46E5; box-shadow:0 0 0 3px rgba(79,70,229,.1); }
.bk-ph-code {
  padding:11px 12px; background:#F8FAFC; border-right:1.5px solid #E2E8F0;
  font-size:14px; font-weight:700; color:#475569; flex-shrink:0; user-select:none;
}
.bk-ph-wrap input { border:none!important; border-radius:0!important; box-shadow:none!important; padding-left:10px; }
.bk-row2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.bk-err { font-size:11px; color:#EF4444; margin-top:4px; }
.bk-submit {
  width:100%; padding:14px 16px; margin-top:6px;
  background:linear-gradient(135deg,#4F46E5,#7C3AED);
  color:#fff; border:none; border-radius:12px;
  font-size:15px; font-weight:700; cursor:pointer;
  transition:opacity .2s,transform .15s,box-shadow .2s;
  letter-spacing:.1px; box-shadow:0 4px 20px rgba(79,70,229,.35);
}
.bk-submit:hover { opacity:.92; transform:translateY(-1px); box-shadow:0 8px 28px rgba(79,70,229,.45); }
.bk-submit:active { transform:scale(.98); }
.bk-submit:disabled { opacity:.6; cursor:default; transform:none; box-shadow:none; }
.bk-secure { font-size:11px; color:#94A3B8; text-align:center; margin-top:9px; }
.bk-tc-wrap { display:flex; align-items:flex-start; gap:9px; font-size:12px; color:#475569; margin:14px 0 4px; cursor:pointer; line-height:1.5; }
.bk-tc-wrap input[type=checkbox] { margin-top:2px; accent-color:#4F46E5; width:15px; height:15px; flex-shrink:0; cursor:pointer; }
.bk-global-err {
  margin-top:12px; padding:10px 14px;
  background:#FEF2F2; border:1px solid #FECACA; border-radius:8px;
  font-size:13px; color:#DC2626; display:flex; align-items:flex-start; gap:8px; line-height:1.5;
}
.bk-tick { font-size:56px; color:#22C55E; text-align:center; margin-bottom:14px; }
.bk-done-title { font-size:22px; font-weight:900; color:#0F172A; text-align:center; margin:0 0 8px; }
.bk-done-sub { font-size:13px; color:#64748B; text-align:center; line-height:1.6; margin:0 0 20px; }
.bk-confirm-card {
  background:#F8FAFC; border:1.5px solid #E2E8F0; border-radius:12px;
  padding:16px 18px; margin-bottom:16px;
}
.bk-cc-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:7px 0; font-size:13px; color:#475569;
}
.bk-cc-row:not(:last-child) { border-bottom:1px solid #F1F5F9; }
.bk-cc-row strong { color:#0F172A; font-weight:700; text-align:right; max-width:65%; }
.bk-meet-link {
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:linear-gradient(135deg,#4285F4,#0F9D58);
  color:#fff; padding:12px 20px; border-radius:10px;
  font-size:14px; font-weight:700; text-decoration:none;
  margin-bottom:12px; transition:opacity .2s;
}
.bk-meet-link:hover { opacity:.9; }
.bk-finish-btn {
  width:100%; padding:13px; background:#F1F5F9; border:none;
  border-radius:10px; font-size:14px; font-weight:700;
  color:#475569; cursor:pointer; transition:background .2s; font-family:inherit;
}
.bk-finish-btn:hover { background:#E2E8F0; }
@media(max-width:480px){
  #bk-box { padding:24px 16px 20px; border-radius:18px; }
  .bk-row2 { grid-template-columns:1fr; gap:8px; }
  .bk-amt { font-size:26px; }
}

#lc-overlay {
  position:fixed; inset:0; z-index:9900;
  background:rgba(0,0,0,.6); backdrop-filter:blur(5px);
  display:none; align-items:center; justify-content:center; padding:20px;
}
#lc-overlay.lc-open { display:flex; }
#lc-box {
  background:#fff; border-radius:20px; padding:36px 32px 26px;
  width:100%; max-width:420px; position:relative;
  box-shadow:0 32px 80px rgba(0,0,0,.28);
  animation:lcUp .38s cubic-bezier(.34,1.4,.64,1);
}
@keyframes lcUp { from{transform:translateY(36px);opacity:0} to{transform:translateY(0);opacity:1} }
#lc-x {
  position:absolute; top:12px; right:14px;
  background:none; border:none; font-size:24px; line-height:1;
  color:#94A3B8; cursor:pointer; padding:2px 7px; border-radius:6px;
}
#lc-x:hover { background:#F1F5F9; color:#334155; }
#lc-badge {
  width:52px; height:52px; border-radius:14px; margin:0 auto 14px;
  background:linear-gradient(135deg,#4F46E5,#7C3AED);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff;
}
#lc-title { font-size:18px; font-weight:800; color:#0F172A; text-align:center; margin:0 0 8px; }
#lc-sub { font-size:13px; color:#64748B; text-align:center; line-height:1.6; margin:0 0 22px; }
.lc-field { margin-bottom:13px; }
.lc-field label { display:block; font-size:11.5px; font-weight:700; color:#475569; text-transform:uppercase; letter-spacing:.45px; margin-bottom:5px; }
.lc-req { color:#EF4444; }
.lc-field input,.lc-field select {
  width:100%; padding:11px 13px; border:1.5px solid #E2E8F0;
  border-radius:9px; font-size:14px; color:#1E293B; outline:none;
  transition:border-color .2s; font-family:inherit; box-sizing:border-box;
}
.lc-field input:focus,.lc-field select:focus { border-color:#4F46E5; box-shadow:0 0 0 3px rgba(79,70,229,.08); }
.lc-ph-wrap {
  display:flex; align-items:stretch; border:1.5px solid #E2E8F0;
  border-radius:9px; overflow:hidden; transition:border-color .2s;
}
.lc-ph-wrap:focus-within { border-color:#4F46E5; box-shadow:0 0 0 3px rgba(79,70,229,.08); }
.lc-ph-code {
  padding:11px 12px; background:#F8FAFC; border-right:1.5px solid #E2E8F0;
  font-size:14px; font-weight:700; color:#475569; flex-shrink:0; user-select:none;
}
.lc-ph-wrap input { border:none!important; border-radius:0!important; box-shadow:none!important; padding-left:10px; }
.lc-err { font-size:11px; color:#EF4444; margin-top:4px; }
#lc-submit {
  width:100%; padding:13px 16px; margin-top:5px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff; border:none; border-radius:10px;
  font-size:15px; font-weight:700; cursor:pointer;
  transition:opacity .2s, transform .1s; letter-spacing:.1px;
}
#lc-submit:hover { opacity:.9; }
#lc-submit:active { transform:scale(.98); }
#lc-submit:disabled { opacity:.6; cursor:default; }
.lc-priv { font-size:11px; color:#94A3B8; text-align:center; margin-top:9px; }
#lc-skip {
  display:block; margin:13px auto 0; background:none; border:none;
  color:#94A3B8; font-size:12px; text-decoration:underline; cursor:pointer;
}
#lc-skip:hover { color:#64748B; }
#lc-done { text-align:center; padding:18px 4px; }
.lc-done-icon { font-size:48px; color:#22C55E; margin-bottom:12px; }
#lc-done h3 { font-size:18px; font-weight:800; color:#0F172A; margin:0 0 8px; }
#lc-done p { font-size:14px; color:#64748B; margin:0; }

@media(max-width:480px){
  #lc-box { padding:26px 18px 20px; border-radius:16px; max-width:100%; }
  #lc-title { font-size:16px; }
}
/* Modal title uses <p> for correct heading hierarchy — styled to match original h3 */
.lc-modal-title { font-size:18px; font-weight:800; color:#0F172A; text-align:center; margin:0 0 8px; }
#lc-done .lc-modal-title { font-size:18px; font-weight:800; color:#0F172A; margin:0 0 8px; }

/* ════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════ */
.skip-link {
  position:absolute; left:-9999px; top:auto; width:1px; height:1px;
  overflow:hidden; z-index:9999; background:#fff; padding:8px 16px;
  font-size:14px; font-weight:700; border-radius:4px; color:var(--primary);
}
.skip-link:focus { left:6px; top:6px; width:auto; height:auto; outline:2px solid var(--primary); }

/* ════════════════════════════════════════
   HERO LABEL — left-align fix
════════════════════════════════════════ */
.ht-label { align-self:flex-start; }

/* ════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-orb-1,.hero-orb-2,.hero-orb-3 { animation:none; }
  .hero-pill { animation:none; }
  .hv-glow { animation:none; }
  .heb-live-dot { animation:none; box-shadow:0 0 0 3px rgba(34,197,94,.25); }
  .btn-primary-hero { animation:none; }
  .btn-primary-hero::after { animation:none; }
  .scroll-line { animation:none; }
  .hv-pulse-dot { animation:none; }
  .tw-cursor { animation:none; opacity:1; }
  .wa-float { animation:none; }
  .hv-card-1,.hv-card-2,.hv-card-3,.hv-card-4 { animation:none; }
}

/* ═══════════════════════════════════════════════════════════════
   WORLD-CLASS ENHANCEMENTS
   Custom cursor · Glass panel · Grain · Mobile nav · Micro-motion
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero enrollment panel — glassmorphism upgrade ── */
.hv-panel {
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  background:rgba(255,255,255,.88);
  border:1.5px solid rgba(255,255,255,.65);
  box-shadow:
    0 8px 40px rgba(79,70,229,.12),
    0 36px 72px rgba(15,23,42,.07),
    0 2px 8px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.85);
}

/* ── Premium hero grain texture ── */
#hero::before {
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat:repeat; background-size:200px;
  pointer-events:none; z-index:0; opacity:.5;
}

/* ── CTA buttons — attention pulse ── */
@keyframes shimmer-pulse {
  0%   { box-shadow:0 0 0 0 rgba(79,70,229,.4); }
  70%  { box-shadow:0 0 0 10px rgba(79,70,229,0); }
  100% { box-shadow:0 0 0 0 rgba(79,70,229,0); }
}
.nav-cta-btn, .fcta-btn-primary {
  animation:shimmer-pulse 2.8s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
  .nav-cta-btn, .fcta-btn-primary { animation:none; }
}

/* ── Nav link hover — gradient underline slide ── */
.nav-center li a { position:relative; }
.nav-center li a::after {
  content:''; position:absolute;
  bottom:3px; left:13px;
  width:0; height:2px; border-radius:1px;
  background:linear-gradient(90deg,var(--primary),var(--violet));
  transition:width .3s var(--ease);
}
.nav-center li a:hover::after { width:calc(100% - 26px); }

/* ── Scroll-reveal baseline (JS adds .reveal-up + .visible) ── */
.reveal-up {
  opacity:0; transform:translateY(24px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-up.visible { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity:1; transform:none; transition:none; }
}

/* ── Performance: skip offscreen rendering for late sections ── */
#faq, #footer {
  content-visibility:auto;
  contain-intrinsic-size:auto 900px;
}

/* ── Stats — tabular numerals for smooth counting ── */
.stat-val, .hv-stat-val { font-variant-numeric:tabular-nums; }

/* ── Mobile bottom nav ── */
.mobile-bottom-nav {
  display:none;
  position:fixed; bottom:0; left:0; right:0;
  height:calc(64px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-top:1px solid rgba(15,23,42,.08);
  z-index:9600;
  padding-bottom:env(safe-area-inset-bottom);
  box-shadow:0 -4px 24px rgba(15,23,42,.08);
  transition:transform .3s var(--ease);
}
.mobile-bottom-nav.hidden { transform:translateY(110%); }
.mobile-bottom-nav nav {
  display:flex; height:64px; align-items:stretch;
}
.mbn-item {
  flex:1;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:3px; text-decoration:none;
  color:var(--text-3); font-size:10px; font-weight:600;
  transition:color .2s;
  -webkit-tap-highlight-color:transparent;
}
.mbn-item i { font-size:18px; }
.mbn-item:not(.mbn-enroll):hover,
.mbn-item:not(.mbn-enroll):active { color:var(--primary); }
.mbn-item.mbn-enroll {
  background:linear-gradient(135deg,var(--primary),var(--violet));
  color:#fff; font-size:11px; font-weight:800;
}

@media (max-width: 640px) {
  .mobile-bottom-nav { display:block; }
  body { padding-bottom:calc(64px + env(safe-area-inset-bottom)); }
  /* Lift floating widgets above the bottom nav — sole source of truth for
     these elements' bottom offset AND right offset on mobile (both properties,
     not just bottom — #vc-wrap/#wt-chat's own later base rules were silently
     re-winning "right" from an earlier attempt elsewhere in this file, even
     though it correctly worked for "bottom"). Keeping every axis together
     here is what actually guarantees no override-by-file-order between them. */
  .wa-float     { bottom:calc(96px + env(safe-area-inset-bottom));  right:20px; }
  #back-to-top  { bottom:calc(96px + env(safe-area-inset-bottom)); }
  #wt-chat      { bottom:calc(168px + env(safe-area-inset-bottom)); right:20px; }
  #vc-wrap      { bottom:calc(240px + env(safe-area-inset-bottom)); right:20px; }
}

/* ═══════════════════════════════════════════════════════════════
   INSTRUCTOR PHOTO — Hero right column (standalone visual)
   ═══════════════════════════════════════════════════════════════ */

.hero-visual {
  display:flex;
  flex-direction:column;
  position:relative;
  filter:none;
}

.hv-photo-card {
  position:relative;
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:5/4;
  width:100%;
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 24px 64px rgba(79,70,229,.2), 0 8px 24px rgba(15,23,42,.1);
}

.hv-photo {
  width:100%; height:100%;
  object-fit:cover; object-position:center center;
  display:block;
  -webkit-user-drag:none;
  user-select:none;
}

/* Stats bar — clean, separated below the photo, zero overlap */
.hv-stats-float {
  position:relative;
  margin:16px 0 0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border:1.5px solid rgba(255,255,255,.7);
  border-radius:18px;
  padding:16px 12px;
  display:flex; align-items:center; justify-content:space-between;
  box-shadow:0 16px 40px rgba(79,70,229,.14), 0 4px 12px rgba(0,0,0,.05);
}

.hv-wa-btn { margin-top:14px; }

/* Responsive */
@media (max-width:768px) {
  .hero-visual { max-width:420px !important; }
}
@media (max-width:480px) {
  .hv-stats-float { padding:14px 8px; }
  .hv-stat-val { font-size:17px; }
}
