/* ==========================================================================
   Quick Learning Tuition Centre — Fresh Mint design system
   Teal + Sunshine · Poppins + Nunito Sans
   ========================================================================== */

:root {
  --teal: #12B0A8;
  --teal-dark: #0E8C86;
  --teal-light: #5FE0D6;
  --ink: #0B3B3A;
  --ink-soft: #16504E;
  --sunshine: #FFC233;
  --sunshine-dark: #EAA916;
  --coral: #FF7A59;
  --coral-dark: #F25B36;
  --mint: #ECFDFB;
  --mint-2: #F5FBFB;
  --text: #33474B;
  --muted: #6B8285;
  --white: #ffffff;
  --border: #DCEFEC;
  --border-2: #C9E6E2;

  --shadow-sm: 0 1px 3px rgba(11, 59, 58, 0.06), 0 1px 2px rgba(11, 59, 58, 0.04);
  --shadow: 0 10px 30px -12px rgba(11, 59, 58, 0.18);
  --shadow-lg: 0 24px 50px -18px rgba(11, 59, 58, 0.28);
  --shadow-teal: 0 14px 30px -12px rgba(18, 176, 168, 0.5);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --font-head: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --topbar-h: 42px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; margin: 0 0 .6em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1rem; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--mint { background: var(--mint); }
.section--mint2 { background: var(--mint-2); }
.section--ink { background: var(--ink); color: #CFEAE7; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__lead { font-size: 1.15rem; color: var(--muted); margin: 0; }
.section--ink .section__lead { color: #A9D6D2; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--mint); padding: 7px 16px;
  border-radius: var(--r-pill); margin-bottom: 18px; border: 1px solid var(--border-2);
}
.section--ink .eyebrow { background: rgba(255,255,255,.08); color: var(--sunshine); border-color: rgba(255,255,255,.16); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 16px 30px; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-accent { background: var(--sunshine); color: var(--ink); box-shadow: 0 14px 30px -12px rgba(255,194,51,.7); }
.btn-accent:hover { background: var(--sunshine-dark); color: var(--ink); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--border-2); }
.btn-outline:hover { background: var(--mint); color: var(--teal-dark); border-color: var(--teal); }
.btn-white { background: #fff; color: var(--teal-dark); }
.btn-white:hover { background: var(--mint); color: var(--ink); }
.btn-ghost-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background:#fff; color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-block { width: 100%; white-space: normal; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #CFEAE7; font-family: var(--font-head); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--topbar-h); gap: 16px; flex-wrap: wrap; }
.topbar a { color: #CFEAE7; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar__sep { color: rgba(255,255,255,.25); }
.topbar__socials { display: flex; align-items: center; gap: 14px; }
.topbar__socials a { color: var(--sunshine); }
.topbar__socials a:hover { color: #fff; }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .25s ease; }
.navbar.is-stuck { box-shadow: var(--shadow); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__sub { font-family: var(--font-head); font-weight: 600; font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--teal); }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-soft); padding: 10px 14px; border-radius: var(--r-pill); }
.nav__link:hover { color: var(--teal-dark); background: var(--mint); }
.nav__link.is-active { color: var(--teal-dark); background: var(--mint); }
.nav__cta { margin-left: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--border-2); background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--mint); overflow: hidden; padding: 76px 0 90px; }
.hero::before { content: ""; position: absolute; top: -160px; right: -160px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(95,224,214,.35), transparent 62%); pointer-events: none; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { margin-bottom: 18px; }
.hero__title .accent { color: var(--teal); }
.hero__text { font-size: 1.22rem; color: var(--ink-soft); max-width: 38ch; margin-bottom: 28px; }
.hero__ctas { margin-bottom: 26px; }
.hero__reassure { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.hero__reassure .stars { color: var(--sunshine); letter-spacing: 2px; }

.hero__media { position: relative; }
.hero__img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.badge-float { position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.badge-float__num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--teal); line-height: 1; }
.badge-float__label { font-size: .8rem; color: var(--muted); font-weight: 600; line-height: 1.2; }
.badge-float--stat { left: -22px; bottom: 36px; }
.badge-float--stars { right: -14px; top: 30px; flex-direction: column; align-items: flex-start; gap: 2px; }
.badge-float--stars .stars { color: var(--sunshine); font-size: 1.1rem; letter-spacing: 2px; }
.badge-float--stars .badge-float__label { font-weight: 700; color: var(--ink); }

/* ---------- USP / trust strip ---------- */
.usp-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.usp-item { display: flex; align-items: center; gap: 12px; padding: 22px 16px; }
.usp-item + .usp-item { border-left: 1px solid var(--border); }
.usp-item__icon { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; }
.usp-item__icon svg { width: 22px; height: 22px; }
.usp-item__title { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.usp-item__sub { font-size: .82rem; color: var(--muted); }

/* ---------- Feature cards (why choose) ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 26px; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-2); }
.feature-card__icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; display: grid; place-items: center; color: #fff; }
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card__icon.teal { background: var(--teal); }
.feature-card__icon.sunshine { background: var(--sunshine); color: var(--ink); }
.feature-card__icon.coral { background: var(--coral); }
.feature-card__icon.ink { background: var(--ink); }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature-card p { font-size: .98rem; color: var(--muted); margin: 0; }

/* ---------- Subjects grid ---------- */
.subjects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.subject-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.subject-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.subject-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.subject-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.subject-card:hover .subject-card__media img { transform: scale(1.05); }
.subject-card__tag { position: absolute; top: 12px; left: 12px; background: var(--sunshine); color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: .76rem; padding: 5px 12px; border-radius: var(--r-pill); }
.subject-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.subject-card__title { font-size: 1.18rem; margin-bottom: 8px; }
.subject-card__text { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }
.subject-card__levels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.level-pill { background: var(--mint); color: var(--teal-dark); font-family: var(--font-head); font-weight: 600; font-size: .74rem; padding: 4px 11px; border-radius: var(--r-pill); border: 1px solid var(--border); }
.subject-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--teal-dark); display: inline-flex; align-items: center; gap: 6px; }
.subject-card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.subject-card:hover .subject-card__link svg { transform: translateX(4px); }

