/* ===== KayCode Academy, Brand Stylesheet ===== */
:root {
  /* Brand accents (constant in both themes) */
  --navy:   #0B1D3A;
  --yellow: #FFC20E;
  --cyan:   #00C2D6;
  --purple: #7B4DFF;
  --pink:   #FF4DA6;
  --blue:   #2563EB;
  --green:  #22C55E;
  --gray:   #F2F4F7;

  /* Semantic theme tokens — LIGHT (default) */
  --bg:          #ffffff;
  --bg-grad-top: #f7faff;
  --surface:     #ffffff;
  --surface-2:   #F2F4F7;
  --nav-bg:      rgba(255,255,255,.88);
  --text:        #0B1D3A;
  --muted:       #5b6b85;
  --border:      rgba(11,29,58,.08);
  --border-soft: rgba(11,29,58,.06);
  --input-bg:    #fcfdff;
  --input-border:#dfe5ef;
  --dot:         rgba(37,99,235,.12);

  --ink:    var(--text);
  --white:  var(--surface);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(11, 29, 58, .28);
  --shadow-sm: 0 8px 20px -10px rgba(11, 29, 58, .25);
  --maxw: 1140px;
  --font: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Semantic theme tokens — DARK */
[data-theme="dark"] {
  --bg:          #0a1424;
  --bg-grad-top: #0c1a30;
  --surface:     #122844;
  --surface-2:   #0d1d33;
  --nav-bg:      rgba(10,20,36,.85);
  --text:        #eaf0fb;
  --muted:       #9fb1ce;
  --border:      rgba(255,255,255,.10);
  --border-soft: rgba(255,255,255,.07);
  --input-bg:    #0d1d33;
  --input-border:rgba(255,255,255,.14);
  --dot:         rgba(0,194,214,.14);
  --shadow:    0 18px 40px -18px rgba(0,0,0,.6);
  --shadow-sm: 0 8px 20px -10px rgba(0,0,0,.55);
  color-scheme: dark;
}

body, .nav, .card, .level, .step, .faq__item, .values li, .checks li,
.enrol__form, .pill, .field input, .field select, .field textarea {
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

/* ===== Theme toggle button ===== */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); cursor: pointer;
  display: grid; place-items: center; font-size: 1.05rem; line-height: 1;
  transition: transform .15s ease, background .2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle .icon-dark { display: none; }
[data-theme="dark"] .theme-toggle .icon-dark { display: block; }
[data-theme="dark"] .theme-toggle .icon-light { display: none; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.grad { background: linear-gradient(90deg, var(--cyan), var(--purple) 55%, var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 22px -8px rgba(37,99,235,.7); }
.btn--accent  { background: var(--pink); color: #fff; box-shadow: 0 10px 22px -8px rgba(255,77,166,.7); }
.btn--ghost   { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--blue); }
.btn--sm { padding: .55rem 1.1rem; font-size: .92rem; }
.btn--full { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; }
/* Logo mark (transparent hexagon) — light/dark variants */
.brand__img { height: 42px; width: auto; display: block; }
.footer__brand .brand__img { height: 40px; }
.brand__img--dark { display: none; }
[data-theme="dark"] .brand__img--light { display: none; }
[data-theme="dark"] .brand__img--dark { display: block; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand__k { color: #fff; font-weight: 800; font-size: 1.25rem; }
.brand__text strong { display: block; font-size: 1.2rem; color: var(--text); line-height: 1; }
.brand__code { color: var(--cyan); }
.brand__text small { letter-spacing: .32em; font-size: .58rem; color: var(--muted); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--text); font-size: .96rem; }
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__login { font-weight: 600; color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: .7rem; margin-left: 1.4rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-grad-top) 0%, var(--bg) 100%); }
.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.4px);
  background-size: 26px 26px; opacity: .6; mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; align-items: center; padding: clamp(2.5rem, 6vw, 5rem) 0; }
