/* ─────────────────────────────────────────────────────────────────────────────
   ELINOM EDUCATION LANDING PAGE — education.css
   Scoped styles (prefix: .edu-) for public/education-landing.html
   Mobile-first, PostgreSQL-backed lead capture form included via JS
   ───────────────────────────────────────────────────────────────────────── */

/* ── BODY ─────────────────────────────────────────────────────────────────── */
body.edu-page{font-family:'Inter',sans-serif;background:#faf5ff;color:#0f172a;overflow-x:hidden;}

/* ── EDU NAVBAR (edu.elinomtech.com — two-row ERP shell structure) ──────── */
.edu-nav,#navbar.edu-nav{
  position:fixed;top:0;left:0;right:0;z-index:100000;
  background:rgba(10,3,28,.97);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
/* Util bar row inherits styles from unified-search.css (.erp-shell-navbar #util-bar)
   but we also provide fallback values here */
.edu-nav #util-bar{
  background:rgba(7,13,31,.95);border-bottom:1px solid rgba(255,255,255,.06);
}
.edu-nav #util-bar .util-bar-inner{
  display:flex;align-items:center;justify-content:flex-end;
  max-width:1400px;margin:0 auto;padding:.45rem 1.5rem;
  gap:.85rem;min-height:40px;
}
/* Main nav row */
.edu-nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;max-width:none;min-height:60px;
  margin:0;padding:.35rem 24px;gap:1rem;
  box-sizing:border-box;overflow:visible;
  border-top:1px solid rgba(139,92,246,.15);
}
.edu-nav-logo{
  display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0;
}
.edu-nav-logo-text{display:flex;flex-direction:column;line-height:1;}
.edu-nav-brand{
  font-size:1.05rem;font-weight:900;
  background:linear-gradient(90deg,#38bdf8,#6366f1,#f472b6,#f59e0b);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.edu-nav-sub{font-size:.57rem;font-weight:600;color:#a78bfa;letter-spacing:.03em;}
.edu-nav-links{
  display:flex;list-style:none;margin:0 0 0 clamp(.75rem,2vw,1.4rem);padding:0;gap:0;flex:1 1 auto;min-width:0;
}
.edu-nav-links li a{
  font-size:.82rem;font-weight:600;color:#d4d4d8;text-decoration:none;
  padding:.38rem .58rem;border-radius:8px;transition:color .2s,background .2s;white-space:nowrap;
}
.edu-nav-links li a:hover{color:#fff;background:rgba(139,92,246,.18);}
.edu-nav-links li a[href^="#"]{color:#c4b5fd;}
.edu-nav-links li a[href^="#"]:hover{color:#fff;background:rgba(124,58,237,.28);}
/* Nav actions group — houses School Login, CTA, and search trigger pill */
.edu-nav .nav-actions-group{
  display:flex;align-items:center;justify-content:flex-end;gap:.65rem;
  flex:0 1 auto;min-width:300px;margin-left:auto!important;
}
.edu-nav-login{
  font-size:.83rem;font-weight:600;color:#c4b5fd;text-decoration:none;
  padding:.38rem .8rem;border-radius:8px;border:1.5px solid rgba(196,181,253,.3);
  transition:all .2s;white-space:nowrap;
}
.edu-nav-login:hover{border-color:#c4b5fd;background:rgba(196,181,253,.1);}
/* Hard-right alignment override for education navbar.
   Prevents site.css mobile drawer rules from hijacking nav-actions-group. */
#navbar.edu-nav .edu-nav-inner > #navActionsGroup{
  display:flex!important;
  align-items:center;
  justify-content:flex-end!important;
  gap:.65rem;
  position:static!important;
  left:auto!important;
  right:auto!important;
  top:auto!important;
  bottom:auto!important;
  width:auto!important;
  min-width:300px;
  margin:0 0 0 auto!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  visibility:visible!important;
  flex:0 0 auto!important;
  flex-wrap:nowrap!important;
}

#navbar.edu-nav .edu-nav-inner > #navActionsGroup > #us-trigger{
  order:-1;
  margin:0!important;
}
/* Hamburger */
.edu-nav-hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;flex-shrink:0;
}
.edu-nav-hamburger span{
  display:block;width:22px;height:2px;background:#c4b5fd;border-radius:2px;transition:all .25s;
}
.edu-nav-hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.edu-nav-hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.edu-nav-hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
/* Mobile nav drawer — drops below the main nav row (util-bar ~40px + nav ~60px = 100px) */
@media(max-width:900px){
  .edu-nav-inner{
    padding:.35rem 12px;
    gap:.75rem;
  }
  .edu-nav-links{
    display:none;flex-direction:column;position:absolute;top:100px;left:0;right:0;
    background:rgba(10,3,28,.99);border-bottom:1px solid rgba(139,92,246,.25);
    padding:1rem 1.5rem 1.5rem;gap:.1rem;margin-left:0;z-index:99999;
  }
  .edu-nav-links.open{display:flex;}
  .edu-nav-links li a{display:block;padding:.6rem .9rem;font-size:.9rem;}
  .edu-nav .nav-actions-group .edu-nav-login{display:none;}
  #navbar.edu-nav .edu-nav-inner > #navActionsGroup{display:none!important;min-width:0;}
  .edu-nav-hamburger{display:flex;}
  .edu-nav .nav-actions-group .edu-btn-primary{font-size:.8rem!important;padding:.42rem .95rem!important;}
}
@media(max-width:480px){.edu-nav-brand{font-size:.95rem;}.edu-nav-sub{display:none;}}
/* Push page content below fixed 2-row nav (util-bar ~40px + main ~60px = 100px) */
body.edu-page{padding-top:100px;}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.edu-hero{
  position:relative;min-height:94vh;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(155deg,#0a031c 0%,#2e0a5a 35%,#5b21b6 68%,#7c3aed 100%);
  margin:10px;border-radius:22px;overflow:hidden;
}
.edu-hero::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%,rgba(139,92,246,.4) 0%,transparent 62%),
    radial-gradient(ellipse 35% 40% at 93% 80%,rgba(6,182,212,.2) 0%,transparent 55%),
    radial-gradient(ellipse 25% 30% at 5% 70%,rgba(196,181,253,.14) 0%,transparent 50%);
}
.edu-hero::after{
  content:'';position:absolute;bottom:-1px;left:0;right:0;height:130px;
  background:linear-gradient(to top,#faf5ff,transparent);pointer-events:none;
}
.edu-hero-inner{
  position:relative;z-index:2;max-width:1200px;width:100%;margin:0 auto;
  padding:4.5rem 2rem 6rem;
  display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center;
}
.edu-hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(196,181,253,.15);border:1px solid rgba(196,181,253,.35);
  padding:.4rem 1.1rem;border-radius:99px;
  font-size:.78rem;font-weight:700;letter-spacing:.04em;color:#ddd6fe;margin-bottom:1.2rem;
}
.edu-hero h1{font-size:3.4rem;font-weight:900;line-height:1.1;color:#fff;margin-bottom:1.25rem;}
.edu-hero h1 .edu-accent{
  background:linear-gradient(90deg,#c4b5fd,#38bdf8);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.edu-hero-sub{font-size:1.08rem;color:#ddd6fe;line-height:1.78;max-width:500px;margin-bottom:2rem;}
.edu-hero-ctas{display:flex;gap:.85rem;flex-wrap:wrap;margin-bottom:1.75rem;}
.edu-hero-trust{
  display:flex;align-items:center;gap:.6rem;
  font-size:.8rem;color:#a78bfa;flex-wrap:wrap;
}
.edu-hero-trust span{color:#ddd6fe;}
.edu-hero-trust i{font-size:.85rem;}
.edu-hero-subdomain-pill{
  display:inline-flex;align-items:center;gap:.5rem;
  margin-top:1rem;background:rgba(124,58,237,.2);border:1px solid rgba(196,181,253,.3);
  padding:.38rem .95rem;border-radius:99px;
  font-size:.76rem;font-weight:600;color:#c4b5fd;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.edu-btn-primary{
  padding:.85rem 2rem;
  background:linear-gradient(135deg,#7c3aed,#5b21b6);
  color:#fff;border-radius:12px;font-weight:700;font-size:.92rem;
  text-decoration:none;box-shadow:0 4px 20px rgba(124,58,237,.45);
  transition:all .2s;display:inline-block;border:none;cursor:pointer;
  font-family:'Inter',sans-serif;
}
.edu-btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(124,58,237,.55);}
.edu-btn-outline{
  padding:.85rem 2rem;background:rgba(255,255,255,.08);color:#e2e8f0;
  border:1px solid rgba(255,255,255,.22);border-radius:12px;
  font-weight:600;font-size:.92rem;text-decoration:none;transition:all .2s;display:inline-block;
}
.edu-btn-outline:hover{background:rgba(255,255,255,.14);}

/* ── KPI PANEL (hero right side) ──────────────────────────────────────────── */
.edu-kpi-panel{display:flex;flex-direction:column;gap:.85rem;}
.edu-kpi-card{
  background:rgba(255,255,255,.08);backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.13);border-radius:16px;
  padding:1rem 1.2rem;display:flex;align-items:center;gap:1rem;
  transition:transform .25s;
}
.edu-kpi-card:hover{transform:translateX(6px);}
.edu-kpi-icon{
  width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;
}
.edu-kpi-body{flex:1;min-width:0;}
.edu-kpi-label{font-size:.71rem;color:#c4b5fd;font-weight:500;margin-bottom:.15rem;}
.edu-kpi-value{font-size:1rem;font-weight:700;color:#f5f3ff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.edu-kpi-badge{
  font-size:.68rem;font-weight:700;padding:.22rem .6rem;
  border-radius:99px;white-space:nowrap;flex-shrink:0;
}
.kpi-violet{background:rgba(139,92,246,.25);color:#c4b5fd;}
.kpi-cyan{background:rgba(6,182,212,.22);color:#67e8f9;}
.kpi-green{background:rgba(34,197,94,.22);color:#86efac;}
.kpi-amber{background:rgba(251,191,36,.22);color:#fde68a;}

/* ── INSTITUTION STRIP ────────────────────────────────────────────────────── */
.edu-inst-strip{background:#fff;padding:1.2rem 0;border-bottom:1px solid #ede9fe;}
.edu-inst-strip-inner{
  max-width:1200px;margin:0 auto;padding:0 2rem;
  display:flex;gap:.7rem;align-items:center;flex-wrap:wrap;
}
.edu-inst-strip-label{font-size:.76rem;font-weight:700;color:#7c3aed;letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;margin-right:.25rem;}
.edu-inst-chip{
  display:inline-flex;align-items:center;gap:.4rem;
  background:#faf5ff;border:1px solid #ddd6fe;
  padding:.3rem .8rem;border-radius:99px;
  font-size:.78rem;font-weight:600;color:#5b21b6;white-space:nowrap;
}
.edu-inst-chip i{color:#7c3aed;font-size:.75rem;}

/* ── SECTION WRAPPER ──────────────────────────────────────────────────────── */
.edu-section{padding:5rem 2rem;max-width:1200px;margin:0 auto;}
.edu-section-tag{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:#7c3aed;background:rgba(124,58,237,.07);
  padding:.3rem .85rem;border-radius:99px;border:1px solid rgba(124,58,237,.18);
  margin-bottom:.9rem;
}
.edu-section-h2{font-size:2.3rem;font-weight:800;color:#0f172a;margin-bottom:.7rem;line-height:1.2;}
.edu-section-sub{font-size:1.03rem;color:#475569;line-height:1.7;max-width:580px;}
.edu-text-center{text-align:center;}
.edu-text-center .edu-section-sub{max-width:650px;margin-left:auto;margin-right:auto;}
.edu-bg-light{background:#faf5ff;}
.edu-bg-white{background:#fff;}

/* ── FEATURE CARDS ────────────────────────────────────────────────────────── */
.edu-feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem;}
.edu-feat-card{
  background:#fff;border:1px solid #ede9fe;border-radius:20px;
  padding:1.75rem;transition:all .25s;box-shadow:0 1px 3px rgba(0,0,0,.04);
}
.edu-feat-card:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(124,58,237,.11);border-color:rgba(124,58,237,.28);}
.edu-feat-icon{
  width:50px;height:50px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;font-size:1.25rem;
  margin-bottom:1.1rem;background:linear-gradient(135deg,rgba(124,58,237,.12),rgba(196,181,253,.07));
}
.edu-feat-card h3{font-size:1rem;font-weight:700;color:#0f172a;margin-bottom:.5rem;}
.edu-feat-card p{font-size:.875rem;color:#64748b;line-height:1.65;}
.edu-feat-tags{display:flex;flex-wrap:wrap;gap:.35rem;margin-top:.85rem;}
.edu-feat-tag{font-size:.67rem;font-weight:600;color:#7c3aed;background:rgba(124,58,237,.07);padding:.18rem .5rem;border-radius:6px;}

/* ── MODULE TABS ──────────────────────────────────────────────────────────── */
.edu-tabs-wrap{background:#fff;border:1px solid #ede9fe;border-radius:24px;overflow:hidden;box-shadow:0 2px 14px rgba(0,0,0,.04);}
.edu-tabs-header{display:flex;border-bottom:1px solid #ede9fe;overflow-x:auto;scrollbar-width:none;}
.edu-tabs-header::-webkit-scrollbar{display:none;}
.edu-tab-btn{
  padding:1rem 1.35rem;background:none;border:none;cursor:pointer;
  font-size:.87rem;font-weight:600;color:#64748b;white-space:nowrap;
  border-bottom:2px solid transparent;transition:all .2s;
  display:flex;align-items:center;gap:.4rem;font-family:'Inter',sans-serif;
}
.edu-tab-btn.active,.edu-tab-btn:hover{color:#7c3aed;}
.edu-tab-btn.active{border-bottom-color:#7c3aed;background:rgba(124,58,237,.03);}
.edu-tab-panel{display:none;padding:2rem;}
.edu-tab-panel.active{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center;}
.edu-tab-mock{
  background:linear-gradient(135deg,#f5f3ff,#ede9fe);
  border-radius:16px;padding:1.5rem;min-height:260px;
  display:flex;flex-direction:column;gap:.85rem;justify-content:center;
}
.edu-mock-row{
  background:#fff;border-radius:10px;padding:.7rem 1rem;
  display:flex;align-items:center;gap:.75rem;box-shadow:0 1px 4px rgba(0,0,0,.06);
}
.edu-mock-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;}
.edu-mock-label{font-size:.8rem;font-weight:600;color:#0f172a;}
.edu-mock-val{margin-left:auto;font-size:.78rem;color:#7c3aed;font-weight:700;}
.edu-mock-badge{font-size:.68rem;font-weight:700;padding:.18rem .5rem;border-radius:6px;margin-left:.5rem;}
.edu-tab-text h3{font-size:1.35rem;font-weight:800;color:#0f172a;margin-bottom:.7rem;}
.edu-tab-text p{font-size:.9rem;color:#475569;line-height:1.7;margin-bottom:1.2rem;}
.edu-tab-bullets{list-style:none;padding:0;display:flex;flex-direction:column;gap:.55rem;}
.edu-tab-bullets li{font-size:.87rem;color:#0f172a;display:flex;align-items:flex-start;gap:.5rem;}
.edu-tab-bullets li i{color:#7c3aed;font-size:.78rem;margin-top:.22rem;flex-shrink:0;}

/* ── STATS BAND ───────────────────────────────────────────────────────────── */
.edu-stats-band{background:linear-gradient(135deg,#0a031c,#2e0a5a,#5b21b6);padding:4.5rem 2rem;}
.edu-stats-inner{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;}
.edu-stat-val{font-size:2.8rem;font-weight:900;color:#fff;line-height:1;}
.edu-stat-val span{
  background:linear-gradient(90deg,#c4b5fd,#67e8f9);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.edu-stat-lbl{font-size:.82rem;color:#c4b5fd;margin-top:.5rem;font-weight:500;}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.edu-steps-wrap{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;
  margin-top:3rem;position:relative;
}
.edu-steps-wrap::before{
  content:'';position:absolute;top:44px;
  left:calc(16.67% + 1rem);right:calc(16.67% + 1rem);
  height:2px;background:linear-gradient(90deg,#7c3aed,#38bdf8);pointer-events:none;
}
.edu-step{text-align:center;padding:2rem 1.5rem;background:#fff;border:1px solid #ede9fe;border-radius:20px;}
.edu-step-num{
  width:56px;height:56px;margin:0 auto 1.25rem;
  background:linear-gradient(135deg,#7c3aed,#5b21b6);color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.35rem;font-weight:900;box-shadow:0 4px 18px rgba(124,58,237,.35);
  position:relative;z-index:1;
}
.edu-step h4{font-size:1rem;font-weight:700;color:#0f172a;margin-bottom:.5rem;}
.edu-step p{font-size:.87rem;color:#64748b;line-height:1.65;}

/* ── PARENT SPOTLIGHT ─────────────────────────────────────────────────────── */
.edu-spotlight-wrap{
  display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center;
  background:#fff;border:1px solid #ede9fe;border-radius:24px;
  padding:3rem;margin-top:3rem;box-shadow:0 2px 14px rgba(0,0,0,.04);
}
.edu-spotlight-mock{background:linear-gradient(145deg,#f5f3ff,#ede9fe);border-radius:18px;padding:1.5rem;display:flex;flex-direction:column;gap:.85rem;}
.edu-mock-header{background:linear-gradient(135deg,#7c3aed,#5b21b6);border-radius:12px;padding:.9rem 1.2rem;display:flex;align-items:center;gap:.75rem;}
.edu-mock-header-icon{width:34px;height:34px;background:rgba(255,255,255,.18);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.edu-mock-header-title{font-size:.88rem;font-weight:700;color:#fff;}
.edu-mock-header-sub{font-size:.7rem;color:#ddd6fe;}
.edu-spotlight-mock .edu-mock-row{background:#fff;border-radius:10px;padding:.65rem .9rem;display:flex;align-items:center;gap:.65rem;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.edu-mock-row-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.82rem;flex-shrink:0;}
.edu-mock-row-label{font-size:.79rem;color:#0f172a;font-weight:500;}
.edu-mock-row-val{margin-left:auto;font-size:.78rem;font-weight:700;}
.edu-spotlight-text h3{font-size:1.6rem;font-weight:800;color:#0f172a;margin-bottom:.75rem;}
.edu-spotlight-text p{font-size:.92rem;color:#475569;line-height:1.7;margin-bottom:1.5rem;}
.edu-spotlight-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:.65rem;margin-bottom:1.5rem;}
.edu-spotlight-list li{font-size:.88rem;color:#0f172a;display:flex;align-items:center;gap:.55rem;}
.edu-spotlight-list li i{width:20px;height:20px;background:rgba(124,58,237,.1);color:#7c3aed;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.65rem;flex-shrink:0;}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.edu-testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem;}
.edu-testi-card{background:#fff;border:1px solid #ede9fe;border-radius:20px;padding:1.75rem;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.edu-testi-stars{color:#f59e0b;font-size:.85rem;margin-bottom:.85rem;}
.edu-testi-quote{font-size:.9rem;color:#334155;line-height:1.7;margin-bottom:1.25rem;font-style:italic;}
.edu-testi-author{display:flex;align-items:center;gap:.75rem;}
.edu-testi-avatar{width:38px;height:38px;border-radius:50%;background:linear-gradient(135deg,#7c3aed,#5b21b6);display:flex;align-items:center;justify-content:center;color:#fff;font-size:.85rem;font-weight:700;flex-shrink:0;}
.edu-testi-name{font-size:.85rem;font-weight:700;color:#0f172a;}
.edu-testi-role{font-size:.75rem;color:#64748b;}

/* ── CONTACT SECTION ──────────────────────────────────────────────────────── */
.edu-contact-section{
  background:linear-gradient(160deg,#06091a 0%,#0d1b3e 50%,#0a031c 100%);
  padding:5rem 2rem;
}
.edu-contact-wrap{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1.18fr;gap:40px;align-items:stretch;
}
.edu-contact-left-head{margin-bottom:28px;}
.edu-contact-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
  color:#60a5fa;margin-bottom:14px;
}
.edu-contact-eyebrow::before{
  content:'';display:inline-block;width:22px;height:2px;
  background:linear-gradient(90deg,#38bdf8,#6366f1);border-radius:2px;
}
.edu-contact-left-head h2{
  font-size:clamp(1.9rem,3vw,2.7rem);font-weight:800;line-height:1.08;
  color:#f0f8ff;letter-spacing:-.03em;margin:0 0 14px;
}
.edu-contact-left-head h2 span{
  background:linear-gradient(90deg,#38bdf8,#818cf8,#f472b6);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.edu-contact-left-head p{
  color:rgba(180,200,240,.75);font-size:1rem;line-height:1.76;max-width:420px;margin:0;
}
.edu-cic-list{display:flex;flex-direction:column;gap:14px;margin-top:10px;}
.edu-cic{
  display:flex;align-items:center;gap:16px;padding:16px 20px;
  border-radius:18px;background:rgba(16,36,80,.58);
  border:1px solid rgba(96,165,250,.18);box-shadow:0 6px 20px rgba(0,0,0,.14);
  transition:border-color .22s,transform .22s;
}
.edu-cic:hover{border-color:rgba(96,165,250,.42);transform:translateX(4px);}
.edu-cic-icon{
  width:46px;height:46px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;flex-shrink:0;
}
.edu-cic-icon.blue{background:rgba(56,189,248,.14);color:#38bdf8;}
.edu-cic-icon.indigo{background:rgba(99,102,241,.14);color:#818cf8;}
.edu-cic-icon.teal{background:rgba(16,185,129,.14);color:#34d399;}
.edu-cic-icon.orange{background:rgba(249,115,22,.14);color:#fb923c;}
.edu-cic-body strong{display:block;font-size:.82rem;font-weight:700;color:#b8cef0;letter-spacing:.04em;text-transform:uppercase;margin-bottom:3px;}
.edu-cic-body a,.edu-cic-body span{color:#e2efff;font-size:.97rem;font-weight:500;text-decoration:none;}
.edu-cic-body a:hover{color:#38bdf8;}
/* Right panel */
.edu-contact-right-panel{
  background:linear-gradient(160deg,rgba(11,28,68,.88),rgba(16,40,90,.75));
  border:1px solid rgba(99,130,220,.22);border-radius:28px;
  padding:36px 32px;
  box-shadow:0 28px 70px rgba(2,10,36,.30),inset 0 1px 0 rgba(255,255,255,.07);
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.edu-contact-right-panel::before{
  content:'';position:absolute;top:-80px;right:-80px;width:260px;height:260px;
  border-radius:50%;background:radial-gradient(circle,rgba(99,102,241,.22),transparent 68%);
  pointer-events:none;
}
.edu-contact-right-panel::after{
  content:'';position:absolute;bottom:-60px;left:-60px;width:200px;height:200px;
  border-radius:50%;background:radial-gradient(circle,rgba(56,189,248,.16),transparent 68%);
  pointer-events:none;
}
.edu-contact-panel-title{font-size:1.28rem;font-weight:800;color:#f0f8ff;margin-bottom:6px;}
.edu-contact-panel-sub{color:rgba(180,200,240,.75);font-size:.93rem;margin-bottom:26px;line-height:1.6;}
.edu-contact-submit-btn{
  width:100%;padding:14px 28px;
  background:linear-gradient(135deg,#38bdf8,#6366f1);
  color:#fff;font-size:1rem;font-weight:800;
  border:none;border-radius:14px;cursor:pointer;letter-spacing:.04em;
  box-shadow:0 10px 32px rgba(56,189,248,.28);
  transition:transform .2s ease,box-shadow .2s ease;
  display:flex;align-items:center;justify-content:center;gap:10px;
  text-decoration:none;
}
.edu-contact-submit-btn:hover{transform:translateY(-2px);box-shadow:0 16px 42px rgba(56,189,248,.42);}
.edu-contact-divider{
  display:flex;align-items:center;gap:14px;margin:18px 0;
}
.edu-contact-divider::before,.edu-contact-divider::after{
  content:'';flex:1;height:1px;background:rgba(96,165,250,.16);
}
.edu-contact-divider span{font-size:.8rem;color:#4a6a9a;font-weight:600;white-space:nowrap;}
.edu-contact-alt-cta{display:flex;align-items:center;justify-content:center;gap:12px;}
.edu-contact-alt-cta a{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 20px;border-radius:12px;font-size:.9rem;font-weight:700;
  text-decoration:none;border:1px solid rgba(96,165,250,.26);
  color:#b8cef0;background:rgba(8,18,52,.5);
  transition:border-color .2s,color .2s,background .2s;
}
.edu-contact-alt-cta a:hover{border-color:rgba(96,165,250,.54);color:#e2efff;background:rgba(16,31,72,.7);}
@media(max-width:820px){
  .edu-contact-wrap{grid-template-columns:1fr;}
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.edu-faq-list{margin-top:2.5rem;display:flex;flex-direction:column;gap:.75rem;}
.edu-faq-item{background:#fff;border:1px solid #ede9fe;border-radius:14px;overflow:hidden;transition:border-color .2s;}
.edu-faq-item.open{border-color:rgba(124,58,237,.3);box-shadow:0 2px 10px rgba(124,58,237,.07);}
.edu-faq-q{
  width:100%;background:none;border:none;padding:1.15rem 1.4rem;
  display:flex;align-items:center;justify-content:space-between;
  font-size:.95rem;font-weight:600;color:#0f172a;text-align:left;
  cursor:pointer;font-family:'Inter',sans-serif;gap:.75rem;
}
.edu-faq-q i{color:#7c3aed;transition:transform .25s;flex-shrink:0;}
.edu-faq-item.open .edu-faq-q i{transform:rotate(45deg);}
.edu-faq-a{max-height:0;overflow:hidden;transition:max-height .32s ease;padding:0 1.4rem;}
.edu-faq-item.open .edu-faq-a{max-height:200px;padding-bottom:1.15rem;}
.edu-faq-a p{font-size:.88rem;color:#475569;line-height:1.7;}

/* ── CTA BAND ─────────────────────────────────────────────────────────────── */
.edu-cta-band{
  padding:5rem 2rem;
  background:linear-gradient(135deg,#2e0a5a,#5b21b6,#c4b5fd);
  text-align:center;position:relative;overflow:hidden;
}
.edu-cta-band::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 65% 65% at 50% 50%,rgba(255,255,255,.1) 0%,transparent 70%);}
.edu-cta-band h2{font-size:2.4rem;font-weight:900;color:#fff;margin-bottom:.75rem;position:relative;}
.edu-cta-band p{font-size:1.05rem;color:rgba(255,255,255,.85);margin-bottom:2rem;position:relative;}
.edu-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;position:relative;}
.edu-btn-white{padding:.9rem 2.4rem;background:#fff;color:#5b21b6;border-radius:12px;font-weight:800;font-size:.95rem;text-decoration:none;box-shadow:0 4px 18px rgba(0,0,0,.18);transition:all .2s;display:inline-block;}
.edu-btn-white:hover{transform:translateY(-2px);}
.edu-btn-ghost{padding:.9rem 2.4rem;background:rgba(255,255,255,.12);color:#fff;border:2px solid rgba(255,255,255,.35);border-radius:12px;font-weight:700;font-size:.95rem;text-decoration:none;transition:all .2s;display:inline-block;}
.edu-btn-ghost:hover{background:rgba(255,255,255,.22);}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.edu-footer{
  background:linear-gradient(180deg,#0b0318 0%,#05010e 100%);
  color:#c4b5fd;
  padding:3.5rem 2rem 2rem;
  position:relative;
  overflow:hidden;
}
.edu-footer::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right,rgba(124,58,237,.22),transparent 35%),
             radial-gradient(circle at bottom left,rgba(56,189,248,.12),transparent 28%);
  pointer-events:none;
}
.edu-footer a{color:#ddd6fe;text-decoration:none;transition:color .2s ease,transform .2s ease;}
.edu-footer a:hover{color:#fff;transform:translateX(2px);}
.edu-footer-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(260px,1.35fr) repeat(4,minmax(135px,1fr));
  gap:2rem;
  align-items:start;
}
.edu-footer-brand p{margin:.95rem 0 0;color:rgba(221,214,254,.78);font-size:.94rem;line-height:1.8;max-width:420px;}
.edu-footer-logo{display:inline-flex;align-items:center;gap:.9rem;}
.edu-footer-logo-mark{
  width:44px;height:44px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#38bdf8,#6366f1,#f472b6,#f59e0b);color:#fff;font-size:1.4rem;font-weight:900;
  box-shadow:0 10px 26px rgba(99,102,241,.28);
}
.edu-footer-logo-text{display:flex;flex-direction:column;line-height:1.15;}
.edu-footer-logo-text strong,
.edu-footer-logo-text span{
  background:linear-gradient(90deg,#38bdf8,#6366f1,#f472b6,#f59e0b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}
.edu-footer-logo-text strong{font-size:1.05rem;font-weight:900;}
.edu-footer-logo-text span{font-size:.76rem;letter-spacing:.03em;}
.edu-footer-title{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8b5cf6;
  margin-bottom:1rem;
}
.edu-footer-links{display:flex;flex-direction:column;gap:.78rem;}
.edu-footer-links a{font-size:.92rem;font-weight:600;}
.edu-footer-bottom{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:2.25rem auto 0;
  padding-top:1.35rem;
  border-top:1px solid rgba(167,139,250,.16);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.edu-footer-bottom p{margin:0;color:rgba(196,181,253,.76);font-size:.86rem;}
.edu-footer-bottom-links{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;}
.edu-footer-bottom-links a{font-size:.86rem;font-weight:700;}

/* ── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.edu-reveal{opacity:0;transform:translateY(28px);transition:opacity .55s ease,transform .55s ease;}
.edu-reveal.visible{opacity:1;transform:none;}

/* ─────────────────────── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1024px){
  .edu-feat-grid{grid-template-columns:repeat(2,1fr);}
  .edu-testi-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:900px){
  .edu-hero-inner{grid-template-columns:1fr;gap:2.5rem;padding:3rem 1.25rem 5rem;}
  .edu-hero h1{font-size:2.4rem;}
  .edu-hero-sub{font-size:1rem;}
  .edu-steps-wrap{grid-template-columns:1fr;}
  .edu-steps-wrap::before{display:none;}
  .edu-spotlight-wrap{grid-template-columns:1fr;}
  .edu-tab-panel.active{grid-template-columns:1fr;}
  .edu-stats-inner{grid-template-columns:repeat(2,1fr);}
  .edu-section{padding:3.5rem 1.25rem;}
  .edu-section-h2{font-size:1.9rem;}
  .edu-form-row{grid-template-columns:1fr;}
  .edu-cta-band h2{font-size:1.9rem;}
  .edu-footer-inner{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:600px){
  .edu-hero{margin:6px;border-radius:14px;}
  .edu-hero h1{font-size:1.95rem;}
  .edu-hero-sub{font-size:.93rem;}
  .edu-hero-ctas{flex-direction:column;}
  .edu-hero-ctas a,.edu-hero-ctas button{width:100%;text-align:center;box-sizing:border-box;}
  .edu-feat-grid{grid-template-columns:1fr;}
  .edu-testi-grid{grid-template-columns:1fr;}
  .edu-stats-inner{grid-template-columns:1fr 1fr;}
  .edu-stat-val{font-size:2.2rem;}
  .edu-cta-band h2{font-size:1.7rem;}
  .edu-cta-btns{flex-direction:column;}
  .edu-cta-btns a{width:100%;}
  .edu-form{padding:1.5rem;}
  .edu-spotlight-wrap{padding:1.75rem;}
  .edu-inst-strip-inner{padding:0 1rem;}
  .edu-tabs-header{gap:0;}
  .edu-tab-btn{padding:.85rem .9rem;font-size:.82rem;}
  .edu-footer{padding:3rem 1rem 1.75rem;}
  .edu-footer-inner{grid-template-columns:1fr;gap:1.5rem;}
  .edu-footer-bottom{flex-direction:column;align-items:flex-start;}
  .edu-footer-bottom-links{gap:.9rem 1rem;}
}
