/* ═══════════════════════════════════════════════════════════════
   EDUCARE SOLUTION — Shared Design System
   Used by: educaresolution.in (educator) & /recruiter (institution)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:      #16213E;
  --navy-d:    #0D1627;
  --forest:    #0D1F12;
  --forest-m:  #1B4332;
  --amber:     #E8A020;
  --amber-l:   #F5C158;
  --sage:      #D8F3DC;
  --sage-s:    #F0FAF2;
  --white:     #FFFFFF;
  --ink:       #1A2533;
  --slate:     #4A5568;
  --muted:     #6B7280;
  --border:    #E5E7EB;
  --light:     #F9FAFB;
  --max:       1160px;
  --r:         10px;
  --ff-d:      'Fraunces', 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(--ink); background: var(--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,h4 { font-family: var(--ff-d); font-weight: 600; line-height: 1.2; letter-spacing: -.02em }
h1 { font-size: clamp(2rem,3.5vw,2.8rem) }
h2 { font-size: clamp(1.5rem,2.5vw,2rem) }
h3 { font-size: clamp(1.15rem,1.8vw,1.4rem) }
h4 { font-size: 1rem; font-family: var(--ff-s); letter-spacing: 0 }
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: 40px }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
.text-center { text-align: center }

/* ── Top bar ────────────────────────────────────────────────── */
.top { background: var(--navy-d); color: rgba(255,255,255,.6); font-size: .8rem; padding: 8px 0 }
.top .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px }
.top a { color: rgba(255,255,255,.8) }
.top a:hover { color: #fff }

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header { background: #fff; border-bottom: 1px solid var(--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: 6px }
.nav-links a { font-size: .88rem; font-weight: 600; color: var(--slate); padding: 8px 12px; border-radius: 6px; transition: color .2s, background .2s }
.nav-links a:hover { color: var(--ink); background: var(--light) }
.nav-links a.active { color: var(--forest-m) }
.nav-links a.nav-cross { color: var(--amber); border: 1px solid var(--amber); padding: 6px 14px; border-radius: 999px; font-size: .8rem }
.nav-links a.nav-cross:hover { background: var(--amber); color: #fff }
.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 20px !important; border-radius: 999px !important }
.nav-cta:hover { background: var(--navy-d) !important }
/* 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(--ink); border-radius: 2px; transition: .3s }
#menu-toggle { display: none }
#menu-toggle:checked ~ .nav-links { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; padding: 12px 28px; border-radius: 999px; border: none; cursor: pointer; transition: all .2s; text-decoration: none; font-family: var(--ff-s) }
.btn-primary  { background: var(--navy); color: #fff }
.btn-primary:hover  { background: var(--navy-d); transform: translateY(-1px) }
.btn-green    { background: var(--forest-m); color: #fff }
.btn-green:hover    { background: #153829; transform: translateY(-1px) }
.btn-amber    { background: var(--amber); color: var(--forest) }
.btn-amber:hover    { background: var(--amber-l); transform: translateY(-1px) }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45) }
.btn-outline:hover  { border-color: #fff; background: rgba(255,255,255,.08) }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy) }
.btn-outline-dark:hover { background: var(--navy); color: #fff }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center }

/* ── Page head (inner pages) ────────────────────────────────── */
.page-head { background: linear-gradient(135deg, var(--forest) 0%, #12271A 100%); color: #fff; padding: 60px 0 }
.page-head .crumbs { font-size: .8rem; color: rgba(255,255,255,.5); 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: 1.02rem }

/* ── Section heads ──────────────────────────────────────────── */
.section-head { margin-bottom: 48px }
.section-head.center { text-align: center }
.section-head.center .lede { margin: 0 auto }
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--forest-m); margin-bottom: 10px }
.section-head h2 { margin-bottom: 12px }
.lede { color: var(--slate); line-height: 1.8; font-size: .98rem }

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

.hero-tag { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; display: flex; align-items: center; gap: 10px }
.hero-tag::before { content: ""; display: block; width: 28px; height: 2px; background: var(--amber); flex-shrink: 0 }
.hero-h1 { font-size: clamp(2rem,3vw,2.8rem); color: #fff; margin-bottom: 20px; line-height: 1.18 }
.hero-h1 em { font-style: italic; color: var(--amber); display: block }
.hero-sub { color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.85; max-width: 44ch; margin-bottom: 36px }

/* ── Stats band ─────────────────────────────────────────────── */
.stats-band { background: var(--navy); padding: 36px 0 }
.stats-band .wrap { display: flex; align-items: center; justify-content: center; gap: 0 }
.stat-item { flex: 1; text-align: center; padding: 0 24px }
.stat-item strong { display: block; font-family: var(--ff-d); font-size: 1.9rem; font-weight: 700; color: var(--amber) }
.stat-item span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; display: block }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.12); flex-shrink: 0 }

