:root {
  --ink: #12263a;
  --ink-soft: #3d556d;
  --blue: #1f6fb2;
  --blue-deep: #0f4c81;
  --sky: #7ec8e3;
  --mint: #d8f1ea;
  --sand: #fff8ef;
  --coral: #e8744f;
  --gold: #f0b429;
  --white: #ffffff;
  --line: rgba(18, 38, 58, 0.1);
  --shadow: 0 18px 50px rgba(15, 76, 129, 0.12);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 200, 227, 0.35), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(232, 116, 79, 0.18), transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(31, 111, 178, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff8ef 45%, #eef7f4 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f6fb2' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: rgba(255,255,255,0.45); backdrop-filter: blur(8px); }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,116,79,0.18);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 0.85rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 76, 129, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(15, 76, 129, 0.34); }
.btn-secondary {
  background: var(--white);
  border-color: rgba(31,111,178,0.2);
  color: var(--blue-deep);
}
.btn-danger {
  background: #f7ecec;
  color: #9b2c2c;
  border-color: #f0d5d3;
}
.btn-sm {
  padding: 0.48rem 0.85rem;
  font-size: 0.84rem;
}
.btn-accent {
  background: linear-gradient(135deg, var(--coral), #d45a35);
  color: white;
  box-shadow: 0 12px 28px rgba(232,116,79,0.28);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,248,239,0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(18,38,58,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding: 0.45rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  height: 58px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  display: block;
}
.brand-logo-footer {
  height: 72px;
  max-width: 260px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), #39a0c9);
  box-shadow: 0 10px 24px rgba(31,111,178,0.28);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}
.brand-text small { color: var(--ink-soft); font-size: 0.72rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(31,111,178,0.1);
  color: var(--blue-deep);
}
.site-nav a.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  margin-left: 0.25rem;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.22);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.site-nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-deep), #0a3a66);
  color: white;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: white;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 120;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Mobile menu drawer */