.hero__text { padding-left: clamp(0px, 3vw, 48px); }
.hero__bot { justify-self: start; }
.pill { display: inline-block; background: var(--surface); border: 1px solid rgba(0,194,214,.4); color: var(--blue); font-weight: 600; font-size: .85rem; padding: .4rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 34rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 2rem; }
.hero__stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats div {
  min-width: 145px;
  padding: .95rem 1rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.hero__stats strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero__stats span { font-size: .85rem; color: var(--muted); }

/* ===== KayBot mascot ===== */
.hero__bot { display: grid; place-items: center; }
.kaybot { position: relative; width: 230px; animation: float 4s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-14px); } }
.kaybot__antenna { width: 4px; height: 26px; background: var(--navy); margin: 0 auto -4px; border-radius: 4px; position: relative; }
.kaybot__antenna::after { content: ""; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(255,77,166,.25); }
.kaybot__head { position: relative; width: 170px; height: 140px; margin: 0 auto; background: linear-gradient(160deg, #fff, #e9eef7); border-radius: 38% 38% 34% 34%; box-shadow: var(--shadow); border: 3px solid #fff; }
.kaybot__face { position: absolute; inset: 22px 26px; background: var(--navy); border-radius: 30px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.kaybot__eye { position: relative; width: 18px; height: 20px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 12px var(--pink); animation: blink 4s infinite; }
/* Soft upward eyelashes (two per eye, fanning out at the outer corner) */
.kaybot__eye::before, .kaybot__eye::after { content: ""; position: absolute; top: -5px; width: 11px; height: 3px; background: var(--pink); border-radius: 3px; box-shadow: 0 0 6px var(--pink); }
.kaybot__face .kaybot__eye:nth-of-type(1)::after  { left: -6px;  transform: rotate(-34deg); }
.kaybot__face .kaybot__eye:nth-of-type(1)::before { left: -1px;  transform: rotate(-14deg); }
.kaybot__face .kaybot__eye:nth-of-type(2)::after  { right: -6px; transform: rotate(34deg); }
.kaybot__face .kaybot__eye:nth-of-type(2)::before { right: -1px; transform: rotate(14deg); }
/* Rosy cheeks */
.kaybot__head::before, .kaybot__head::after { content: ""; position: absolute; bottom: 40px; width: 15px; height: 9px; background: rgba(255,77,166,.55); border-radius: 50%; filter: blur(.5px); z-index: 2; }
.kaybot__head::before { left: 30px; }
.kaybot__head::after { right: 30px; }
/* Hair bow */
/* Cute rounded hair bow, centred on top of the head */
.kaybot__bow { position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 52px; height: 30px; z-index: 4; background: radial-gradient(circle at 50% 72%, var(--purple) 0 5px, transparent 6px); filter: drop-shadow(0 3px 4px rgba(11,29,58,.25)); }
.kaybot__bow::before, .kaybot__bow::after { content: ""; position: absolute; bottom: 3px; width: 24px; height: 26px; background: linear-gradient(160deg, var(--pink), #ff7ac0); border-radius: 62% 62% 48% 48% / 72% 72% 40% 40%; }
.kaybot__bow::before { left: 0; transform: rotate(-30deg); transform-origin: bottom right; }
.kaybot__bow::after { right: 0; transform: rotate(30deg); transform-origin: bottom left; }
@keyframes blink { 0%,92%,100% { transform: scaleY(1);} 96% { transform: scaleY(.1);} }
.kaybot__smile { position: absolute; bottom: 24px; width: 30px; height: 14px; border: 3px solid var(--pink); border-top: 0; border-radius: 0 0 22px 22px; box-shadow: 0 6px 10px -6px var(--pink); }
.kaybot__ear { position: absolute; top: 52px; width: 16px; height: 36px; background: var(--pink); border-radius: 8px; }
.kaybot__ear--l { left: -10px; }
.kaybot__ear--r { right: -10px; }
.kaybot__body { width: 130px; height: 70px; margin: -6px auto 0; background: linear-gradient(160deg, var(--navy), #14305c); border-radius: 26px 26px 30px 30px; display: grid; place-items: center; box-shadow: var(--shadow); }
.kaybot__chip { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--pink), var(--purple)); display: grid; place-items: center; color: #fff; font-weight: 800; }
.kaybot__bubble { position: absolute; top: 22px; right: -134px; background: #0f1e38; color: var(--pink); font-family: "Courier New", Courier, monospace; font-weight: 700; font-size: .72rem; padding: .55rem .8rem; border-radius: 10px; box-shadow: 0 4px 18px rgba(255,77,166,.18); border: 1.5px solid var(--cyan); max-width: 132px; line-height: 1.45; }
.kaybot__bubble::before { content: ""; position: absolute; left: -10px; top: 14px; border: 6px solid transparent; border-right-color: var(--cyan); border-left: 0; }

/* ===== Sections ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--surface-2); }
.section--navy { background: var(--navy); color: #eaf0fb; }
.section__head { max-width: 42rem; margin: 0 auto 2.6rem; text-align: center; }
.section__head--light h2 { color: #fff; }
.section__sub { color: var(--muted); font-size: 1.05rem; }
.section--navy .section__sub { color: #aebfdc; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--blue); margin-bottom: .6rem; }
.eyebrow--light { color: var(--cyan); }

/* ===== Grid + Cards ===== */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  --card-glow: rgba(37,99,235,.18);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--blue);
  position: relative;
  isolation: isolate;
}
.card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius) + 8px);
  background: radial-gradient(circle at 50% 50%, var(--card-glow) 0%, transparent 72%);
  filter: blur(28px);
  opacity: .9;
  z-index: -1;
  pointer-events: none;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card--accent-navy { border-top-color: var(--text); --card-glow: rgba(255,255,255,.12); }
.card--accent-cyan { border-top-color: var(--cyan); --card-glow: rgba(0,194,214,.2); }
.card--accent-yellow { border-top-color: var(--yellow); --card-glow: rgba(255,194,14,.2); }
.card--lift { transition: transform .18s ease, box-shadow .18s ease; }
.card--lift:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { font-size: 1.8rem; margin-bottom: .6rem; }
.card h3 { margin-bottom: .3rem; }
.card p { color: var(--muted); margin: 0; }

/* Opening offer */
.offer-card {
  max-width: 50rem;
  margin: 0 auto;
  border-top-color: var(--pink);
  --card-glow: rgba(255,77,166,.18);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,77,166,.14), transparent 34rem),
    linear-gradient(180deg, rgba(37,99,235,.04), transparent 55%);
  pointer-events: none;
}
.offer-card__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  background: rgba(255,77,166,.12);
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.offer-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}
.offer-card__title {
  margin: 0 0 .45rem;
  font-weight: 800;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.offer-card__copy {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-size: 1.03rem;
}
.offer-card__note {
  margin: 0;
  font-weight: 700;
  color: var(--blue);
}
.offer-card__points {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  padding: 0;
  margin: 1.5rem 0 0;
}
.offer-card__points li {
  --card-glow: rgba(37,99,235,.14);
  padding: .8rem .9rem;
  background: color-mix(in srgb, var(--surface-2) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  isolation: isolate;
}
.offer-card__points li::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, var(--card-glow) 0%, transparent 74%);
  filter: blur(18px);
  opacity: .85;
  z-index: -1;
  pointer-events: none;
}

