/* ═══════════════════════════════════════════════════════════════
   EDUCARE SOLUTION — RECRUITER / INSTITUTION PORTAL
   Theme: Premium Light — crisp white, charcoal, gold accents
   Think: consulting firm, not job board
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #16213E;
  --p-white:    #FFFFFF;
  --p-off:      #F7F8FA;      /* very light grey — alternate sections */
  --p-warm:     #FAFAF8;      /* warm off-white */
  --p-charcoal: #1A1A2E;      /* near-black headings */
  --p-ink:      #2C2C44;      /* body text */
  --p-slate:    #5A5A78;      /* muted body */
  --p-muted:    #8888A0;      /* secondary labels */
  --p-border:   #E4E4EE;      /* subtle border */
  --p-border-m: #CDCDE0;      /* medium border */
  --p-navy:     #0F2044;      /* premium dark navy — hero, footer, accents */
  --p-navy-m:   #1A3260;      /* mid navy */
  --p-gold:     #B8882A;      /* premium gold — primary accent */
  --p-gold-l:   #D4A43E;      /* lighter gold hover */
  --p-gold-pale:#FDF6E3;      /* very pale gold bg */
  --p-gold-line:#E8C96A;      /* gold border/line */
  --max:        1160px;
  --rad:        8px;
  --ff-d:       'Playfair Display', Georgia, serif;
  --ff-s:       'Inter', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body { font-family:var(--ff-s); color:var(--p-ink); background:var(--p-white); line-height:1.6; overflow-x:hidden }
img  { max-width:100%; display:block }
a    { color:inherit; text-decoration:none }
button { font-family:inherit; cursor:pointer }
ul   { list-style:none }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3 { font-family:var(--ff-d); font-weight:700; line-height:1.18; letter-spacing:-.01em; color:var(--p-charcoal) }
h4        { font-family:var(--ff-s); font-weight:700; color:var(--p-charcoal) }
h1 { font-size:clamp(2rem,3.2vw,2.9rem) }
h2 { font-size:clamp(1.45rem,2.3vw,2rem) }
h3 { font-size:clamp(1.1rem,1.6vw,1.3rem) }
h4 { font-size:.95rem }
p  { line-height:1.8 }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap   { max-width:var(--max); margin:0 auto; padding:0 24px }
section { padding:80px 0 }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:36px }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px }
.center { text-align:center }

/* ── Top bar ─────────────────────────────────────────────────── */
.top { background:var(--p-charcoal); color:rgba(255,255,255,.5); font-size:.78rem; padding:8px 0; letter-spacing:.02em }
.top .wrap { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px }
.top a { color:rgba(255,255,255,.65) }
.top a:hover { color:#fff }

/* ── Header — light, premium ─────────────────────────────────── */
.site-header { background:var(--p-white); border-bottom:1px solid var(--p-border); position:sticky; top:0; z-index:100 }
.nav-wrap { display:flex; align-items:center; justify-content:space-between; padding:0 24px; max-width:var(--max); margin:0 auto; height:72px; gap:24px }
.logo img { height:65px; width:auto; display:block }
.nav-links { display:flex; align-items:center; gap:2px }
.nav-links a { font-size:.84rem; font-weight:600; color:var(--p-slate); padding:8px 13px; border-radius:6px; transition:color .18s, background .18s }
.nav-links a:hover { color:var(--p-charcoal); background:var(--p-off) }
.nav-links a.active { color:var(--p-navy) }
.nav-links a.nav-cross { color:#E8A020; border:1px solid #E8A020; padding:7px 16px; border-radius:999px; font-size:.78rem; font-weight:700 }
.nav-links a.nav-cross:hover { background:#E8A020; color:#fff; border-color:#E8A020 }
/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none }
.hamburger span { display:block; width:22px; height:2px; background:var(--p-charcoal); border-radius:2px }
#menu-toggle { display:none }
#menu-toggle:checked ~ .nav-links { display:flex; flex-direction:column; position:absolute; top:72px; left:0; right:0; background:var(--p-white); border-bottom:1px solid var(--p-border); padding:16px 24px; gap:4px; box-shadow:0 4px 16px rgba(0,0,0,.08) }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.9rem; padding:12px 28px; border-radius:var(--rad); border:none; cursor:pointer; transition:all .18s; text-decoration:none; font-family:var(--ff-s); letter-spacing:.01em }
.btn-primary { background:var(--p-navy); color:#fff }
.btn-primary:hover { background:var(--p-navy-m); transform:translateY(-1px) }
.btn-amber  { background:var(--p-gold); color:#fff }
.btn-amber:hover { background:var(--p-gold-l); transform:translateY(-1px) }
.btn-outline { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.4) }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1) }
.btn-outline-dark { background:transparent; color:var(--p-navy); border:2px solid var(--p-navy) }
.btn-outline-dark:hover { background:var(--p-navy); color:#fff }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center }

/* ── Section heads ───────────────────────────────────────────── */
.section-head { margin-bottom:48px }
.section-head.center { text-align:center }
.eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--p-gold); margin-bottom:12px }
.eyebrow::before { content:""; display:block; width:20px; height:1.5px; background:var(--p-gold); flex-shrink:0 }
.section-head h2 { margin-bottom:14px }
.lede { color:var(--p-slate); line-height:1.82; font-size:.97rem }