/* ── Cards ──────────────────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px }
.card h3, .card h4 { margin-bottom: 10px }
.card p { color: var(--slate); font-size: .93rem; line-height: 1.75 }

/* ── Step cards ─────────────────────────────────────────────── */
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
.step-card { background: #fff; border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--border); position: relative }
.step-num { font-family: var(--ff-d); font-size: 2rem; font-weight: 700; color: #AEBBC8; line-height: 1; margin-bottom: 14px }
.step-card h4 { font-family: var(--ff-d); font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--ink) }
.step-card p { font-size: .88rem; color: var(--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: .93rem; color: var(--slate); line-height: 1.7 }
.feat-list li::before { content: "✦"; color: var(--amber); flex-shrink: 0; margin-top: 2px }

/* ── Pills ──────────────────────────────────────────────────── */
.pill { display: inline-block; background: var(--sage-s); border: 1px solid #C6E8CC; color: var(--forest-m); font-size: .78rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin: 3px }
.pill-group { display: flex; flex-wrap: wrap; gap: 0 }

/* ── Service cards ──────────────────────────────────────────── */
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 24px 20px }
.svc-card .svc-icon { font-size: 1.6rem; margin-bottom: 10px }
.svc-card h4 { font-family: var(--ff-d); font-size: .97rem; font-weight: 600; margin-bottom: 6px }
.svc-card p { font-size: .85rem; color: var(--slate); line-height: 1.7 }
.svc-tag { display: inline-block; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--sage-s); color: var(--forest-m); margin-top: 10px; text-transform: uppercase; letter-spacing: .06em }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px }

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

/* ── Quotes ─────────────────────────────────────────────────── */
figure.quote { background: var(--light); border-radius: var(--r); padding: 24px; border: 1px solid var(--border) }
figure.quote blockquote p { font-size: .9rem; color: var(--slate); line-height: 1.8; font-style: italic }
figure.quote footer { margin-top: 14px; font-weight: 700; font-size: .82rem; color: var(--ink) }
figure.quote footer span { display: block; font-weight: 400; color: var(--muted); margin-top: 2px }

/* ── Mission band ───────────────────────────────────────────── */
.mission-band { background: var(--navy); color: #fff; padding: 80px 0 }
.mission-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center }
.mission-inner .eyebrow { color: var(--sage) }
.mission-inner h2 { color: #fff; margin-bottom: 18px }
.mission-inner p { color: rgba(255,255,255,.65); font-size: .96rem; line-height: 1.85 }
.mission-inner p + p { margin-top: 14px }
.mission-quote { border-left: 3px solid var(--amber); padding-left: 24px }
.mission-quote blockquote { font-family: var(--ff-d); font-size: 1.25rem; font-style: italic; color: #fff; line-height: 1.6 }
.mission-quote footer { margin-top: 14px; font-size: .82rem; color: rgba(255,255,255,.45) }

/* ── Carousel ───────────────────────────────────────────────── */
.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(--white), transparent) }
.carousel-outer::after  { right: 0; background: linear-gradient(to left, var(--white), transparent) }
.carousel-track { display: flex; gap: 24px; animation: scroll 30s linear infinite; width: max-content }
.car-item img { height: 70px; width: auto; filter: none; transition: filter .3s }
.car-item img:hover { filter: none }
@keyframes scroll { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ── Insights band ──────────────────────────────────────────── */
.insights-band { background: var(--navy); padding: 80px 0 }
.insight-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 24px }
.insight-card strong.big { display: block; font-family: var(--ff-d); font-size: 1.8rem; font-weight: 700; color: var(--amber); margin-bottom: 4px }
.insight-card .label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 10px }
.insight-card .desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7 }

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

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

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #0D1F12 0%, #12271A 100%); padding: 80px 0; color: #fff }
.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: .96rem }