.mobile-nav-backdrop,
.mobile-nav {
  display: none;
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(12, 32, 54, 0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 100;
    width: min(86vw, 340px);
    padding: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-nav-panel {
    height: 100%;
    max-height: 100dvh;
    margin: 0;
    width: 100%;
    background: #fff;
    border-radius: 22px 0 0 22px;
    box-shadow: -18px 0 50px rgba(12, 32, 54, 0.22);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.75rem 0.85rem;
    transform: translateX(104%);
    opacity: 1;
    transition: transform .28s ease;
    overflow: hidden;
    pointer-events: none;
  }
  .mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.1rem 0.1rem 0.65rem;
    border-bottom: 1px solid #edf2f7;
    flex-shrink: 0;
  }
  .mobile-nav-brand img {
    height: 42px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
  }
  .mobile-nav-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #e8f3fb;
    color: #0f4c81;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    cursor: pointer;
  }
  .mobile-nav-close svg { width: 15px; height: 15px; }

  .mobile-nav-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0;
    margin: 0.1rem 0 0.55rem;
  }
  .mnav-link {
    display: grid;
    grid-template-columns: 34px 1fr 14px;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem 0.35rem;
    border-bottom: 1px solid #eef2f6;
    border-radius: 10px;
    color: #163a5f;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background .2s ease;
  }
  .mnav-link:last-child { border-bottom: 0; }
  .mnav-link:hover,
  .mnav-link.active {
    background: linear-gradient(90deg, rgba(31,111,178,0.08), rgba(31,111,178,0.02));
  }
  .mnav-ico {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
  }
  .mnav-ico svg { width: 15px; height: 15px; }
  .mnav-ico.tone-blue { background: #e7f2fb; color: #1f6fb2; }
  .mnav-ico.tone-green { background: #e8f7ee; color: #2f9e62; }
  .mnav-ico.tone-orange { background: #fff0e6; color: #e67a35; }
  .mnav-ico.tone-pink { background: #fdeef4; color: #d4538a; }
  .mnav-ico.tone-purple { background: #f1ecff; color: #7b61d6; }
  .mnav-ico.tone-sky { background: #e8f4ff; color: #2a7ebd; }
  .mnav-ico.tone-teal { background: #e7f7f4; color: #2a9d8f; }
  .mnav-ico.tone-amber { background: #fff4e5; color: #d98a1c; }
  .mnav-ico.tone-rose { background: #fdeef2; color: #d24f75; }
  .mnav-label { line-height: 1.15; }
  .mnav-chev {
    color: #9aa8b8;
    display: inline-grid;
    place-items: center;
  }
  .mnav-chev svg { width: 13px; height: 13px; }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-shrink: 0;
    min-height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f6fb2, #0f4c81);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 10px 22px rgba(15, 76, 129, 0.24);
  }
  .mobile-nav-cta-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-grid;
    place-items: center;
  }
  .mobile-nav-cta-ico svg { width: 13px; height: 13px; }
  .mobile-nav-cta-arrow { font-size: 1rem; line-height: 1; }
}

.site-nav a.nav-cta span { font-size: 1rem; line-height: 1; margin-left: 0.2rem; }

/* Hero — split banner */
.hero {
  position: relative;
  padding: 1.2rem 0 3.5rem;
  overflow: hidden;
  min-height: auto;
  display: block;
  align-items: unset;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(126,200,227,0.35), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(240,180,41,0.18), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(126,200,227,0.18), transparent 24%);
}
.hero-wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.hero-copy {
  padding: 0.5rem 0.2rem;
  animation: rise 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(31,111,178,0.08);
  box-shadow: 0 8px 22px rgba(18,38,58,0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fa866;
  box-shadow: 0 0 0 0 rgba(47, 168, 102, 0.45);
  animation: pulse 1.8s infinite;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #0f4c81;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.hero-brand::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #1f6fb2;
  margin-top: 0.4rem;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #12263a;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero-copy h1 .hero-hl { color: #1f6fb2; }
.hero-copy .lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-btn-primary { gap: 0.45rem; }
.hero-btn-primary span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero-btn-secondary {
  background: white;
  border-color: rgba(31,111,178,0.18);
}
.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: 36px 36px 120px 36px;
  overflow: hidden;
  min-height: 420px;
  background: #e8f3fb;
  box-shadow: 0 24px 60px rgba(15, 76, 129, 0.16);
}
.hero-media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-deco.sun {
  top: 1.1rem;
  left: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe28a, #f0b429);
  box-shadow: 0 0 0 6px rgba(240,180,41,0.18);
}
.hero-deco.plane {
  top: 1.4rem;
  right: 1.6rem;
  width: 34px;
  height: 34px;
  background: #1f6fb2;
  clip-path: polygon(0 45%, 100% 0, 70% 50%, 100% 100%, 0 55%, 30% 50%);
  filter: drop-shadow(0 6px 10px rgba(31,111,178,0.25));
}
.hero-deco.plane::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 40px;
  right: 28px;
  top: 8px;
  border: 2px dashed rgba(31,111,178,0.35);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 40px 0 0;
}
.hero-deco.note {
  left: 1.1rem;
  bottom: 1.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  color: #1f6fb2;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18,38,58,0.1);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(31,111,178,0.06);
  box-shadow: 0 20px 50px rgba(18, 38, 58, 0.08);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.45rem;
}
.hero-stat-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.hero-stat-ico svg { width: 18px; height: 18px; }
.hero-stat-ico.tone-blue { background: #1f6fb2; }
.hero-stat-ico.tone-orange { background: #e8744f; }
.hero-stat-ico.tone-purple { background: #7b6cf0; }
.hero-stat-ico.tone-teal { background: #2a9d8f; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}
.hero-stat:nth-child(1) strong { color: #e8744f; }
.hero-stat:nth-child(2) strong { color: #7b6cf0; }
.hero-stat:nth-child(3) strong { color: #2a9d8f; }
.hero-stat span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
}

.why-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.why-head {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  text-align: center;
}
.why-head h2 {
  margin: 0.35rem 0 0.6rem;
  color: #163a5f;
}
.why-head .lead {
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-card {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 20px;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(18, 48, 80, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 48, 80, 0.08);
}
.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 0.85rem;
}
.why-ico svg { width: 20px; height: 20px; }
.why-ico.tone-blue { background: #1f6fb2; }
.why-ico.tone-orange { background: #e8744f; }
.why-ico.tone-green { background: #2faa5b; }
.why-ico.tone-purple { background: #7b6cf0; }
.why-ico.tone-teal { background: #2a9d8f; }
.why-ico.tone-coral { background: #d45a35; }
.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #163a5f;
  line-height: 1.3;
}
.why-card p {
  margin: 0;
  color: #5d7388;
  font-size: 0.92rem;
  line-height: 1.55;
}
.why-card em { color: #1f6fb2; font-style: italic; }
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-head { text-align: left; }
}

.audience-strip { padding-top: 1.5rem; padding-bottom: 1rem; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.audience-card {
  display: block;
  padding: 1.6rem 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 40px rgba(18,38,58,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.audience-card.parents {
  background: linear-gradient(145deg, #fff7f2, #ffe8de);
}
.audience-card.schools {
  background: linear-gradient(145deg, #eef7ff, #dff0fb);
}
.audience-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: var(--blue-deep);
}
.audience-card.parents .audience-tag { color: #c45a36; }
.audience-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}
.audience-card p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 36ch;
}
.audience-link {
  font-weight: 700;
  color: var(--blue-deep);
}
.audience-card.parents .audience-link { color: #c45a36; }

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  max-width: none;
}
.section-head.split .btn { flex-shrink: 0; margin-top: 0; }
.section-soft {
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(31,111,178,0.05);
  border-bottom: 1px solid rgba(31,111,178,0.05);
}

/* Age kits showcase — "Every Stage" */
.kits-showcase {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background: #fbfcfe;
}
.kits-showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(126, 200, 227, 0.22), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(240, 180, 41, 0.16), transparent 18%),
    radial-gradient(circle at 85% 78%, rgba(42, 157, 143, 0.12), transparent 22%);
}
.kits-showcase-bg::before,
.kits-showcase-bg::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(31, 111, 178, 0.12);
  border-radius: 50%;
}
.kits-showcase-bg::before {
  width: 180px;
  height: 180px;
  right: 6%;
  top: 8%;
}
.kits-showcase-bg::after {
  width: 120px;
  height: 120px;
  left: 4%;
  bottom: 12%;
  border-color: rgba(232, 116, 79, 0.14);
}
.kits-showcase-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.6rem;
  position: relative;
  z-index: 1;
}
.kits-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.kits-kicker.small { margin-bottom: 1.1rem; }
.kits-kicker .line {
  width: 28px;
  height: 3px;
  border-radius: 999px;
}
.kits-kicker .line.coral { background: #e8744f; }
.kits-kicker .line.blue { background: #1f6fb2; }
.kits-showcase-head h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.kits-showcase-head h2 span { color: #1f6fb2; }
.kits-showcase-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto;
}

.stage-kit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stage-kit-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.5rem;
  min-height: 220px;
  padding: 1.35rem 1.2rem 1.3rem 1.35rem;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(18, 38, 58, 0.05);
  box-shadow: 0 16px 40px rgba(18, 38, 58, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stage-kit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(18, 38, 58, 0.1);
}
.stage-kit-card:nth-child(4),
.stage-kit-card:nth-child(5) {
  /* center last two on wide screens when 5 items */
}
.stage-num {
  position: absolute;
  top: 0.55rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.stage-kit-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stage-age {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.stage-kit-body h3 {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.stage-kit-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.55rem;
  max-width: 24ch;
}
.stage-kit-price {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--blue-deep);
  font-size: 1.1rem;
  font-weight: 700;
}
.stage-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  transition: transform .2s ease, filter .2s ease;
}
.stage-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.stage-btn span { font-size: 1rem; }

.stage-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}
.stage-blob {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  opacity: 0.55;
}
.stage-illus {
  position: relative;
  width: 110px;
  height: 110px;
}

/* Theme colors */
.stage-kit-card.theme-1 { background: linear-gradient(145deg, #fff7f8, #ffe4ea); }
.stage-kit-card.theme-1 .stage-age { background: #ffd0da; color: #b43b55; }
.stage-kit-card.theme-1 .stage-btn { background: #e85a75; }
.stage-kit-card.theme-1 .stage-blob { background: #ffb3c4; }
.stage-kit-card.theme-1 .stage-num { color: #e85a75; }

.stage-kit-card.theme-2 { background: linear-gradient(145deg, #f3f9ff, #dcebff); }
.stage-kit-card.theme-2 .stage-age { background: #cfe2ff; color: #245ea8; }
.stage-kit-card.theme-2 .stage-btn { background: #2f7de1; }
.stage-kit-card.theme-2 .stage-blob { background: #9ec5ff; }
.stage-kit-card.theme-2 .stage-num { color: #2f7de1; }

.stage-kit-card.theme-3 { background: linear-gradient(145deg, #f3fcf6, #d8f5e3); }
.stage-kit-card.theme-3 .stage-age { background: #c6efd5; color: #1f7a4a; }
.stage-kit-card.theme-3 .stage-btn { background: #2fa866; }
.stage-kit-card.theme-3 .stage-blob { background: #95e0b4; }
.stage-kit-card.theme-3 .stage-num { color: #2fa866; }

.stage-kit-card.theme-4 { background: linear-gradient(145deg, #f7f4ff, #e4dcff); }
.stage-kit-card.theme-4 .stage-age { background: #ddd2ff; color: #5a3fbf; }
.stage-kit-card.theme-4 .stage-btn { background: #7b5cff; }
.stage-kit-card.theme-4 .stage-blob { background: #c2b2ff; }
.stage-kit-card.theme-4 .stage-num { color: #7b5cff; }

.stage-kit-card.theme-5 { background: linear-gradient(145deg, #fff8ef, #ffe3c4); }
.stage-kit-card.theme-5 .stage-age { background: #ffd7a8; color: #a85b12; }
.stage-kit-card.theme-5 .stage-btn { background: #f08a24; }
.stage-kit-card.theme-5 .stage-blob { background: #ffc07a; }
.stage-kit-card.theme-5 .stage-num { color: #f08a24; }

/* Simple CSS illustrations */
.illus-1 .ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 7px solid #f2a4b0;
  border-top-color: #e85a75;
}
.illus-1 .r1 { width: 70px; height: 24px; bottom: 28px; }
.illus-1 .r2 { width: 54px; height: 20px; bottom: 42px; border-color: #7ec8e3; border-top-color: #1f6fb2; }
.illus-1 .r3 { width: 38px; height: 16px; bottom: 54px; border-color: #f0b429; border-top-color: #e8744f; }
.illus-1 .star {
  position: absolute;
  left: 50%;
  bottom: 68px;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  background: #f0b429;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.illus-2 .bear {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #c0895a;
  box-shadow: -16px -10px 0 -8px #c0895a, 16px -10px 0 -8px #c0895a;
}
.illus-2 .bear::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 18px;
  height: 12px;
  margin-left: -9px;
  border-radius: 999px;
  background: #2f7de1;
}
.illus-2 .block {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.illus-2 .b1 { right: 18px; bottom: 22px; background: #e85a75; }
.illus-2 .b2 { right: 34px; bottom: 42px; background: #f0b429; }
.illus-2 .b3 { right: 12px; bottom: 46px; background: #2fa866; }

.illus-3 .house {
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 58px;
  height: 42px;
  background: #fff;
  border: 3px solid #2fa866;
  border-radius: 8px;
}
.illus-3 .house::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -28px;
  width: 0;
  height: 0;
  border-left: 37px solid transparent;
  border-right: 37px solid transparent;
  border-bottom: 28px solid #2fa866;
}
.illus-3 .shape {
  position: absolute;
  width: 16px;
  height: 16px;
}
.illus-3 .s1 { right: 22px; bottom: 28px; background: #e85a75; border-radius: 50%; }
.illus-3 .s2 { right: 38px; bottom: 48px; background: #f0b429; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.illus-3 .s3 { right: 14px; bottom: 52px; background: #2f7de1; border-radius: 3px; }

.illus-4 .book {
  position: absolute;
  width: 46px;
  height: 12px;
  border-radius: 3px;
  left: 18px;
}
.illus-4 .bk1 { bottom: 28px; background: #7b5cff; }
.illus-4 .bk2 { bottom: 42px; background: #2f7de1; width: 50px; }
.illus-4 .bk3 { bottom: 56px; background: #e85a75; width: 42px; }
.illus-4 .bulb {
  position: absolute;
  right: 18px;
  bottom: 58px;
  width: 28px;
  height: 36px;
  border-radius: 50% 50% 42% 42%;
  background: #f0b429;
  box-shadow: 0 0 0 6px rgba(240,180,41,0.25);
}
.illus-4 .bulb::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -8px;
  width: 14px;
  height: 10px;
  border-radius: 0 0 4px 4px;
  background: #d8d8d8;
}

.illus-5 .globe {
  position: absolute;
  left: 16px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255,255,255,0.35) 50%, transparent 54%),
    radial-gradient(circle at 35% 35%, #7ec8e3, #1f6fb2 70%);
  box-shadow: 0 8px 0 -2px #8b6b4a;
}
.illus-5 .book {
  position: absolute;
  right: 16px;
  bottom: 24px;
  width: 34px;
  height: 42px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e85a75, #c4455d);
  box-shadow: -8px 4px 0 #2f7de1, -16px 8px 0 #f0b429;
}
.illus-5 .pencil {
  position: absolute;
  right: 48px;
  bottom: 30px;
  width: 8px;
  height: 36px;
  border-radius: 3px;
  background: linear-gradient(180deg, #f0b429 70%, #c0895a 70%, #c0895a);
  transform: rotate(18deg);
}

.stem-kit-wrap {
  margin-top: 2.4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.stem-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}
.stem-kit-card {
  background: white;
  border-radius: 22px;
  padding: 1.2rem;
  border: 1px solid rgba(18,38,58,0.06);
  box-shadow: 0 12px 30px rgba(18,38,58,0.05);
}
.stem-kit-card .cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.stem-kit-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.stem-kit-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.kits-showcase-cta {
  margin-top: 1.6rem;
}
.text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 0.92rem;
}

@media (min-width: 981px) {
  .stage-kit-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .stage-kit-card {
    grid-column: span 2;
  }
  .stage-kit-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .stage-kit-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
@media (max-width: 1100px) and (min-width: 981px) {
  .about-panel {
    grid-template-columns: 1fr 1fr;
  }
  .about-visual {
    grid-column: 1 / -1;
    order: -1;
    min-height: 220px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card,
.support-card {
  min-height: 100%;
}

/* Admission showcase */
.admission-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}
.admission-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(126,200,227,0.28), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(240,180,41,0.18), transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(42,157,143,0.14), transparent 24%);
}
.admission-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 36px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(31,111,178,0.06);
  box-shadow: 0 24px 60px rgba(18, 38, 58, 0.08);
}
.admission-left {
  padding: 0.6rem 0.4rem 0.6rem 0.7rem;
}
.adm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #e7f2fb;
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.adm-badge svg { width: 14px; height: 14px; }
.admission-left h2 {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: #12263a;
}
.admission-left h2 .hl-blue { color: #1f6fb2; }
.admission-left h2 .hl-teal {
  color: #2a9d8f;
  position: relative;
  display: inline-block;
}
.admission-left h2 .hl-teal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.22em;
  border-radius: 999px;
  background: rgba(42, 157, 143, 0.28);
  z-index: -1;
}
.adm-copy {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.3rem;
  max-width: 42ch;
}
.adm-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: linear-gradient(90deg, #1f6fb2, #0f4c81);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.adm-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.34);
}
.adm-cta-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: #1f6fb2;
  font-size: 1.05rem;
}
.adm-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18,38,58,0.08);
}
.adm-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}
.adm-trust span + span {
  padding-left: 1rem;
  border-left: 1px solid rgba(18,38,58,0.1);
}
.adm-trust svg {
  width: 14px;
  height: 14px;
  color: #1f6fb2;
}

.admission-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  background: #eef7ff;
  box-shadow: 0 16px 40px rgba(18,38,58,0.08);
}
.admission-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.adm-speech {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255,255,255,0.92);
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18,38,58,0.1);
  backdrop-filter: blur(6px);
}

.admission-features {
  display: grid;
  gap: 0.75rem;
}
.adm-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(18,38,58,0.06);
  box-shadow: 0 10px 24px rgba(18,38,58,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.adm-feature:hover {
  transform: translateX(3px);
  box-shadow: 0 14px 30px rgba(18,38,58,0.08);
}
.adm-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.adm-ico svg { width: 18px; height: 18px; }
.adm-ico.tone-blue { background: #e7f1fb; color: #1f6fb2; }
.adm-ico.tone-green { background: #e5f7ef; color: #2a9d8f; }
.adm-ico.tone-orange { background: #fff0e4; color: #e8744f; }
.adm-ico.tone-purple { background: #efeaff; color: #7b6cf0; }
.adm-feature strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
  color: var(--ink);
}
.adm-feature p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}
.adm-chev {
  color: #7ec8e3;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.admission-banner {
  border-radius: 32px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(216,241,234,0.88)),
    radial-gradient(circle at right top, rgba(240,180,41,0.22), transparent 40%);
  border: 1px solid rgba(31,111,178,0.08);
  box-shadow: var(--shadow);
}
.admission-banner-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,111,178,0.05);
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-item .tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-item .tick svg { width: 14px; height: 14px; }

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}
.package-card.featured {
  background: linear-gradient(180deg, #0f2f4a, #1a4f7a);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 76, 129, 0.28);
}
.package-card.featured h3,
.package-card.featured .pack-no { color: white; }
.package-card.featured .features li { color: rgba(255,255,255,0.82); }
.package-card.featured .features li::before { background: #7ec8e3; }
.pack-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #dff3ff;
}
.pack-no {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}
.package-card .features {
  margin: 1rem 0 1.4rem;
  flex: 1;
}
.package-card .features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}
.package-card .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.revenue-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #eef7ff);
  border: 1px solid rgba(31,111,178,0.08);
  box-shadow: 0 12px 34px rgba(18,38,58,0.05);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.2rem;
  align-items: start;
}
.revenue-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.2rem;
}
.revenue-list li {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 1.2rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  color: var(--ink-soft);
  border: 1px solid rgba(31,111,178,0.05);
}
.revenue-list li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.book-card .cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.book-cover {
  height: 150px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), transparent 40%),
    linear-gradient(160deg, var(--blue), #39a0c9);
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cover.has-image {
  padding: 0;
  background: #e8eef5;
}
.book-cover.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-cover.tall { min-height: 360px; height: auto; }
.book-cover-link { display: block; text-decoration: none; color: inherit; }
.book-card h3 a { color: inherit; text-decoration: none; }
.book-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.85rem;
}
.book-price { color: var(--blue); font-size: 1.05rem; }
.kit-shop-card .book-cover-link { margin-bottom: 0.55rem; }
.kit-cover-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1rem;
}
.kit-cover-fallback .age {
  position: static;
  margin: 0;
}
.stem-kit-price {
  display: block;
  margin: 0.45rem 0 0.35rem;
  color: var(--blue);
  font-size: 1.05rem;
}
.bag-continue-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 0.5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep, #0f4c81);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.back-link:hover { text-decoration: underline; }

/* Product detail page (PDP) */
.pdp-section {
  padding-top: 1.2rem;
  padding-bottom: 2.8rem;
}
.pdp-container { max-width: 1100px; }
.pdp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}
.pdp-wish-form { margin: 0; }
.pdp-wish {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--blue-deep, #0f4c81);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.pdp-wish svg { width: 18px; height: 18px; }
.pdp-wish.is-on { color: #c0392b; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: start;
}
.pdp-gallery {
  display: grid;
  gap: 0.85rem;
}
.pdp-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #eef4fa;
  min-height: 360px;
  box-shadow: 0 16px 36px rgba(18, 48, 80, 0.08);
}
.pdp-main img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 480px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.pdp-zoom-btn {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(255,255,255,0.95);
  color: #334e68;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 48, 80, 0.12);
}
.pdp-zoom-btn svg { width: 15px; height: 15px; }
.pdp-thumbs-wrap {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 0.45rem;
  align-items: center;
}
.pdp-thumb-nav {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e8f3fb;
  color: #1f6fb2;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.pdp-thumb-nav:hover { background: #d7ebf8; }
.pdp-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0.1rem;
  -webkit-overflow-scrolling: touch;
}
.pdp-thumbs::-webkit-scrollbar { height: 0; }
.pdp-thumb {
  width: 70px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 14px rgba(18, 48, 80, 0.06);
  flex-shrink: 0;
  scroll-snap-align: center;
}
.pdp-thumb.is-active,
.pdp-thumb:hover {
  border-color: #7eb8df;
  box-shadow: 0 6px 16px rgba(31, 111, 178, 0.16);
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-info {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.3rem;
  box-shadow: 0 12px 30px rgba(18, 48, 80, 0.05);
}
.pdp-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: #e8f3fb;
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.pdp-info h1 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  color: #163a5f;
  line-height: 1.15;
}
.pdp-sub {
  margin: 0 0 0.9rem;
  color: #6b7c8f;
  font-size: 1rem;
}
.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.pdp-price {
  font-size: 1.5rem;
  color: #1f6fb2;
  font-weight: 700;
}
.pdp-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #e8f7ef;
  color: #1e7a46;
  font-size: 0.82rem;
  font-weight: 700;
}
.pdp-stock i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
}
.pdp-desc {
  color: #5d7388;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-size: 0.96rem;
}
.pdp-buy { margin-bottom: 0.85rem; }
.pdp-qty {
  display: inline-flex;
  align-items: center;
  background: #eaf4fb;
  border-radius: 14px;
  padding: 0.25rem;
  margin-bottom: 0.85rem;
  border: 1px solid #d7e8f5;
}
.pdp-qty-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #163a5f;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
}
.pdp-qty-btn:hover { background: #fff; }
.pdp-qty input {
  width: 48px;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-weight: 700;
  color: #163a5f;
  pointer-events: none;
}
.pdp-cart-btn {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  font-size: 1.02rem;
  gap: 0.55rem;
}
.pdp-cart-btn svg { width: 20px; height: 20px; }
.pdp-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.pdp-secondary form { margin: 0; }
.pdp-sec-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(31,111,178,0.28);
  background: #fff;
  color: #1f6fb2;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.pdp-sec-btn svg { width: 16px; height: 16px; }
.pdp-sec-btn:hover { background: #f3f9fd; }
.pdp-trust-bar {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  background: #eef5fb;
  border: 1px solid #d9e8f4;
  border-radius: 20px;
  padding: 0.95rem 0.85rem;
  align-items: start;
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  min-width: 0;
}
.pdp-trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #1f6fb2;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(31,111,178,0.08);
}
.pdp-trust-ico svg {
  width: 18px;
  height: 18px;
  stroke: #1f6fb2;
  color: #1f6fb2;
}
.pdp-trust-item strong {
  display: block;
  color: #163a5f;
  font-size: 0.78rem;
  line-height: 1.25;
}
.pdp-trust-item small {
  color: #6b7c8f;
  font-size: 0.7rem;
  line-height: 1.25;
}
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 28, 48, 0.78);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.pdp-lightbox[hidden] { display: none !important; }
.pdp-lightbox img {
  max-width: min(920px, 96vw);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  background: #fff;
}
.pdp-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #163a5f;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile-first product layout (matches reference) */
@media (max-width: 980px) {
  .pdp-section { padding-top: 0.85rem; padding-bottom: 2.2rem; }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pdp-main {
    min-height: 280px;
    border-radius: 22px;
  }
  .pdp-main img {
    min-height: 280px;
    max-height: 360px;
  }
  .pdp-info {
    padding: 1.05rem 1rem 1.15rem;
    border-radius: 20px;
  }
  .pdp-info h1 { font-size: 1.75rem; }
  .pdp-qty { width: 100%; justify-content: space-between; max-width: 180px; }
}
@media (max-width: 900px) {
  .book-cover.tall { min-height: 260px; }
  .book-card-foot { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .pdp-topbar {
    gap: 0.5rem;
  }
  .pdp-wish { font-size: 0.82rem; }
  .pdp-secondary {
    grid-template-columns: 1fr;
  }
  .pdp-zoom-btn span,
  .pdp-zoom-btn { font-size: 0.76rem; }
  .pdp-trust-bar {
    gap: 0.35rem;
    padding: 0.8rem 0.45rem;
  }
  .pdp-trust-ico {
    width: 36px;
    height: 36px;
  }
  .pdp-trust-ico svg { width: 16px; height: 16px; }
  .pdp-trust-item strong { font-size: 0.68rem; }
  .pdp-trust-item small { font-size: 0.62rem; }
}


.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--coral, #e8744f);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.2rem;
}
.nav-cart { font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.btn-block { width: 100%; justify-content: center; }
.empty-cart {
  text-align: center;
  padding: 2.2rem 1.2rem;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: #fff;
}
.page-hero-compact .page-hero-card { padding: 1.35rem 1.2rem; }
.page-hero-compact h1 { font-size: clamp(1.5rem, 4vw, 2rem); }
.page-hero-compact .lead { margin-bottom: 0; font-size: 0.95rem; }

/* Cart page (bag) */
.bag-section { padding-top: 1.35rem; padding-bottom: 3.2rem; }
.bag-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #eaf4fb 0%, #f7fbff 55%, #eef7f2 100%);
  border: 1px solid #d9e8f4;
  border-radius: 28px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.bag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(31,111,178,0.08);
  margin-bottom: 0.65rem;
}
.bag-pill svg { width: 14px; height: 14px; }
.bag-hero-copy h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: #163a5f;
}
.bag-hero-copy p { margin: 0; color: #6b7c8f; }
.bag-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}
.bag-books {
  position: relative;
  width: 120px;
  height: 90px;
}
.bag-books .bb {
  position: absolute;
  bottom: 8px;
  width: 22px;
  height: 70px;
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 8px 16px rgba(18,48,80,0.12);
}
.bag-books .b1 { left: 18px; background: #f0b429; transform: rotate(-8deg); }
.bag-books .b2 { left: 38px; background: #1f6fb2; height: 78px; }
.bag-books .b3 { left: 58px; background: #e8744f; height: 66px; transform: rotate(6deg); }
.bag-books .b4 { left: 76px; background: #2a9d8f; height: 74px; transform: rotate(10deg); }
.bag-books .bb-leaf {
  position: absolute;
  right: 4px;
  bottom: 18px;
  width: 28px;
  height: 36px;
  border-radius: 60% 40% 55% 45%;
  background: #7ed6a0;
  transform: rotate(18deg);
  opacity: 0.9;
}
.bag-hero-quote {
  margin: 0;
  color: #7aa7c7;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: right;
}
.bag-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.15rem;
  align-items: start;
}
.bag-main { display: grid; gap: 0.9rem; }
.bag-item {
  position: relative;
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 22px;
  padding: 1.1rem 1.15rem 0.85rem;
  box-shadow: 0 12px 30px rgba(18, 48, 80, 0.05);
}
.bag-item-x {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  margin: 0;
}
.bag-item-x button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #7a8b9c;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.bag-item-x button:hover { background: #fde8e6; color: #9b2c2c; }
.bag-item-body {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-right: 1.4rem;
}
.bag-item-body img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  background: #eef3f8;
}
.bag-item-meta h3 {
  margin: 0 0 0.2rem;
  color: #163a5f;
  font-size: 1.12rem;
}
.bag-item-meta p {
  margin: 0 0 0.45rem;
  color: #6b7c8f;
  font-size: 0.9rem;
}
.bag-unit {
  margin-top: 0.45rem;
  color: #1f6fb2;
  font-weight: 700;
  font-size: 0.95rem;
}
.bag-item-side {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}
.bag-qty {
  display: inline-flex;
  align-items: center;
  background: #f3f6fa;
  border: 1px solid #e3ebf3;
  border-radius: 12px;
  padding: 0.15rem;
  margin: 0;
}
.bag-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #163a5f;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.bag-qty-btn:hover { background: #fff; }
.bag-qty input {
  width: 40px;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-weight: 700;
  color: #163a5f;
  pointer-events: none;
}
.bag-line {
  font-size: 1.2rem;
  color: #1f6fb2;
}
.bag-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f6;
}
.bag-item-actions form { margin: 0; }
.bag-item-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: #5d7388;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0;
}
.bag-item-actions button svg { width: 15px; height: 15px; }
.bag-item-actions button:hover { color: #1f6fb2; }
.bag-item-actions .is-danger { color: #c0392b; }
.bag-item-actions .is-danger:hover { color: #922b21; }
.bag-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: #e8f3fb;
  color: #1f6fb2;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}
.bag-continue:hover { background: #d9ecf8; }
.bag-summary {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 22px;
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 14px 34px rgba(18, 48, 80, 0.06);
  position: sticky;
  top: 1rem;
}
.bag-summary h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #163a5f;
}
.bag-sum-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e8f3fb;
  color: #1f6fb2;
  display: grid;
  place-items: center;
}
.bag-sum-ico svg { width: 16px; height: 16px; }
.bag-sum-rows {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.bag-sum-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: #5d7388;
  font-size: 0.95rem;
}
.bag-sum-rows strong { color: #163a5f; }
.bag-sum-rows .is-free { color: #1e7a46; }
.bag-info {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e8eef5;
  color: #6b7c8f;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 0.2rem;
}
.bag-sum-total {
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f6;
  font-size: 1.08rem !important;
}
.bag-sum-total strong {
  color: #1f6fb2 !important;
  font-size: 1.25rem;
}
.bag-checkout {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.bag-checkout svg { width: 18px; height: 18px; }
.bag-secure {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #eaf8f0;
  color: #1e7a46;
}
.bag-secure-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d8f3e4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bag-secure-ico svg { width: 16px; height: 16px; }
.bag-secure strong { display: block; font-size: 0.88rem; }
.bag-secure small { color: #3d8f61; font-size: 0.78rem; }
.bag-trust {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  background: #eef5fb;
  border: 1px solid #d9e8f4;
  border-radius: 22px;
  padding: 0.95rem 0.85rem;
  align-items: start;
}
.bag-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  min-width: 0;
}
.bag-trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #1f6fb2;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(31,111,178,0.08);
}
.bag-trust-ico svg {
  width: 18px;
  height: 18px;
  stroke: #1f6fb2;
  color: #1f6fb2;
}
.bag-trust-item strong {
  display: block;
  color: #163a5f;
  font-size: 0.78rem;
  line-height: 1.25;
}
.bag-trust-item small {
  color: #6b7c8f;
  font-size: 0.7rem;
  line-height: 1.25;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 901px) {
  .checkout-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .checkout-form-card { order: 1; }
  .checkout-summary { order: 2; }
}
.checkout-form-card,
.checkout-summary {
  padding: 1.2rem;
}
.checkout-form-card .form-group { margin-bottom: 0.85rem; }
.checkout-form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.checkout-form-card input,
.checkout-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fbfcfe;
}
.checkout-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.alert-error { background: #fde8e6; color: #9b2c2c; }
.alert-success { background: #e8f7ef; color: #1e7a46; }

@media (max-width: 980px) {
  .bag-hero,
  .bag-layout { grid-template-columns: 1fr; }
  .bag-hero-art { justify-content: flex-start; }
  .bag-item-body {
    grid-template-columns: 76px 1fr;
  }
  .bag-item-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    align-items: center;
  }
  .bag-summary { position: static; }
}
@media (max-width: 900px) {
  .book-cover.tall { min-height: 260px; }
  .book-card-foot { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .bag-item-actions { gap: 0.55rem; }
  .bag-hero { padding: 1.1rem; }
  .bag-trust {
    gap: 0.35rem;
    padding: 0.8rem 0.45rem;
  }
  .bag-trust-ico {
    width: 36px;
    height: 36px;
  }
  .bag-trust-ico svg { width: 16px; height: 16px; }
  .bag-trust-item strong { font-size: 0.68rem; }
  .bag-trust-item small { font-size: 0.62rem; }
}



.book-cover::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -20px;
  bottom: -24px;
  background: rgba(255,255,255,0.12);
}
.book-card:nth-child(2n) .book-cover { background: linear-gradient(160deg, #e8744f, #f0b429); }
.book-card:nth-child(3n) .book-cover { background: linear-gradient(160deg, #2a9d8f, #7ec8e3); }
.book-card:nth-child(4n) .book-cover { background: linear-gradient(160deg, #0f4c81, #7ec8e3); }
.book-card:nth-child(5n) .book-cover { background: linear-gradient(160deg, #7b6cf0, #9fd4ef); }

/* About showcase */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background: #f7fbff;
}
.about-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(126,200,227,0.28), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(240,180,41,0.18), transparent 20%),
    radial-gradient(circle at 80% 85%, rgba(126,200,227,0.16), transparent 24%);
}
.about-section-bg::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: 12%;
  top: 8%;
  border: 2px dashed rgba(31,111,178,0.12);
  border-radius: 50%;
}
.about-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.1fr;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 1.3rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #e7f2fb;
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-badge svg { width: 14px; height: 14px; }
.about-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #12263a;
}
.about-left h2 .hl-blue { color: #1f6fb2; }
.about-mark {
  position: relative;
  display: inline-block;
}
.about-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.28em;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.55);
  z-index: -1;
  transform: skewX(-8deg);
}
.about-left p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 42ch;
}

.about-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.about-visual-blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 46% 54% 48% 52% / 52% 42% 58% 48%;
  background: linear-gradient(145deg, #d8ecff, #fff1d6);
  opacity: 0.9;
}
.about-books-art {
  position: relative;
  width: 180px;
  height: 160px;
  z-index: 1;
}
.abook {
  position: absolute;
  left: 18px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 6px 14px rgba(18,38,58,0.12);
}
.abook.a1 { bottom: 18px; width: 108px; background: #2a9d8f; }
.abook.a2 { bottom: 42px; width: 118px; background: #e85a75; }
.abook.a3 { bottom: 66px; width: 112px; background: #f0b429; }
.abook.a4 { bottom: 90px; width: 104px; background: #1f6fb2; }
.apencil-cup {
  position: absolute;
  right: 8px;
  bottom: 18px;
  width: 42px;
  height: 48px;
  border-radius: 8px 8px 12px 12px;
  background: #fff;
  border: 2px solid #e6eef5;
  box-shadow: 0 10px 20px rgba(18,38,58,0.1);
}
.apencil-cup i {
  position: absolute;
  bottom: 36px;
  width: 5px;
  height: 34px;
  border-radius: 2px;
}
.apencil-cup i:nth-child(1) { left: 6px; background: #e85a75; transform: rotate(-8deg); }
.apencil-cup i:nth-child(2) { left: 12px; background: #f0b429; height: 40px; }
.apencil-cup i:nth-child(3) { left: 18px; background: #2fa866; transform: rotate(4deg); }
.apencil-cup i:nth-child(4) { left: 24px; background: #2f7de1; height: 38px; transform: rotate(-3deg); }
.apencil-cup i:nth-child(5) { left: 30px; background: #7b5cff; transform: rotate(7deg); }
.apencil-cup i:nth-child(6) { left: 15px; background: #e8744f; height: 28px; transform: rotate(12deg); }

.about-side-cards {
  display: grid;
  gap: 0.8rem;
}
.about-side-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(18,38,58,0.05);
  box-shadow: 0 12px 28px rgba(18,38,58,0.05);
}
.about-side-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.about-side-ico svg { width: 18px; height: 18px; }
.about-side-card.tone-blue .about-side-ico { background: #e7f1fb; color: #1f6fb2; }
.about-side-card.tone-blue .about-side-chev { color: #1f6fb2; }
.about-side-card.tone-orange .about-side-ico { background: #fff0e4; color: #e8744f; }
.about-side-card.tone-orange .about-side-chev { color: #e8744f; }
.about-side-card.tone-green .about-side-ico { background: #e5f7ef; color: #2a9d8f; }
.about-side-card.tone-green .about-side-chev { color: #2a9d8f; }
.about-side-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}
.about-side-card p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}
.about-side-chev {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.about-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(18,38,58,0.05);
  box-shadow: 0 12px 28px rgba(18,38,58,0.05);
}
.about-stat-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-stat-ico svg { width: 20px; height: 20px; }
.about-stat-ico.tone-blue { background: #e7f1fb; color: #1f6fb2; }
.about-stat-ico.tone-orange { background: #fff0e4; color: #e8744f; }
.about-stat-ico.tone-purple { background: #efeaff; color: #7b6cf0; }
.about-stat-ico.tone-green { background: #e5f7ef; color: #2a9d8f; }
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  color: #12263a;
}
.about-stat span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
.about-values {
  display: grid;
  gap: 0.9rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(31,111,178,0.06);
  box-shadow: 0 10px 28px rgba(18,38,58,0.05);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--blue-deep);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.cta-section { padding-top: 2rem; }
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.8rem);
  color: white;
  background: linear-gradient(135deg, #1a6fb5 0%, #1f7cc4 45%, #2686cb 100%);
  box-shadow: 0 18px 40px rgba(31, 111, 178, 0.28);
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 1.5rem;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  left: -90px;
  bottom: -110px;
  background: rgba(10, 70, 120, 0.28);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -80px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta-copy { position: relative; z-index: 1; }
.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ec8e3;
  box-shadow: 0 0 0 4px rgba(126, 200, 227, 0.25);
}
.cta-band h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.2;
  max-width: 18ch;
}
.cta-band h2 span { color: #7ed6f5; }
.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  line-height: 1.6;
  font-size: 0.98rem;
}
.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  justify-items: stretch;
}
.cta-btn-primary,
.cta-btn-ghost {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}
.cta-btn-primary {
  background: linear-gradient(135deg, #e8744f, #d45a35);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(212, 90, 53, 0.35);
}
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212, 90, 53, 0.4);
}
.cta-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.75);
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
@media (max-width: 860px) {
  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta-band h2 { max-width: none; }
  .cta-actions { max-width: 360px; }
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(18,38,58,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-deep);
  background: linear-gradient(145deg, var(--mint), #e8f4fb);
}
.card-icon svg { width: 24px; height: 24px; }
.kit-card .age {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  background: rgba(232,116,79,0.12);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}
.kit-card .cat {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero {
  padding: 3rem 0 1rem;
}
.page-hero-card {
  border-radius: 28px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(232,244,251,0.9));
  border: 1px solid rgba(31,111,178,0.08);
  box-shadow: var(--shadow);
}

.about-promise-section { padding-top: 0.4rem; padding-bottom: 0.8rem; }
.about-promise {
  background: linear-gradient(135deg, #eaf7f0, #eef5fb);
  border: 1px solid #d5ebdd;
  border-radius: 22px;
  padding: 1.35rem 1.4rem;
  text-align: center;
}
.about-promise h2 {
  margin: 0 0 0.5rem;
  color: #163a5f;
  font-size: 1.35rem;
}
.about-promise p {
  margin: 0 auto;
  max-width: 58ch;
  color: #5d7388;
  line-height: 1.6;
}
.partners-section { padding-top: 1.5rem; padding-bottom: 2rem; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.partner-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.9rem;
  align-items: start;
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(18, 48, 80, 0.05);
}
.partner-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.partner-mark.tone-blue { background: #1f6fb2; }
.partner-mark.tone-teal { background: #2a9d8f; }
.partner-card h3 {
  margin: 0 0 0.4rem;
  color: #163a5f;
  font-size: 1.1rem;
}
.partner-card p {
  margin: 0;
  color: #5d7388;
  line-height: 1.55;
  font-size: 0.94rem;
}
@media (max-width: 720px) {
  .partners-grid { grid-template-columns: 1fr; }
}

.founders-section { padding-top: 1.5rem; }

.committee-section { padding-top: 0.8rem; padding-bottom: 1.2rem; }
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.committee-card {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 20px;
  padding: 1.25rem 1.15rem 1.3rem;
  box-shadow: 0 10px 28px rgba(18, 48, 80, 0.05);
  text-align: left;
}
.committee-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}
.committee-avatar.tone-blue { background: #1f6fb2; }
.committee-avatar.tone-orange { background: #e8744f; }
.committee-avatar.tone-teal { background: #2a9d8f; }
.committee-role {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #eef5fb;
  color: #1f6fb2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.committee-card h3 {
  margin: 0 0 0.45rem;
  color: #163a5f;
  font-size: 1.12rem;
}
.committee-card p {
  margin: 0;
  color: #5d7388;
  line-height: 1.55;
  font-size: 0.93rem;
}
@media (max-width: 900px) {
  .committee-grid { grid-template-columns: 1fr; }
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.growth-card {
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(18, 48, 80, 0.05);
}
.growth-num {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
}
.growth-card h3 {
  margin: 0 0 0.4rem;
  color: #163a5f;
  font-size: 1.05rem;
}
.growth-card p {
  margin: 0;
  color: #5d7388;
  font-size: 0.93rem;
  line-height: 1.55;
}
.growth-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #1f6fb2, #0f4c81);
  color: #fff;
  border-radius: 24px;
  padding: 1.35rem 1.5rem;
}
.growth-cta-panel h2 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.growth-cta-panel p { margin: 0; color: rgba(255,255,255,0.88); max-width: 52ch; }
.growth-cta-panel .btn-primary {
  background: #fff;
  color: #0f4c81;
  white-space: nowrap;
}

.enquire-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.enquire-card {
  display: block;
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 22px;
  padding: 1.3rem;
  box-shadow: 0 10px 28px rgba(18, 48, 80, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.enquire-card:hover,
.enquire-card.is-featured {
  transform: translateY(-3px);
  border-color: rgba(31,111,178,0.35);
  box-shadow: 0 16px 36px rgba(15, 76, 129, 0.12);
}
.enquire-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31,111,178,0.1);
  color: var(--blue-deep);
  margin-bottom: 0.85rem;
}
.enquire-ico svg { width: 22px; height: 22px; }
.enquire-card h3 { margin: 0 0 0.4rem; color: #163a5f; }
.enquire-card p { margin: 0 0 0.9rem; color: #5d7388; line-height: 1.55; }
.enquire-go { font-weight: 600; color: var(--blue); }

@media (max-width: 980px) {
  .growth-grid { grid-template-columns: 1fr 1fr; }
  .growth-cta-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .growth-grid,
  .enquire-grid { grid-template-columns: 1fr; }
}
.founders-stack {
  display: grid;
  gap: 1.1rem;
}
.founder-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid #e2ebf3;
  border-radius: 22px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 30px rgba(18, 48, 80, 0.05);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.founder-avatar.tone-blue { background: #1f6fb2; }
.founder-avatar.tone-orange { background: #e8744f; }
.founder-avatar.tone-teal { background: #2a9d8f; }
.founder-body h3 {
  margin: 0 0 0.55rem;
  color: #163a5f;
  font-size: 1.2rem;
}
.founder-body h3 span {
  color: #6b7c8f;
  font-weight: 500;
  font-size: 0.95rem;
}
.founder-body p {
  margin: 0;
  color: #5d7388;
  line-height: 1.65;
  font-size: 0.96rem;
}
.founder-body blockquote {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #1f6fb2;
  background: #eef5fb;
  border-radius: 0 14px 14px 0;
  color: #163a5f;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .founder-card {
    grid-template-columns: 1fr;
  }
}

.how-works-section { padding-top: 0.5rem; padding-bottom: 1.2rem; }
.how-works-card {
  background: #2faa5b;
  color: #102418;
  border-radius: 22px;
  padding: clamp(1.3rem, 3vw, 1.85rem) clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 14px 32px rgba(47, 170, 91, 0.25);
}
.how-works-card h2 {
  margin: 0 0 0.65rem;
  color: #0d1f14;
  font-size: 1.25rem;
  font-weight: 700;
}
.how-works-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.98rem;
  color: #122619;
}
.how-works-card em {
  font-style: italic;
  font-weight: 700;
}

.form-card {
  background: white;
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,111,178,0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.92rem; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(18,38,58,0.14);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fbfcfe;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31,111,178,0.12);
}
.alert {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.alert-success { background: #e7f8ef; color: #1b6b3a; }
.alert-error { background: #fdeceb; color: #9b2c2c; }

.site-footer {
  position: relative;
  margin-top: 4rem;
  padding: 4rem 0 1.5rem;
  background:
    radial-gradient(circle at 92% 100%, rgba(31,111,178,0.35), transparent 28%),
    linear-gradient(180deg, #0b2740 0%, #0f2f4a 55%, #0a2238 100%);
  color: rgba(255,255,255,0.84);
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,227,0.18), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand-link { margin-bottom: 0.9rem; }
.site-footer .brand-logo {
  height: 78px;
  max-width: 280px;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  max-width: 40ch;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 400;
}
.site-footer svg {
  display: block;
  flex-shrink: 0;
  overflow: visible;
}
.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  min-height: 36px;
}
.contact-list a,
.contact-list span {
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
}
.contact-list a:hover { color: #9fd4ef; }
.contact-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(31,111,178,0.4);
  color: #b7e3f7;
  box-shadow: inset 0 0 0 1px rgba(159,212,239,0.18);
}
.contact-ico svg { width: 17px; height: 17px; }
.social-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: white;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.95; }
.social-btn svg { width: 18px; height: 18px; }
.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.social-yt { background: #ff0000; }
.social-li { background: #0a66c2; }
.social-wa { background: #25d366; }
.contact-ico-wa { background: rgba(37, 211, 102, 0.28); color: #7dffb0; }

.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 2.35rem;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}
.footer-col-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.footer-col-ico svg { width: 16px; height: 16px; }
.footer-col-ico.parents { background: #1f6fb2; }
.footer-col-ico.schools { background: #2a9d8f; }
.footer-col-ico.support { background: #7b6cf0; }
.footer-col:nth-child(3) h4::after { background: #2a9d8f; }
.footer-col:nth-child(4) h4::after { background: #7b6cf0; }

.footer-links { display: grid; }
.footer-links li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-links a span {
  opacity: 0.55;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
.footer-links a:hover {
  color: #9fd4ef;
  padding-left: 0.25rem;
}

.support-hours-box {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.hours-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(126,200,227,0.15);
  color: #9fd4ef;
  flex-shrink: 0;
}
.hours-ico svg { width: 18px; height: 18px; }
.support-hours-box strong {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
}
.support-hours-box em {
  display: block;
  font-style: normal;
  font-size: 1.12rem;
  font-weight: 700;
  color: #9fd4ef;
  margin: 0.12rem 0;
  font-family: var(--font-body);
}
.support-hours-box small {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}
.footer-service-btns {
  display: grid;
  gap: 0.55rem;
}
.footer-service-btns span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  background: rgba(15, 55, 90, 0.65);
  border: 1px solid rgba(126,200,227,0.28);
  color: #e7f5fb;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-service-btns svg {
  width: 18px;
  height: 18px;
  color: #9fd4ef;
  flex-shrink: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}
.footer-credit .heart {
  color: #7ec8e3;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 255, 166, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(125, 255, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 255, 166, 0); }
}

@media (max-width: 980px) {
  .grid-4, .stats, .audience-grid, .admission-banner-grid, .about-layout, .revenue-panel, .admission-panel, .about-panel, .about-stats {
    grid-template-columns: 1fr;
  }
  .grid-3, .footer-grid, .stage-kit-grid, .stem-kit-grid { grid-template-columns: 1fr 1fr; }
  .stage-kit-grid { grid-template-columns: 1fr 1fr !important; }
  .stage-kit-card,
  .stage-kit-card:nth-child(4),
  .stage-kit-card:nth-child(5) {
    grid-column: auto !important;
  }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-bottom: 9.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-media-frame,
  .hero-media-frame img { min-height: 340px; }
  .hero-copy h1 { max-width: none; }
  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }
  .package-card.featured { transform: none; }
  .nav-toggle { display: flex; }
  .site-nav { display: none !important; }
  .header-inner { position: relative; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .stats, .feature-list, .form-grid, .footer-grid, .revenue-list,
  .stage-kit-grid, .stem-kit-grid {
    grid-template-columns: 1fr !important;
  }
  .stage-kit-card {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .hero { min-height: auto; padding: 1rem 0 2.5rem; }
  .hero-panel { min-height: 78vh; border-radius: 28px; }
  .hero-photo { object-position: center 20%; }
  .hero h1 { max-width: none; }
  .hero-content { padding-bottom: 10rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-media-frame { border-radius: 28px; }
  .hero-media-frame,
  .hero-media-frame img { min-height: 280px; }
  .section { padding: 3.2rem 0; }
  .kits-showcase { padding: 3.5rem 0; }
  .admission-visual { min-height: 260px; }
  .admission-visual img { min-height: 260px; }
  .adm-trust span + span { border-left: 0; padding-left: 0; }
  .site-footer .brand-logo { height: 64px; }
}