/* ---------- Steps / How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 26px 28px; }
.step__num { width: 46px; height: 46px; border-radius: 14px; background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 16px; }
.step:nth-child(2) .step__num { background: var(--sunshine); color: var(--ink); }
.step:nth-child(3) .step__num { background: var(--coral); }
.step:nth-child(4) .step__num { background: var(--ink); }
.step:nth-child(5) .step__num { background: var(--teal-dark); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Split / media-text ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split--reverse .split__media { order: 2; }

/* ---------- Tick list ---------- */
.tick-list { list-style: none; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 36px; color: var(--text); }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--mint); border: 1px solid var(--border-2); }
.tick-list li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 4px; border-left: 2px solid var(--teal-dark); border-bottom: 2px solid var(--teal-dark); transform: rotate(-45deg); }
.tick-list--light li { color: #CFEAE7; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3rem); color: var(--sunshine); line-height: 1; }
.stat__label { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: .98rem; margin-top: 8px; }
.section:not(.section--ink) .stat__num { color: var(--teal); }
.section:not(.section--ink) .stat__label { color: var(--ink); }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial { display: none; }
.testimonial.is-active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial__stars { color: var(--sunshine); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial__quote { font-family: var(--font-head); font-weight: 500; font-size: 1.45rem; line-height: 1.5; color: #fff; margin-bottom: 22px; }
.testimonial__author { font-family: var(--font-head); font-weight: 700; color: var(--sunshine); }
.testimonial__role { color: #A9D6D2; font-size: .95rem; }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.slider__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.slider__btn:hover { background: var(--sunshine); color: var(--ink); border-color: var(--sunshine); }
.slider__dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; }
.dot.is-active { background: var(--sunshine); width: 26px; border-radius: var(--r-pill); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--teal); color: #fff; border-radius: var(--r-lg); padding: 56px; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% -20%, rgba(255,194,51,.35), transparent 50%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Page hero / banner ---------- */
.page-hero { background: var(--ink); color: #CFEAE7; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(18,176,168,.4), transparent 65%); }
.page-hero__inner { position: relative; max-width: 800px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero__lead { font-size: 1.15rem; color: #A9D6D2; margin: 0; }
.breadcrumbs { font-size: .85rem; color: #8FC4C0; margin-bottom: 16px; font-family: var(--font-head); }
.breadcrumbs a { color: var(--sunshine); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Prose ---------- */
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--teal-dark); }
.prose ul:not(.tick-list) { padding-left: 1.3em; margin: 0 0 1.1rem; }
.prose ul:not(.tick-list) li { margin-bottom: .4em; }
.prose strong { color: var(--ink); }

/* ---------- Info cards (about values) ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.value-card { background: var(--mint-2); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; }
.value-card h3 { font-size: 1.08rem; color: var(--teal-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.value-card h3 svg { width: 22px; height: 22px; color: var(--teal); }
.value-card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-grid > *, .split > * { min-width: 0; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item__icon { width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; }
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.info-item p, .info-item a { margin: 0; color: var(--muted); font-size: 1rem; overflow-wrap: anywhere; }
.info-item a:hover { color: var(--teal-dark); }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.form-field .req { color: var(--coral); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border-2); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--mint-2);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(18,176,168,.12); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-feedback { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); font-weight: 600; font-family: var(--font-head); display: none; }
.form-feedback.is-error { display: block; background: #FFF1ED; color: var(--coral-dark); border: 1px solid #FFD9CE; }
.form-feedback.is-success { display: block; background: var(--mint); color: var(--teal-dark); border: 1px solid var(--border-2); }
.honeypot { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 8px; }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq.is-open { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__q:hover { color: var(--teal-dark); }
.faq__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq.is-open .faq__icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq__icon svg { width: 14px; height: 14px; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--muted); }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ---------- Fees ---------- */
.fees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.fee-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.fee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fee-card--featured { border-color: var(--teal); box-shadow: var(--shadow); }
.fee-card__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sunshine); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: .76rem; padding: 6px 16px; border-radius: var(--r-pill); white-space: nowrap; }
.fee-card__name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.2rem; margin-bottom: 4px; }
.fee-card__meta { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.fee-card__price { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 2.6rem; line-height: 1; }
.fee-card__price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.fee-card__list { list-style: none; display: grid; gap: 10px; margin: 22px 0 26px; }
.fee-card__list li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--text); }
.fee-card__list li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 7px; height: 12px; border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(45deg); }
.fee-card .btn { margin-top: auto; }
.fee-note { text-align: center; color: var(--muted); margin-top: 30px; font-size: .96rem; }

/* ---------- Single subject ---------- */
.subject-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.subject-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.meta-pill { background: var(--mint); color: var(--teal-dark); border: 1px solid var(--border); font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: 7px 14px; border-radius: var(--r-pill); }
.aside-card { position: sticky; top: 100px; background: var(--ink); color: #CFEAE7; border-radius: var(--r-lg); padding: 30px; }
.aside-card h3 { color: #fff; font-size: 1.2rem; }
.aside-card p { color: #A9D6D2; font-size: .96rem; }
.aside-card .btn { margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #A9D6D2; }
.footer__top { padding: 70px 0 50px; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 18px; font-size: .96rem; color: #8FB8B4; max-width: 34ch; }
.footer__col h4 { color: #fff; font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 18px; }
.footer__list { list-style: none; display: grid; gap: 10px; }
.footer__list a, .footer__list li { color: #A9D6D2; font-size: .96rem; }
.footer__contact { font-style: normal; display: grid; gap: 12px; font-size: .96rem; }
.footer__contact a { color: #A9D6D2; }
.footer__contact a:hover, .footer__list a:hover { color: var(--sunshine); }
.footer__contact .row { display: flex; gap: 12px; }
.footer__contact .row svg { width: 18px; height: 18px; color: var(--teal-light); flex: none; margin-top: 3px; }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07); color: #fff; display: grid; place-items: center; }
.footer__socials a:hover { background: var(--sunshine); color: var(--ink); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__legal { font-size: .85rem; color: #7BA8A4; }
.footer__legal a { color: #A9D6D2; }
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__badge { font-family: var(--font-head); font-weight: 600; font-size: .74rem; color: #CFEAE7; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 6px 12px; border-radius: var(--r-pill); }
.footer__credit { font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; color: #7BA8A4; }
.footer__credit a { color: #A9D6D2; }
.footer__credit a:hover { color: var(--sunshine); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.2rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 520px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .subject-layout { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw); max-width: 100vw; height: 100%; background: #fff; flex-direction: column; align-items: stretch; padding: 112px 24px 36px; transform: translateX(105%); transition: transform .3s ease; box-shadow: var(--shadow-lg); gap: 6px; z-index: 1100; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  body.nav-open .nav { transform: none; }
  /* Lift the navbar's stacking context above the overlay so the open drawer is on top and clickable */
  body.nav-open .navbar { z-index: 1100; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; }
  .nav__cta { margin: 12px 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav-toggle { display: flex; z-index: 1200; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(11,59,58,.45); z-index: 1050; }
  .usp-strip__grid { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(odd) { border-left: none; }
  .usp-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 26px; }
  .topbar__contact .topbar__sep:last-of-type, .topbar .hide-sm { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .badge-float--stat { left: 8px; }
  .badge-float--stars { right: 8px; }
  .btn { width: 100%; white-space: normal; }
  .hero__ctas.btn-row .btn { width: 100%; }
  .topbar__inner { justify-content: center; }
  .brand__name { font-size: 1.15rem; }
}