/* ── Brand promise ──────────────────────────────────────────── */
.brand-promise { background: var(--sage-s); border-top: 1px solid #C6E8CC; padding: 40px 0 }
.brand-promise-inner { display: flex; align-items: center; gap: 24px }
.bp-icon { width: 48px; height: 48px; flex-shrink: 0; color: var(--forest-m) }
.bp-icon svg { stroke: currentColor; fill: none; stroke-width: 1.5; width: 100%; height: 100% }

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start }
.contact-info h3 { margin-bottom: 20px }
.contact-info p, .contact-info li { font-size: .93rem; color: var(--slate); line-height: 1.8 }
.contact-info ul { margin-top: 12px }
.contact-info li { margin-bottom: 8px }
.contact-info li strong { color: var(--ink) }
.contact-box { background: var(--light); border: 1px solid var(--border); border-radius: var(--r); padding: 40px 36px; text-align: center }
.contact-box h3 { margin-bottom: 10px }
.contact-box p { color: var(--slate); font-size: .93rem; margin-bottom: 28px; max-width: 36ch; margin-left: auto; margin-right: auto }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 64px 0 32px; font-size: .88rem }
.disclaimer-bar { background: rgba(255,255,255,.06); border-radius: 6px; padding: 10px 16px; font-size: .8rem; color: rgba(255,255,255,.4); 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(--sage); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; font-family: var(--ff-s) }
.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: .78rem; text-transform: uppercase; letter-spacing: .06em }
.foot-logo { height: 65px; width: auto; background: #fff; padding: 6px 10px; border-radius: 6px; margin-bottom: 14px }
.foot-desc { font-size: .85rem; line-height: 1.75; max-width: 28ch; margin-bottom: 16px; color: rgba(255,255,255,.75) }
.soc-row { display: flex; gap: 10px; margin-top: 8px }
.soc { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); transition: all .2s }
.soc:hover { background: var(--forest-m); 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: .78rem; color: rgba(255,255,255,.75) }