/* Story + values */
.story { max-width: 48rem; margin: 2.4rem auto 0; text-align: center; font-size: 1.2rem; color: var(--text); font-weight: 500; }
.values { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; padding: 0; margin: 2rem 0 0; }
.values li { display: flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--border); padding: .55rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); }

/* ===== Checks ===== */
.checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.checks li { background: var(--surface); border-radius: var(--radius-sm); padding: 1rem 1.1rem 1rem 2.8rem; position: relative; font-weight: 500; box-shadow: var(--shadow-sm); }
.checks li::before { content: "✓"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }

/* ===== Foundation Programme (available now) ===== */
.foundation { background: linear-gradient(135deg, var(--navy), #14305c); color: #fff; border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow); margin-bottom: 2.2rem; position: relative; overflow: hidden; }
.foundation::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(0,194,214,.35), transparent 45%); }
.foundation__badge { position: relative; display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: .82rem; padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem; }
.foundation__body { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.foundation__age { display: inline-block; background: rgba(255,255,255,.12); color: var(--cyan); font-weight: 600; font-size: .8rem; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .6rem; }
.foundation__body h3 { color: #fff; font-size: 1.6rem; margin-bottom: .4rem; }
.foundation__body > div:first-child { flex: 1 1 380px; }
.foundation__body p { color: #c7d4ec; margin-bottom: .8rem; }
.foundation .level__proj { border-top-color: rgba(255,255,255,.18); color: #eaf0fb; }
.levels__heading { text-align: center; font-weight: 700; color: var(--muted); margin: 0 0 1.4rem; }

/* ===== Levels ===== */
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
/* Coming-soon levels: greyed, non-interactive, ribbon */
.level--soon { opacity: .72; }
.level--soon:hover { transform: none; box-shadow: var(--shadow-sm); }
.level--soon::after { content: "Coming soon"; position: absolute; top: 20px; right: -42px; width: 150px; text-align: center; transform: rotate(45deg); background: var(--yellow); color: var(--navy); font-size: .66rem; font-weight: 800; letter-spacing: .04em; padding: .3rem 0; box-shadow: var(--shadow-sm); }
.level--soon .level__num { filter: grayscale(.4); }
.level { background: var(--surface); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); transition: transform .18s ease, box-shadow .18s ease; position: relative; overflow: hidden; }
.level:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.level::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple)); }
.level header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.level__num { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--blue)); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.2rem; }
.level__age { background: var(--surface-2); color: var(--blue); font-weight: 600; font-size: .8rem; padding: .3rem .75rem; border-radius: 999px; }
.level h3 { margin-bottom: .2rem; }
.level__tag { color: var(--purple); font-weight: 600; font-size: .9rem; margin-bottom: .6rem; }
.level p { color: var(--muted); font-size: .95rem; }
.level__proj { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--border); font-size: .92rem; color: var(--text); }
.level__proj strong { color: var(--green); }

