
:root {
  --navy: #0b2a4a;
  --navy-2: #12395f;
  --navy-3: #eaf1f7;
  --red: #c7363f;
  --red-soft: #fbeaec;
  --blue: #235b8c;
  --blue-soft: #eef5fb;
  --white: #ffffff;
  --offwhite: #f8fafc;
  --text: #183046;
  --muted: #66788a;
  --line: #dce5ed;
  --shadow: 0 18px 50px rgba(11, 42, 74, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}
.footer-logo { width: 52px; height: 52px; }
.brand-text strong {
  display: block;
  color: var(--navy);
  font-family: "Orbitron", sans-serif;
  font-size: 17px;
  letter-spacing: .04em;
}
.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.button), .text-button {
  color: #334c63;
  font-weight: 700;
  font-size: 14px;
}
.nav-links a:not(.button):hover, .text-button:hover { color: var(--red); }
.text-button { background: none; border: 0; padding: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; margin: 5px 0; }

.button {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: .02em;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11,42,74,.18);
}
.button-secondary {
  background: white;
  color: var(--navy);
}
.button-light {
  background: white;
  color: var(--navy);
  border-color: white;
}
.button-ghost {
  background: transparent;
  color: var(--navy);
}
.button-small { padding: 10px 16px; }
.full-button { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 60%, #edf4f9 100%);
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -170px;
  top: -170px;
  background: rgba(35,91,140,.06);
}
.hero:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  left: -120px;
  bottom: -160px;
  background: rgba(199,54,63,.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,42,74,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,42,74,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  padding: 86px 0 76px;
}
.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }

