/* ── HERO ── */
.hero{min-height:100vh;display:flex;align-items:center;padding:60px 0 90px;position:relative;overflow:hidden}
.hero-noise{position:absolute;inset:0;z-index:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");background-size:256px;pointer-events:none;opacity:.4}
.hero-glow{position:absolute;z-index:0;top:-10%;right:-5%;width:700px;height:700px;background:radial-gradient(ellipse,rgba(124,58,237,.1) 0%,transparent 65%);pointer-events:none}
.hero-glow2{position:absolute;z-index:0;bottom:5%;left:-10%;width:500px;height:400px;background:radial-gradient(ellipse,rgba(232,162,48,.07) 0%,transparent 65%);pointer-events:none}
.hero-grid-bg{position:absolute;inset:0;z-index:0;background-image:linear-gradient(rgba(255,255,255,0.016) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.016) 1px,transparent 1px);background-size:72px 72px;mask-image:radial-gradient(ellipse 100% 100% at 50% 0%,black 20%,transparent 100%)}
.hero-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center}
.hero-kicker{display:inline-flex;align-items:center;gap:10px;background:rgba(124,58,237,.1);border:1px solid rgba(124,58,237,.28);border-radius:100px;padding:7px 16px;margin-bottom:26px;font-size:11.5px;font-weight:600;color:var(--violet2);letter-spacing:.07em;text-transform:uppercase}
.hero-kicker-dot{width:7px;height:7px;border-radius:50%;background:var(--violet2);animation:dotPulse 2s infinite}
.hero-live-bar{display:inline-flex;align-items:center;gap:8px;background:rgba(14,196,122,.08);border:1px solid rgba(14,196,122,.25);border-radius:100px;padding:5px 14px;font-size:12px;font-weight:600;color:#34d399;margin-top:10px;margin-bottom:16px;width:fit-content}
.hero-live-dot{width:8px;height:8px;border-radius:50%;background:#34d399;animation:livePulse 1.8s ease-in-out infinite;flex-shrink:0}
@keyframes livePulse{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(52,211,153,.5)}50%{opacity:.7;box-shadow:0 0 0 5px rgba(52,211,153,0)}}
.hero-h1{font-weight:700;font-size:clamp(38px,5.4vw,68px);line-height:1.05;letter-spacing:-.5px;margin-bottom:20px}
.hero-h1 em{font-style:italic;color:var(--ember)}
.text-violet{background:linear-gradient(135deg,#7c3aed,#a78bfa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{color:var(--muted);font-size:16px;line-height:1.75;margin-bottom:28px;max-width:520px}
.hero-exams{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px}
.hero-exam-tag{background:rgba(255,255,255,.05);border:1px solid var(--edge2);border-radius:100px;padding:5px 13px;font-size:11.5px;font-weight:600;color:var(--muted)}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:18px}
.hero-note{font-size:12px;color:var(--dim)}
.hero-note span{color:var(--muted)}

/* Stats card */
.hero-stats-card{background:var(--panel);border:1px solid var(--edge2);border-radius:22px;overflow:hidden;box-shadow:0 28px 72px rgba(0,0,0,.42)}
.hsc-header{background:var(--ink3);border-bottom:1px solid var(--edge);padding:16px 22px;display:flex;align-items:center;gap:10px}
.hsc-dot{width:10px;height:10px;border-radius:50%}
.hsc-title{font-weight:700;font-size:13px;flex:1;text-align:center}
.hsc-body{padding:22px}
.hsc-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px}
.hsc-stat{background:var(--ink3);border-radius:13px;padding:16px 14px;text-align:center}
.hsc-stat-num{font-weight:800;font-size:26px;line-height:1;margin-bottom:4px}
.hsc-stat-label{font-size:10px;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.06em;line-height:1.3}
.hsc-results{display:flex;flex-direction:column;gap:8px}
.hsc-result-row{display:flex;align-items:center;gap:10px;background:var(--ink3);border-radius:10px;padding:10px 12px}
.hsc-result-icon{width:32px;height:32px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0}
.hsc-result-name{font-size:12.5px;font-weight:600;line-height:1.2}
.hsc-result-detail{font-size:11px;color:var(--muted)}

/* ── PROGRAMS SECTION ── */
.programs-section{background:var(--ink)}
.prog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:44px}
.prog-card{background:var(--panel);border:1px solid var(--edge);border-radius:20px;padding:28px;position:relative;overflow:hidden;transition:all .28s;display:flex;flex-direction:column}
.prog-card:hover{border-color:rgba(167,139,250,.22);transform:translateY(-4px);box-shadow:0 24px 60px rgba(0,0,0,.38)}
.prog-card.featured{border-color:rgba(167,139,250,.3);background:linear-gradient(145deg,var(--panel),rgba(124,58,237,.04))}
.prog-card.featured:hover{box-shadow:0 24px 60px rgba(124,58,237,.12)}
.prog-glow{position:absolute;top:-50px;right:-50px;width:130px;height:130px;border-radius:50%;filter:blur(45px);pointer-events:none;opacity:.35}
.prog-tag{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.prog-icon-end{margin-left:auto;font-size:22px}
.prog-name{font-size:22px;font-weight:700;color:#fff;margin-bottom:4px}
.prog-full{color:var(--muted);font-size:12px;margin-bottom:18px}
.prog-for{font-size:13px;color:var(--text);background:rgba(255,255,255,.04);border:1px solid var(--edge);border-radius:8px;padding:10px 12px;margin-bottom:16px;line-height:1.5}
.prog-for-label{font-size:10px;color:var(--dim);text-transform:uppercase;letter-spacing:.08em;font-weight:600;margin-bottom:4px}
.prog-meta{display:flex;flex-direction:column;gap:8px;margin-bottom:20px;flex:1}
.prog-meta-item{display:flex;align-items:center;gap:9px;font-size:13px;color:var(--muted)}
.prog-meta-icon{width:20px;height:20px;border-radius:5px;display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0;background:rgba(255,255,255,.05)}
.prog-card .btn{white-space:nowrap;font-size:13px;padding:12px 16px;margin-top:auto}
@media(max-width:1200px){.prog-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){.prog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.prog-grid{grid-template-columns:1fr}}

/* ── WHY SECTION ── */
.why-section{background:var(--ink2)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.why-card{background:var(--panel);border:1px solid var(--edge);border-radius:20px;padding:32px;transition:all .28s}
.why-card:hover{transform:translateY(-3px);border-color:var(--edge2)}
.why-icon{font-size:32px;margin-bottom:18px}
.why-title{font-size:17px;font-weight:700;margin-bottom:10px}
.why-desc{color:var(--muted);font-size:14px;line-height:1.7}

/* ── SCHOLARSHIP SECTION ── */
.scholarship-section{background:var(--ink2)}
.schol-card{background:linear-gradient(135deg,rgba(124,58,237,.1) 0%,rgba(232,162,48,.06) 100%);border:1px solid rgba(124,58,237,.25);border-radius:24px;padding:60px 48px;text-align:center;position:relative;overflow:hidden}
.schol-badge{display:inline-block;background:rgba(124,58,237,.15);border:1px solid rgba(124,58,237,.35);color:var(--violet2);border-radius:100px;padding:6px 18px;font-size:12px;font-weight:700;letter-spacing:.08em;margin-bottom:24px}
.schol-h2{font-size:clamp(32px,4.5vw,54px);font-weight:700;line-height:1.1;margin-bottom:16px}
.schol-sub{color:var(--muted);font-size:16px;line-height:1.75;max-width:560px;margin:0 auto 36px}
.schol-btns{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-bottom:20px}
.schol-note{font-size:13px;color:var(--dim)}

/* ── FAQ (landing-page accordion) ── */
.faq-grid{display:flex;flex-direction:column;gap:12px;max-width:820px;margin:0 auto}
.faq-item{background:var(--panel);border:1px solid var(--edge);border-radius:14px;overflow:hidden;cursor:pointer;transition:border-color .2s}
.faq-item.open{border-color:rgba(124,58,237,.35)}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;font-size:15px;font-weight:600;line-height:1.4}
.faq-arrow{font-size:20px;color:var(--muted);flex-shrink:0;transition:transform .25s;user-select:none}
.faq-item.open .faq-arrow{transform:rotate(45deg);color:var(--violet2)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .25s;font-size:14px;color:var(--muted);line-height:1.75;padding:0 22px}
.faq-item.open .faq-a{max-height:400px;padding:0 22px 20px}

/* ── BRANCHES ── */
.branches-section{background:var(--ink2)}
.branches-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.branch-card{background:var(--panel);border:1px solid var(--edge);border-radius:20px;padding:28px;text-align:center;transition:all .28s}
.branch-card:hover{transform:translateY(-3px);border-color:var(--edge2)}
.branch-city-tag{display:inline-block;background:rgba(124,58,237,.1);border:1px solid rgba(124,58,237,.25);color:var(--violet2);border-radius:100px;padding:4px 14px;font-size:11px;font-weight:700;letter-spacing:.08em;margin-bottom:16px}
.branch-icon{font-size:32px;margin-bottom:12px}
.branch-name{font-size:18px;font-weight:700;margin-bottom:6px}
.branch-addr{font-size:13.5px;color:var(--muted);margin-bottom:16px}
.branch-meta{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.branch-chip{background:var(--ink3);border:1px solid var(--edge);border-radius:8px;padding:4px 12px;font-size:12px;font-weight:600;color:var(--muted)}

/* ── FINAL CTA ── */
.final-section{background:var(--ink3);border-top:1px solid var(--edge);padding:100px 0}
.final-inner{max-width:760px;margin:0 auto;padding:0 40px;text-align:center}
.final-h2{font-size:clamp(34px,5vw,58px);font-weight:700;line-height:1.05;letter-spacing:-.5px;margin-bottom:16px}
.final-sub{color:var(--muted);font-size:16px;line-height:1.75;margin-bottom:36px}
.final-btns{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-bottom:18px}
.final-note{font-size:13px;color:var(--dim)}

/* ── RESPONSIVE ── */
@media(max-width:768px){
.hero-inner{grid-template-columns:1fr;gap:36px;padding:0 20px}
.hero-stats-card{display:none}
.why-grid{grid-template-columns:1fr}
.branches-grid{grid-template-columns:1fr}
.final-h2{font-size:32px}
/* .pricing-grid-wrap sets its 4-column layout via an inline style, which
   this page's stylesheet had no mobile override for (other templates like
   mba.css/home.css already do) -- cards were squeezing to ~180px with
   sentence-length text at phone widths. !important is required to beat
   the inline style, matching the existing pattern in mba.css/home.css. */
.pricing-grid-wrap{grid-template-columns:1fr!important}
/* .feature-strip (5-item icon+text row above the pricing section) sets its
   5-column layout via an inline style with no mobile override anywhere --
   at 375-768px this was actually overflowing the page (5 columns of
   sentence-length text squeezed to ~150px, breaking out of the container
   and causing real horizontal page scroll), not just squeezing in place.
   !important is required to beat the inline style, same pattern as
   .pricing-grid-wrap immediately above. */
.feature-strip{grid-template-columns:1fr!important}
}