/* ── Drawers & overlays ─────────────────────────────────────── */
.edu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200 }
.edu-overlay.open { display: block }
.edu-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(440px,100vw); background: #fff; z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: -4px 0 24px rgba(0,0,0,.15) }
.edu-drawer.open { transform: translateX(0) }
.drawer-head { background: var(--navy); color: #fff; padding: 20px 24px; display: flex; align-items: flex-start; gap: 12px }
.drawer-head h3 { font-size: 1.1rem; margin-bottom: 4px; color: #fff }
.drawer-head p { font-size: .82rem; color: rgba(255,255,255,.65) }
.drawer-close { margin-left: auto; background: rgba(255,255,255,.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center }
.drawer-body { flex: 1; overflow-y: auto; padding: 24px }
.drawer-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px }
.drawer-body label { display: block; font-size: .78rem; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px }
.drawer-body input, .drawer-body select, .drawer-body textarea { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; font-size: .92rem; font-family: var(--ff-s); color: var(--ink); transition: border-color .2s }
.drawer-body input:focus, .drawer-body select:focus, .drawer-body textarea:focus { outline: none; border-color: var(--forest-m) }
.drawer-body textarea { resize: vertical; min-height: 90px }
.drawer-foot { padding: 16px 24px; border-top: 1px solid var(--border) }
.drawer-foot .btn { width: 100%; justify-content: center }
.drawer-status { display: none; text-align: center; padding: 24px; font-size: .92rem }

/* ── Floating pills ─────────────────────────────────────────── */
.float-cta { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 150; display: flex; flex-direction: column; gap: 8px }
.float-pill { display: flex; align-items: center; gap: 8px; background: var(--amber); color: var(--forest); font-size: .85rem; font-weight: 700; padding: 10px 12px 10px 14px; border-radius: 8px 0 0 8px; cursor: pointer; border: none; font-family: var(--ff-s); text-transform: uppercase; letter-spacing: .06em; box-shadow: -2px 2px 8px rgba(0,0,0,.15); transition: all .2s }
.float-pill:hover { padding-right: 16px }
.float-pill.cand { background: var(--navy); color: #fff }
.float-pill span { font-size: 1.1rem; font-weight: 900; line-height: 1; }
.wa-btn { position: fixed; bottom: 24px; right: 24px; z-index: 150; background: #25D366; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.2); transition: transform .2s }
.wa-btn:hover { transform: scale(1.1) }

/* ── 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-full { min-height: 70vh }
  .hero-content { padding: 72px 0 56px }
  .nav-links { display: none }
  .hamburger { display: flex }
  .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: 24px }
  .stat-div { display: none }
  .stat-item { flex: none; width: 45% }
  .float-pill span { display: none }
  .float-pill { padding: 12px; border-radius: 8px 0 0 8px }
  .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: 48px }

  .hero-h1 { font-size: 1.7rem }
  .wrap { padding: 0 16px }
  .foot-grid { grid-template-columns: 1fr }
  .stat-item { width: 100% }
  .grid-4 { grid-template-columns: 1fr }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none }
  * { transition: none !important }
}

/* ═══════════════════════════════════════════════════════════════
   DRAWER SYSTEM + FLOATING PILL (educator)
   ═══════════════════════════════════════════════════════════════ */
.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(--amber); color:#12270E; 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 10px 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(--amber-l) }
.float-pill.cand { background:var(--navy); color:#fff }
.float-pill.cand:hover { background:var(--navy-d) }
.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,.48); z-index:200; backdrop-filter:blur(2px) }
.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 .32s cubic-bezier(.4,0,.2,1); box-shadow:-6px 0 32px rgba(0,0,0,.18) }
.edu-drawer.open { transform:translateX(0) }
.edu-dhead { background:var(--navy); color:#fff; padding:20px 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:.8rem; color:rgba(255,255,255,.65); line-height:1.5 }
.edu-close { margin-left:auto; background:rgba(255,255,255,.15); border:none; color:#fff; width:34px; height:34px; border-radius:50%; font-size:1rem; cursor:pointer; flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:background .2s }
.edu-close:hover { background:rgba(255,255,255,.28) }
.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:.75rem; font-weight:700; color:var(--slate); text-transform:uppercase; letter-spacing:.06em; margin-bottom:5px }
.edu-field input,.edu-field select,.edu-field textarea { width:100%; border:1.5px solid var(--border); border-radius:7px; padding:10px 12px; font-size:.9rem; font-family:var(--ff-s); color:var(--ink); background:#fff; transition:border-color .2s }
.edu-field input:focus,.edu-field select:focus,.edu-field textarea:focus { outline:none; border-color:var(--forest-m); box-shadow:0 0 0 3px rgba(27,67,50,.1) }
.edu-field textarea { resize:vertical; min-height:80px }
.edu-submit { width:100%; padding:13px; background:var(--navy); color:#fff; border:none; border-radius:7px; font-size:.92rem; font-weight:700; font-family:var(--ff-s); cursor:pointer; margin-top:6px; transition:background .2s }
.edu-submit:hover { background:var(--navy-d) }
.edu-submit:disabled { opacity:.6; cursor:not-allowed }
.edu-status { margin-top:12px; font-size:.83rem; padding:8px 12px; border-radius:6px; display:none }
.edu-status:not(:empty) { display:block }
.edu-status.success { background:#D1FAE5; color:#065F46; border:1px solid #6EE7B7 }
.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:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(0,0,0,.2); transition:transform .2s }
.wa-btn:hover { transform:scale(1.1) }
@media (max-width:480px) {
  .float-pill { padding:12px 10px; width:50px }
  .float-pill span { font-size:.65rem }
  .edu-row { grid-template-columns:1fr }
}
/* 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;
  border: none;
  transition: all .18s;
}
.nav-cta-reg {
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-reg:hover { background: var(--navy-d, #0a1228); }
.nav-cta-sch {
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta-sch:hover { background: var(--navy-d, #0a1228); }
@media (max-width: 768px) {
  .nav-cta-group { display:none; }
}