.hero h1, h2, h3, .path-label, .subject-tag, .modal-kicker {
  font-family: "Orbitron", sans-serif;
}
.hero h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 22px 0;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-copy > p {
  color: #52687c;
  font-size: 18px;
  max-width: 650px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.trust-row {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.trust-row div {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11,42,74,.05);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 155px;
}
.trust-row strong { display: block; color: var(--navy); font-size: 18px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.logo-showcase {
  width: 88%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-logo {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.main-card {
  width: min(100%, 450px);
  padding: 26px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: absolute;
  left: -35px;
  bottom: 8px;
}
.card-top, .tutor-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.status-pill {
  background: #eaf5ed;
  color: #2e7340;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.status-pill i { width: 7px; height: 7px; background: #43a35b; border-radius: 50%; display: inline-block; margin-right: 6px; }
.date-label { color: var(--muted); font-size: 12px; }
.lesson-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 32px 0;
}
.subject-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  font: 800 27px "Orbitron", sans-serif;
}
.micro-label { color: var(--red); font-size: 10px; letter-spacing: .11em; font-weight: 800; }
.lesson-row h3 { color: var(--navy); font-size: 23px; margin: 4px 0; }
.lesson-row p { color: var(--muted); margin: 0; font-size: 13px; }
.tutor-row { border-top: 1px solid var(--line); padding-top: 18px; justify-content: flex-start; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-3);
  color: var(--navy);
  display: grid; place-items: center;
  font-weight: 800;
}
.tutor-row div:nth-child(2) { display: grid; }
.tutor-row strong { color: var(--navy); }
.tutor-row span { color: var(--muted); font-size: 11px; }
.icon-button {
  margin-left: auto;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: white; border: 0;
}

.impact-strip {
  background: var(--navy);
  color: white;
  padding: 18px 0;
}
.impact-grid {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.impact-grid p, .service-list span {
  font-size: 11px;
  letter-spacing: .14em;
  margin: 0;
}
.impact-grid p { color: #b9c8d6; }
.service-list { display: flex; flex-wrap: wrap; gap: 20px; }
.service-list span { color: white; }

.trust-section {
  background: white;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: var(--offwhite);
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
  flex: 0 0 auto;
}
.trust-item strong { display: block; color: var(--navy); }
.trust-item small { display: block; color: var(--muted); margin-top: 3px; }

.section { padding: 100px 0; }
.section-white { background: white; }
.section-soft { background: var(--offwhite); }
.section-navy { background: var(--navy); color: white; }
.section-navy .eyebrow { color: #f5b2b6; }
.section-navy .eyebrow span { background: #f5b2b6; }
.section-navy h2, .section-navy h3 { color: white; }
.section-navy p { color: #c2cfda; }

.split-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 90px;
  align-items: start;
}
.section-heading { position: sticky; top: 120px; }
h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 18px 0;
}
.section-heading p, .center-heading p, .story-copy p, .contact-copy > p, .process-heading p {
  color: var(--muted);
  font-size: 16px;
}
.arrow-link { color: var(--red); font-weight: 800; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  min-height: 250px;
  position: relative;
  box-shadow: 0 10px 30px rgba(11,42,74,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-number { position: absolute; top: 18px; right: 18px; color: #bcc9d4; font: 800 11px "Orbitron"; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 24px;
}
.feature-card h3 { color: var(--navy); font-size: 18px; }
.feature-card p { color: var(--muted); font-size: 14px; }

.center-heading { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.subject-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.subject-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  min-height: 245px;
  box-shadow: 0 10px 30px rgba(11,42,74,.04);
}
.subject-card:nth-child(1) { border-top: 4px solid var(--navy); }
.subject-card:nth-child(2) { border-top: 4px solid var(--red); }
.subject-card:nth-child(3) { border-top: 4px solid var(--blue); }
.subject-tag { font-size: 11px; letter-spacing: .14em; color: var(--red); }
.subject-card h3 { color: var(--navy); margin: 18px 0 12px; font-size: 24px; }
.subject-card p { color: var(--muted); font-size: 14px; }

.process-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 40px;
  margin-bottom: 58px;
}
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 24px;
}
.step-number {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: white;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 18px;
}
.step p { color: #c2cfda; font-size: 13px; }

.compact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 36px;
  align-items: center;
}
.story-more { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.story-more.open { max-height: 360px; }
.read-more {
  border: 0; background: none; color: var(--red);
  padding: 10px 0 0; font-weight: 800;
}
.story-mini-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.story-logo { width: 115px; height: 115px; object-fit: contain; }
.story-mini-label {
  display: block; color: var(--red); font-size: 10px; letter-spacing: .14em; margin-bottom: 8px;
  font-family: "Orbitron", sans-serif;
}
.story-mini-card p { margin: 0; color: #4c6174; }

.safety-note {
  max-width: 850px;
  margin: -18px auto 38px;
  background: var(--blue-soft);
  border: 1px solid #d7e5f1;
  border-radius: 14px;
  padding: 20px 22px;
  text-align: left;
}
.safety-badge {
  display: inline-block;
  background: white;
  color: var(--navy);
  border: 1px solid #cedce8;
  border-radius: 999px;
  padding: 6px 10px;
  font: 800 10px "Orbitron", sans-serif;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.safety-note p { margin: 0; color: #4e6477; }

.path-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card {
  border-radius: 18px;
  padding: 38px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 460px;
}
.path-card.family {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(11,42,74,.06);
}
.path-card.volunteer {
  background: var(--navy);
  color: white;
}
.path-label { font-size: 10px; letter-spacing: .14em; color: var(--red); }
.path-card.volunteer .path-label { color: #f2a5aa; }
.path-card h3 { font-size: 29px; line-height: 1.14; margin: 18px 0; color: var(--navy); }
.path-card.volunteer h3 { color: white; }
.path-card p, .path-card li { color: var(--muted); }
.path-card.volunteer p, .path-card.volunteer li { color: #c2cfda; }
.path-card ul { list-style: none; padding: 0; margin: 28px 0; }
.path-card li { margin: 12px 0; padding-left: 24px; position: relative; }
.path-card li:before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; }
.contact-detail { display: flex; gap: 15px; align-items: center; margin-top: 24px; }
.contact-detail > span {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; font-weight: 800;
}
.contact-detail small { display: block; color: var(--muted); letter-spacing: .12em; font-size: 9px; }
.contact-detail strong { color: var(--navy); font-size: 14px; }
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--navy); font-size: 13px; font-weight: 700; }
label small, legend small { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 9px;
  border: 1px solid #cfdbe5;
  background: white;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35,91,140,.10);
}
textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field-row:has(> label:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }

.cta-band {
  background: var(--red);
  color: white;
  padding: 56px 0;
}
.cta-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
}
.cta-inner span { color: #ffd9dc; font-size: 10px; letter-spacing: .14em; font-family: "Orbitron"; }
.cta-inner h2 { color: white; margin: 8px 0 0; }

footer { background: #071c31; color: white; padding: 68px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 54px; }
.footer-grid h4 { font: 700 12px "Orbitron"; letter-spacing: .12em; margin: 0 0 18px; color: #f2a5aa; }
.footer-grid p, .footer-grid a, .footer-grid button {
  color: #aebdcc; font-size: 13px; background: none; border: 0; padding: 0; text-align: left; display: block; margin: 10px 0;
}
.footer-grid a:hover, .footer-grid button:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  margin-top: 42px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px;
  color: #8194a7; font-size: 11px;
}
.footer-bottom div { display: flex; gap: 18px; }

.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,28,49,.72); backdrop-filter: blur(7px); }
.modal-panel {
  position: relative; z-index: 2; width: min(520px, calc(100% - 28px));
  max-height: 92vh; overflow-y: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(7,28,49,.24);
}
.modal-large { width: min(940px, calc(100% - 28px)); }
.modal-close {
  position: absolute; right: 16px; top: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: var(--blue-soft); color: var(--navy); font-size: 22px;
}
.modal-header { padding-right: 30px; margin-bottom: 28px; }
.modal-kicker { color: var(--red); font-size: 10px; letter-spacing: .14em; }
.modal-header h2, .scheduler-top h2 { color: var(--navy); margin: 8px 0; }
.modal-header p, .scheduler-top p { color: var(--muted); margin: 0; }

.form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-progress span { height: 4px; border-radius: 999px; flex: 1; background: #e3eaf0; }
.form-progress span.active { background: var(--red); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { color: var(--navy); margin-bottom: 20px; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }
legend { color: var(--navy); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check-card {
  margin: 0; position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px; border-radius: 10px; border: 1px solid var(--line); cursor: pointer;
}
.check-card input { position: absolute; opacity: 0; }
.check-card:has(input:checked) { background: var(--blue-soft); border-color: #aac8df; }
.check-card span { font-size: 22px; color: var(--blue); }
.day-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.day-grid label { margin: 0; cursor: pointer; }
.day-grid input { position: absolute; opacity: 0; }
.day-grid span {
  border: 1px solid var(--line); border-radius: 8px; padding: 9px 5px; display: grid; place-items: center; font-size: 11px;
}
.day-grid input:checked + span { background: var(--navy); color: white; border-color: var(--navy); }
.certification {
  display: flex; align-items: start; gap: 10px;
  background: var(--offwhite);
  border-radius: 10px; padding: 14px;
}
.certification input { width: auto; margin-top: 3px; }
.notice-box {
  border-left: 3px solid var(--red);
  background: var(--red-soft);
  padding: 14px 16px;
  margin: 14px 0;
}
.notice-box p { color: var(--muted); margin: 5px 0 0; font-size: 12px; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.form-status { min-height: 20px; color: var(--blue); font-size: 12px; font-weight: 700; margin-top: 10px; }
.demo-link {
  border: 0; background: none; color: var(--blue);
  width: 100%; text-align: center; font-weight: 800; margin-top: 18px;
}

.scheduler-panel { width: min(1120px, calc(100% - 28px)); }
.scheduler-top {
  display: flex; justify-content: space-between; align-items: center; gap: 34px; margin-bottom: 26px;
}
.limit-meter {
  min-width: 190px;
  padding: 14px 16px;
  background: var(--blue-soft);
  border-radius: 12px;
  border: 1px solid #d7e5f1;
}
.limit-meter > span { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.limit-meter strong { display: block; color: var(--navy); }
.limit-meter > div { height: 6px; background: white; border-radius: 999px; margin-top: 8px; overflow: hidden; }
.limit-meter i { display: block; height: 100%; width: 0; background: var(--red); transition: width .3s ease; }
.scheduler-layout { display: grid; grid-template-columns: 1.4fr .76fr; gap: 24px; }
.scheduler-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot {
  border: 1px solid var(--line); background: white; color: var(--text);
  border-radius: 10px; padding: 13px; text-align: left;
}
.slot:hover { border-color: #aac8df; }
.slot.selected { background: var(--blue-soft); border-color: var(--blue); }
.slot span { display: block; color: var(--muted); font-size: 11px; }
.booking-summary {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 22px;
}
.booking-summary h3 { color: var(--navy); }
.empty-state { color: var(--muted); font-size: 13px; }
.selected-item {
  background: white; border-radius: 9px; padding: 11px; margin: 8px 0;
  font-size: 12px; display: flex; justify-content: space-between; gap: 8px;
}
.selected-item button { border: 0; background: none; color: var(--red); }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px);
  background: var(--navy); color: white;
  padding: 12px 18px; border-radius: 10px;
  opacity: 0; pointer-events: none; z-index: 2000; transition: .3s ease; font-size: 13px; font-weight: 800;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute; top: 82px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 22px;
    flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .split-layout, .contact-grid, .compact-grid, .scheduler-layout, .path-cards { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 560px; }
  .main-card { left: 50%; transform: translateX(-50%); bottom: -10px; }
  .section-heading { position: static; }
  .feature-grid, .subject-cards, .timeline, .footer-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 74px 0; }
  .hero h1 { font-size: 42px; }
  .feature-grid, .subject-cards, .timeline, .footer-grid, .trust-grid, .field-row, .field-row:has(> label:nth-child(3)), .scheduler-controls, .slot-grid { grid-template-columns: 1fr; }
  .process-heading, .impact-grid, .cta-inner, .scheduler-top { flex-direction: column; align-items: flex-start; }
  .day-grid { grid-template-columns: repeat(4, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .main-card { position: relative; left: auto; transform: none; bottom: auto; margin-top: 16px; }
  .hero-visual { min-height: auto; }
}


/* ===== V5 TRUST + KID-FRIENDLY UPDATES ===== */
.hero-visual {
  position: relative;
  min-height: 610px;
}
.hero-illustration-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 12px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.teaching-illustration {
  width: 100%;
  border-radius: 18px;
}
.logo-float-card {
  position: absolute;
  top: 22px;
  left: -14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(11,42,74,.10);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mini-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}
.logo-float-card strong {
  display: block;
  color: var(--navy);
}
.logo-float-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.main-card {
  left: -18px;
  bottom: -26px;
}

.trust-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-detail-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(11,42,74,.04);
}
.trust-detail-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 18px 0 10px;
}
.trust-detail-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.supportive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.supportive-copy p {
  color: var(--muted);
  font-size: 16px;
}
.support-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.support-point {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.support-point strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.support-point span {
  color: var(--muted);
  font-size: 14px;
}

.kid-cards {
  display: grid;
  gap: 16px;
}
.kid-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(11,42,74,.04);
}
.kid-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  font-size: 24px;
}
.kid-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin: 16px 0 8px;
}
.kid-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.faq-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(11,42,74,.04);
}
.faq-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin: 0 0 10px;
}
.faq-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .trust-detail-grid { grid-template-columns: 1fr 1fr; }
  .supportive-grid { grid-template-columns: 1fr; }
  .logo-float-card {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    margin: 0 0 14px auto;
  }
}
@media (max-width: 700px) {
  .trust-detail-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .logo-float-card {
    margin: 0 auto 14px;
  }
  .hero-illustration-card {
    max-width: 100%;
  }
}


/* ===== STUDENT PRIVACY ===== */
.privacy-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.privacy-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.privacy-intro {
  position: sticky;
  top: 118px;
}
.privacy-intro p {
  color: var(--muted);
}
.privacy-trust-box {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(11,42,74,.04);
}
.privacy-shield {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  flex: 0 0 auto;
}
.privacy-trust-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: 3px;
}
.privacy-trust-box p {
  margin: 0;
  font-size: 13px;
}
.privacy-details {
  display: grid;
  gap: 12px;
}
.privacy-details details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,42,74,.035);
}
.privacy-details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 19px 54px 19px 20px;
  color: var(--navy);
  font-weight: 800;
}
.privacy-details summary::-webkit-details-marker {
  display: none;
}
.privacy-details summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
}
.privacy-details details[open] summary:after {
  content: "−";
}
.privacy-details details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}
.privacy-content {
  padding: 18px 22px 20px;
}
.privacy-content p {
  color: var(--muted);
  margin: 0 0 12px;
}
.privacy-content p:last-child {
  margin-bottom: 0;
}
.privacy-content ul {
  margin: 8px 0 14px;
  padding-left: 20px;
}
.privacy-content li {
  color: #506477;
  margin: 7px 0;
}
.registration-privacy-notice {
  background: var(--blue-soft);
  border: 1px solid #d6e4ef;
  border-radius: 11px;
  padding: 15px 16px;
  margin: 4px 0 18px;
}
.registration-privacy-notice strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.registration-privacy-notice p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 8px;
}
.registration-privacy-notice a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .privacy-intro {
    position: static;
  }
}


/* ===== V10 HERO CLEANUP ===== */
.hero-visual {
  min-height: auto;
  align-self: center;
}
.hero-illustration-card {
  margin: 0 auto;
}


/* ===== V11 HERO CLEANUP ===== */
.hero-visual {
  min-height: auto;
}
.hero-visual .hero-card,
.hero-visual .main-card {
  display: none !important;
}