/* ===== Features (navy) ===== */
.feature { text-align: center; padding: 1.2rem; }
.feature__icon { font-size: 2.2rem; margin-bottom: .6rem; }
.feature h3 { color: #fff; }
.feature p { color: #aebfdc; font-size: .95rem; }

/* ===== Steps (how online classes work) ===== */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step { flex: 1 1 240px; max-width: 300px; background: var(--surface); border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); text-align: center; position: relative; }
.step__num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step__icon { font-size: 2.2rem; margin-bottom: .5rem; }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }
.step__arrow { display: flex; align-items: center; font-size: 1.8rem; color: var(--cyan); font-weight: 700; }
@media (max-width: 760px) { .step__arrow { display: none; } }

/* ===== FAQ ===== */
.container--narrow { max-width: 780px; }
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq__item { background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .2s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--blue); }
.faq__body { padding: 0 1.3rem 1.2rem; }
.faq__body p { margin: 0; color: var(--muted); }

/* ===== Enrol ===== */
.enrol { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
.enrol__text h2 { color: #fff; }
.enrol__text p { color: #aebfdc; }
.enrol__points { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.enrol__points li { margin-bottom: .5rem; font-weight: 500; }
.enrol__form { background: var(--surface); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea { font-family: var(--font); font-size: .95rem; padding: .7rem .9rem; border: 1.5px solid var(--input-border); border-radius: 10px; color: var(--text); background: var(--input-bg); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,194,214,.18); }
.enrol__form .btn { grid-column: 1 / -1; }
.form__note { grid-column: 1 / -1; margin: 0; font-size: .9rem; font-weight: 600; color: var(--green); min-height: 1.2em; text-align: center; }

/* ===== Footer ===== */
.footer { background: #07142a; color: #cdd9ef; padding: 2.4rem 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.footer__brand { display: flex; align-items: center; gap: .7rem; }
.footer__brand strong { display: block; color: #fff; }
.footer__brand small { font-size: .75rem; color: #8fa3c7; }
.footer__values { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; font-size: .9rem; font-weight: 500; }
.footer__copy { width: 100%; text-align: center; font-size: .82rem; color: #7e93ba; margin: 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid--3, .grid--4, .checks, .levels { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__bot { order: -1; }
  .hero__cta, .hero__stats { justify-content: center; }
  .lead { margin-inline: auto; }
  .enrol { grid-template-columns: 1fr; }
  .offer-card__points { grid-template-columns: repeat(2, 1fr); }
  .nav__links { position: fixed; inset: 72px 0 auto 0; background: var(--surface); flex-direction: column; padding: 1.2rem; gap: 1rem; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow); }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
}
@media (max-width: 560px) {
  .grid--3, .grid--4, .checks, .levels, .enrol__form { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem; }
  .hero__stats div { width: 100%; }
  .offer-card__points { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