/* ── Page head (inner pages) ─────────────────────────────────── */
.page-head {
  background: linear-gradient(160deg, var(--p-navy) 0%, #1a3260 55%, #243672 100%);
  padding:64px 0;
}
.page-head .crumbs { font-size:.78rem; color:rgba(255,255,255,.45); margin-bottom:12px }
.page-head .crumbs a { color:rgba(255,255,255,.6) }
.page-head .crumbs a:hover { color:#fff }
.page-head h1 { color:#fff; margin-bottom:14px }
.page-head p  { color:rgba(255,255,255,.7); font-size:1rem; line-height:1.8 }
.page-head .cta-row { margin-top:28px }

/* ── Hero — full-bleed background image, text overlay ─────────── */
.hero-full {
  position:relative;
  min-height:calc(100vh - 100px);
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg-img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center top;
}
/* hero-overlay removed — no overlay on recruiter hero */
.hero-content {
  position:relative; z-index:2;
  width:100%; padding:100px 0 80px;
}

/* Text elements */
.hero-tag { display:inline-flex; align-items:center; gap:10px; font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#e8c96a; margin-bottom:22px }
.hero-tag::before { content:""; display:block; width:28px; height:2px; background:#e8c96a; flex-shrink:0 }
.hero-h1 { font-size:clamp(2.2rem,4vw,3.4rem); color:#fff; margin-bottom:22px; line-height:1.12; max-width:16ch }
.hero-h1 em { font-style:italic; color:#e8c96a; display:block; margin-top:6px }
.hero-sub { color:rgba(255,255,255,.75); font-size:1.02rem; line-height:1.85; max-width:50ch; margin-bottom:40px }

/* ── Stats band — light with gold border ─────────────────────── */
.stats-band { background:linear-gradient(135deg, var(--p-navy) 0%, var(--p-navy-m) 100%); padding:44px 0; position:relative; overflow:hidden }
/* Subtle geometric watermark in stats band */
.stats-band::before { content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%; border:48px solid rgba(184,136,42,.08); pointer-events:none }
.stats-band .wrap { display:flex; align-items:center; justify-content:center }
.stat-item { flex:1; text-align:center; padding:0 28px }
.stat-item strong { display:block; font-family:var(--ff-d); font-size:2.2rem; font-weight:700; color:var(--p-gold-l); line-height:1.1 }
.stat-item span   { font-size:.72rem; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.1em; margin-top:6px; display:block }
.stat-div { width:1px; height:52px; background:rgba(255,255,255,.12); flex-shrink:0 }

/* ── Cards ───────────────────────────────────────────────────── */
.card { background:var(--p-white); border:1px solid var(--p-border); border-radius:var(--rad); padding:28px 24px; transition:box-shadow .2s, transform .2s }
.card:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); transform:translateY(-2px) }
.card h3,.card h4 { margin-bottom:10px }
.card p { color:var(--p-slate); font-size:.9rem; line-height:1.75 }
/* Accent top line on card */
.card-accent { border-top:3px solid var(--p-gold) }

/* ── Step cards ──────────────────────────────────────────────── */
.steps-wrap { display:grid; grid-template-columns:repeat(4,1fr); gap:20px }
.step-card { background:var(--p-white); border:1px solid var(--p-border); border-radius:var(--rad); padding:28px 22px; position:relative }
.step-card::before { content:""; position:absolute; top:0; left:24px; width:32px; height:3px; background:var(--p-gold); border-radius:0 0 3px 3px }
.step-num { font-family:var(--ff-d); font-size:2.2rem; font-weight:700; color:rgba(15,32,68,.12); line-height:1; margin-bottom:14px }
.step-card h4 { font-size:.95rem; font-weight:700; margin-bottom:8px; color:var(--p-charcoal) }
.step-card p  { font-size:.85rem; color:var(--p-slate); line-height:1.75 }

/* ── Feature list ────────────────────────────────────────────── */
.feat-list { list-style:none; display:flex; flex-direction:column; gap:10px }
.feat-list li { display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color:var(--p-border-m); line-height:1.7 }
.feat-list li::before { content:"✓"; color:var(--p-gold); font-weight:700; flex-shrink:0; margin-top:2px }

/* ── Pills ───────────────────────────────────────────────────── */
.pill { display:inline-block; background:var(--p-off); border:1px solid var(--p-border); color:var(--p-ink); font-size:.78rem; font-weight:600; padding:5px 13px; border-radius:4px; margin:3px; transition:border-color .18s }
.pill:hover { border-color:var(--p-gold) }
.pill-group { display:flex; flex-wrap:wrap; gap:0 }

/* ── Service cards ───────────────────────────────────────────── */
.svc-card { background:var(--p-white); border:1px solid var(--p-border); border-radius:var(--rad); padding:24px 20px; transition:box-shadow .2s }
.svc-card:hover { box-shadow:0 4px 16px rgba(0,0,0,.06) }
.svc-card .svc-icon { font-size:1.6rem; margin-bottom:10px }
.svc-card h4 { font-family:var(--ff-d); font-size:.95rem; font-weight:700; margin-bottom:6px; color:var(--p-charcoal) }
.svc-card p { font-size:.83rem; color:var(--p-slate); line-height:1.7 }
.svc-tag { display:inline-block; font-size:.66rem; font-weight:700; padding:3px 10px; border-radius:3px; background:var(--p-gold-pale); color:var(--p-gold); margin-top:10px; text-transform:uppercase; letter-spacing:.07em; border:1px solid var(--p-gold-line) }
.svc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px }

/* ── Service tabs ────────────────────────────────────────────── */
.stab-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px }
.stab { background:var(--p-white); border:1px solid var(--p-border); color:var(--p-slate); font-size:.82rem; font-weight:600; padding:8px 18px; border-radius:4px; cursor:pointer; transition:all .18s }
.stab:hover { border-color:var(--p-navy); color:var(--p-navy) }
.stab.active { background:var(--p-navy); color:#fff; border-color:var(--p-navy) }
.stab-panel { display:none; grid-template-columns:repeat(4,1fr); gap:18px }
.stab-panel.active { display:grid }

/* ── Quotes ──────────────────────────────────────────────────── */
figure.quote { background:var(--p-white); border:1px solid var(--p-border); border-radius:var(--rad); padding:28px 24px; position:relative }
figure.quote::before { content:'\201C'; font-family:var(--ff-d); font-size:3.5rem; line-height:1; color:var(--p-gold-line); position:absolute; top:12px; left:20px }
figure.quote blockquote { padding-top:16px }
figure.quote blockquote p { font-size:.88rem; color:var(--p-slate); line-height:1.85; font-style:italic }
figure.quote footer { margin-top:18px; font-weight:700; font-size:.8rem; color:var(--p-charcoal); display:flex; align-items:center; gap:10px }
figure.quote footer::before { content:""; display:block; width:20px; height:2px; background:var(--p-gold); flex-shrink:0 }
figure.quote footer span { display:block; font-weight:400; color:var(--p-muted); margin-top:2px; font-size:.76rem }

/* ── Dark navy band (mission, cta) ───────────────────────────── */
.mission-band,.cta-band { background:var(--p-navy); padding:80px 0; color:#fff }
.mission-inner { display:grid; grid-template-columns:1.2fr 1fr; gap:80px; align-items:center }
.mission-inner .eyebrow { color:var(--p-gold-l) }
.mission-inner .eyebrow::before { background:var(--p-gold-l) }
.mission-inner h2 { color:#fff; margin-bottom:18px }
.mission-inner p { color:rgba(255,255,255,.65); font-size:.95rem; line-height:1.85 }
.mission-inner p+p { margin-top:14px }
.mission-quote { border-left:2px solid var(--p-gold); padding-left:28px }
.mission-quote blockquote { font-family:var(--ff-d); font-size:1.2rem; font-style:italic; color:#fff; line-height:1.65 }
.mission-quote footer { margin-top:14px; font-size:.8rem; color:rgba(255,255,255,.4) }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band { border-top:3px solid var(--p-gold) }
.cta-band-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap }
.cta-band h2 { color:#fff; margin-bottom:10px }
.cta-band p  { color:rgba(255,255,255,.65); max-width:48ch; font-size:.95rem }

/* ── Brand promise ───────────────────────────────────────────── */
.brand-promise { background:var(--p-gold-pale); border-top:1px solid var(--p-gold-line); border-bottom:1px solid var(--p-gold-line); padding:40px 0 }
.brand-promise-inner { display:flex; align-items:center; gap:24px }
.bp-icon { width:44px; height:44px; flex-shrink:0; color:var(--p-gold) }
.bp-icon svg { stroke:currentColor; fill:none; stroke-width:1.5; width:100%; height:100% }
.brand-promise h3 { color:var(--p-charcoal); font-size:1rem; margin-bottom:6px }
.brand-promise p  { color:var(--p-slate); font-size:.9rem;}

/* ── Carousel ────────────────────────────────────────────────── */
.assoc-section { background:var(--p-off) }
.carousel-outer { width:100%; overflow:hidden; position:relative; padding:10px 0 }
.carousel-outer::before,.carousel-outer::after { content:""; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none }
.carousel-outer::before { left:0; background:linear-gradient(to right, var(--p-off), transparent) }
.carousel-outer::after  { right:0; background:linear-gradient(to left, var(--p-off), transparent) }
.carousel-track { display:flex; gap:28px; animation:scroll 30s linear infinite; width:max-content }
.car-item img { height:68px; width:auto; filter:none; transition:filter .3s }
.car-item img:hover { filter:none }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Table ───────────────────────────────────────────────────── */
.table-scroll { overflow-x:auto; border-radius:var(--rad); border:1px solid var(--p-border) }
table { width:100%; border-collapse:collapse; font-size:.88rem }
th { background:var(--p-navy); color:#fff; padding:13px 16px; text-align:left; font-weight:600; font-size:.8rem; letter-spacing:.04em }
td { padding:12px 16px; border-bottom:1px solid var(--p-border); color:var(--p-slate) }
tr:last-child td { border-bottom:none }
tr:nth-child(even) td { background:var(--p-off) }

/* ── FAQ ─────────────────────────────────────────────────────── */
details { border-bottom:1px solid var(--p-border); padding:18px 0 }
details:first-of-type { border-top:1px solid var(--p-border) }
summary { font-weight:700; font-size:.94rem; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; color:var(--p-charcoal) }
summary::after { content:"+"; font-size:1.2rem; color:var(--p-gold); flex-shrink:0; transition:transform .2s }
details[open] summary::after { transform:rotate(45deg) }
details p { margin-top:12px; color:var(--p-slate); font-size:.9rem; line-height:1.82 }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:60px; align-items:start }
.contact-info h3 { margin-bottom:20px }
.contact-info p,.contact-info li { font-size:.9rem; color:var(--p-slate); line-height:1.8 }
.contact-info li { margin-bottom:8px }
.contact-info li strong { color:var(--p-charcoal) }
.contact-box { background:var(--p-navy); border-radius:var(--rad); padding:40px 36px; text-align:center; color:#fff }
.contact-box h3 { color:#fff; margin-bottom:10px }
.contact-box p { color:rgba(255,255,255,.65); font-size:.9rem; margin-bottom:28px; max-width:32ch; margin-left:auto; margin-right:auto }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background:var(--p-charcoal); color:rgba(255,255,255,.75); padding:64px 0 32px; font-size:.88rem }
.disclaimer-bar { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:4px; padding:10px 16px; font-size:.76rem; color:rgba(255,255,255,.3); margin-bottom:40px; text-align:center }
.foot-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:36px; margin-bottom:40px }
.foot-grid h4 { color:var(--p-gold); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; margin-bottom:14px }
.foot-grid ul li { margin-bottom:8px }
.foot-grid a { color:rgba(255,255,255,.75) }
.foot-grid a:hover { color:#fff }
.foot-grid li strong { color:rgba(255,255,255,.75); font-size:.75rem; text-transform:uppercase; letter-spacing:.06em }
.foot-logo { height:65px; width:auto; background:#fff; padding:5px 8px; border-radius:5px; margin-bottom:14px }
.foot-desc { font-size:.82rem; line-height:1.75; max-width:28ch; margin-bottom:16px; color:rgba(255,255,255,.75) }
.soc-row { display:flex; gap:8px; margin-top:8px }
.soc { display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:4px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.45); transition:all .18s }
.soc:hover { background:var(--p-gold); color:#fff }
.legal { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:.75rem; color:rgba(255,255,255,.75) }

/* ── Drawer + Floating pill ──────────────────────────────────── */
.float-cta { position:fixed; right:0; top:50%; transform:translateY(-50%); z-index:150; display:flex; flex-direction:column; gap:0 }
.float-pill { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; background:var(--p-navy); color:#fff; font-size:.78rem; font-weight:700; padding:16px 12px; width:58px; cursor:pointer; border:none; font-family:var(--ff-s); text-transform:uppercase; letter-spacing:.06em; box-shadow:-3px 2px 12px rgba(0,0,0,.18); transition:background .18s; border-radius:0 }
.float-pill:first-child { border-radius:8px 0 0 0 }
.float-pill:last-child  { border-radius:0 0 0 8px }
.float-pill:hover { background:var(--p-gold) }
.float-pill svg { width:18px; height:18px; flex-shrink:0 }
.float-pill span { display:block; writing-mode:vertical-rl; transform:rotate(270deg); font-size:.72rem; letter-spacing:.07em; margin-top:2px }
.edu-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:200 }
.edu-overlay.open { display:block }
.edu-drawer { position:fixed; top:0; right:0; bottom:0; width:min(460px,100vw); background:#fff; z-index:201; display:flex; flex-direction:column; transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); box-shadow:-8px 0 40px rgba(0,0,0,.15) }
.edu-drawer.open { transform:translateX(0) }
.edu-dhead { background:var(--p-navy); color:#fff; padding:22px 24px; display:flex; align-items:flex-start; gap:14px }
.edu-dhead h3 { font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:4px; font-family:var(--ff-d) }
.edu-dhead p  { font-size:.78rem; color:rgba(255,255,255,.6) }
.edu-close { margin-left:auto; background:rgba(255,255,255,.12); border:none; color:#fff; width:32px; height:32px; border-radius:4px; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .18s; flex-shrink:0 }
.edu-close:hover { background:rgba(255,255,255,.24) }
.edu-dbody { flex:1; overflow-y:auto; padding:20px 24px }
.edu-field { margin-bottom:14px }
.edu-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:14px }
.edu-field label { display:block; font-size:.72rem; font-weight:700; color:var(--p-slate); text-transform:uppercase; letter-spacing:.07em; margin-bottom:5px }
.edu-field input,.edu-field select,.edu-field textarea { width:100%; border:1.5px solid var(--p-border-m); border-radius:5px; padding:10px 12px; font-size:.9rem; font-family:var(--ff-s); color:var(--p-ink); background:#fff; transition:border-color .18s }
.edu-field input:focus,.edu-field select:focus,.edu-field textarea:focus { outline:none; border-color:var(--p-gold); box-shadow:0 0 0 3px rgba(184,136,42,.12) }
.edu-field textarea { resize:vertical; min-height:80px }
.edu-submit { width:100%; padding:13px; background:var(--p-gold); color:#fff; border:none; border-radius:5px; font-size:.92rem; font-weight:700; font-family:var(--ff-s); cursor:pointer; margin-top:6px; transition:background .18s }
.edu-submit:hover { background:var(--p-gold-l) }
.edu-submit:disabled { opacity:.6; cursor:not-allowed }
.edu-status { margin-top:12px; font-size:.83rem; padding:8px 12px; border-radius:5px; display:none }
.edu-status:not(:empty) { display:block }
.edu-status.success { background:var(--p-gold-pale); color:#5C4000; border:1px solid var(--p-gold-line) }
.edu-status.error   { background:#FEE2E2; color:#991B1B; border:1px solid #FCA5A5 }
.wa-btn { position:fixed; bottom:24px; right:24px; z-index:150; background:#25D366; color:#fff; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(0,0,0,.2); transition:transform .2s }
.wa-btn:hover { transform:scale(1.08) }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width:1000px) {
  .steps-wrap { grid-template-columns:repeat(2,1fr) }
  .svc-grid   { grid-template-columns:repeat(2,1fr) }
  .stab-panel.active { grid-template-columns:repeat(2,1fr) }
  .grid-4     { grid-template-columns:repeat(2,1fr) }
  .foot-grid  { grid-template-columns:1fr 1fr }
  .mission-inner { grid-template-columns:1fr; gap:40px }
  .contact-grid  { grid-template-columns:1fr }
  .cta-band-inner { flex-direction:column; text-align:center }
}
@media (max-width:768px) {
  .hero { grid-template-columns:1fr; min-height:auto }
  .nav-links { display:none }
  .hamburger { display:flex }
  .hero-full { min-height:70vh }
  .hero-content { padding:72px 0 60px }
  .hero-h1 { font-size:1.9rem }
  .hero-sub { font-size:.92rem }
  .grid-2,.grid-3 { grid-template-columns:1fr }
  .steps-wrap { grid-template-columns:1fr }
  .svc-grid   { grid-template-columns:1fr }
  .stab-panel.active { grid-template-columns:1fr }
  section { padding:56px 0 }
  .foot-grid  { grid-template-columns:1fr }
  .stats-band .wrap { flex-wrap:wrap; gap:20px }
  .stat-div { display:none }
  .stat-item { flex:none; width:45% }
  .float-pill { padding:12px 10px; width:50px }
  .float-pill span { font-size:.65rem }
  .brand-promise-inner { flex-direction:column }
  .contact-box { padding:28px 20px }
}
@media (max-width:480px) {
  .nav-wrap { height:64px; padding:0 16px }
  .logo img { height:46px }
  .hero-h1 { font-size:1.7rem }
  .wrap { padding:0 16px }
  .stat-item { width:100% }
  .grid-4 { grid-template-columns:1fr }
  .edu-row { grid-template-columns:1fr }
}
@media (prefers-reduced-motion:reduce) {
  .carousel-track { animation:none }
  * { transition:none !important }
}

/* Nav CTA buttons */
.nav-cta-group { display:flex; gap:8px; align-items:center; margin-left:8px; }
.nav-cta-reg, .nav-cta-sch {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .18s;
}
.nav-cta-sch {
  background: var(--navy);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-sch:hover { background: #0a1228; }
.nav-cta-reg {
  background: var(--navy);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-reg:hover { background: #0a1228; }
@media (max-width: 768px) {
  .nav-cta-group { display:none; }
}
