:root {
  --primary: #2563eb;
  --primary-deep: #1d4ed8;
  --secondary: #14b8a6;
  --accent: #f59e0b;
  --ink: #0b244a;
  --chalk: #e6f0ff;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #dbeafe;
  --line-soft: #e2e8f0;
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 20px 48px rgba(37, 99, 235, 0.26);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  background:
    linear-gradient(rgba(237, 245, 255, .9), rgba(248, 250, 252, .93)),
    url("./assets/brochure-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

body::selection {
  background: rgba(37, 99, 235, .2);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

body::before {
  width: 360px;
  height: 360px;
  left: -110px;
  top: 180px;
  border-radius: 44% 56% 65% 35% / 41% 45% 55% 59%;
  background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, .6), rgba(245, 158, 11, .2));
}

body::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(37, 99, 235, .44), rgba(20, 184, 166, .2));
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(11, 36, 74, .95), rgba(29, 78, 216, .88));
  backdrop-filter: blur(12px) saturate(1.15);
  border-bottom: 1px solid rgba(148, 197, 255, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, .6);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .2);
  padding: 4px;
}

.logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0ea5e9, #1d4ed8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.logo-badge::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 6px;
  border-radius: 4px;
  background: #fbbf24;
  top: -4px;
  left: 15px;
}

.brand {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #fff;
}

.brand-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .78);
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  order: 3;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.nav a {
  font-weight: 650;
  color: #dbeafe;
  padding: 9px 12px;
  border-radius: 12px;
  transition: background-color .16s ease, color .16s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, .2);
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(191, 219, 254, .4);
}

main { padding: 34px 0 56px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 760;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 4px 10px;
}

h1, h2, h3 {
  margin: 0 0 10px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.72rem); }
h2 { font-size: clamp(1.24rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.03rem, 2.2vw, 1.18rem); }

p { margin: 0 0 10px; }
.muted { color: var(--muted); }
.small { font-size: .84rem; color: #64748b; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section { margin-top: 26px; }

.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.hero {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid #c7dcff;
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(14, 165, 233, .26), transparent 66%),
    radial-gradient(420px 220px at 100% 10%, rgba(20, 184, 166, .16), transparent 64%),
    linear-gradient(145deg, #ffffff 0%, #eef6ff 68%, #f1f5f9 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23bfdbfe' stroke-width='2' opacity='0.55'%3E%3Cpath d='M16 56h36l6 10h30l6-10h36v50H16z'/%3E%3Cpath d='M20 52l18-24 18 24'/%3E%3Ccircle cx='80' cy='116' r='12'/%3E%3Cpath d='M74 116h12M80 110v12'/%3E%3Cpath d='M120 24l8 20 20 8-20 8-8 20-8-20-20-8 20-8z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, auto, 260px 260px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(30, 64, 175, .12) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 94%, rgba(148,163,184,.14) 94% 95%, transparent 95% 100%);
  background-size: 14px 14px, 48px 100%;
  opacity: .3;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -28px;
  height: 82px;
  border-radius: 48% 52% 0 0 / 60% 60% 0 0;
  background: linear-gradient(180deg, rgba(134, 239, 172, .28), rgba(14, 116, 144, .2));
  z-index: -1;
}

.hero > * { position: relative; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  background: #dbeafe;
  color: #0b3f9e;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 650;
}

.school-showcase {
  display: grid;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.hero-mosi-card {
  grid-column: 1 / -1;
  position: relative;
  border: 1px solid #9cc0ff;
  border-radius: 20px;
  background:
    radial-gradient(120px 70px at 18% 14%, rgba(255,255,255,.65), transparent 76%),
    linear-gradient(165deg, #dbeafe 0%, #eff6ff 44%, #ccfbf1 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 200px;
}

.hero-mosi-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 12px 22px rgba(15, 23, 42, .22));
}

.mosi-inline-bubble {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 12px;
  border: 1px dashed #60a5fa;
  background: rgba(255, 255, 255, .9);
  color: #1e3a8a;
  font-size: .82rem;
  padding: 8px 10px;
}

.hero-poster-siza,
.hero-poster-modisa {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #b8d3ff;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  background: #fff;
}

.hero-poster-siza img,
.hero-poster-modisa img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .25s ease;
}

.hero-poster-siza:hover img,
.hero-poster-modisa:hover img {
  transform: scale(1.03);
}

.edu-ribbon {
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid #bfdbfe;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .8), transparent 50%),
    linear-gradient(140deg, #1e3a8a, #2563eb 55%, #0891b2);
  color: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.edu-ribbon-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
}

.edu-ribbon h3 {
  margin: 0;
  color: #fff;
}

.edu-ribbon p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
}

.icon-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.icon-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(219, 234, 254, .42);
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 700;
  color: #e2e8f0;
}

.mosi-panel,
.illustration-panel {
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #e0f2fe);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mosi-panel {
  padding: 14px;
}

.mosi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.mosi-chip {
  border-radius: 999px;
  background: #dbeafe;
  padding: 5px 10px;
  font-size: .76rem;
  color: #1e3a8a;
  font-weight: 700;
}

.mosi-photo {
  border-radius: 18px;
  min-height: 240px;
  background:
    radial-gradient(180px 90px at 20% 20%, rgba(255,255,255,.7), transparent 80%),
    linear-gradient(180deg, #dbeafe, #eff6ff 40%, #e0f2fe 100%);
  display: grid;
  place-items: center;
  padding: 12px;
}

.mosi-photo img {
  width: min(280px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(15, 23, 42, .18));
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wow-card {
  border-radius: 18px;
  border: 1px solid #bfdbfe;
  background:
    radial-gradient(220px 100px at 100% 0%, rgba(59, 130, 246, .2), transparent 68%),
    linear-gradient(165deg, #ffffff, #f0f9ff);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.wow-card h3 {
  margin: 0 0 8px;
  color: #1e3a8a;
}

.wow-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.app-shot {
  border-radius: 18px;
  border: 1px solid #c7dcff;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.app-shot::before {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 800;
  color: #1e3a8a;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #bfdbfe;
  z-index: 2;
}

.app-shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.illustration-panel {
  padding: 14px;
}

.school-scene {
  border-radius: 18px;
  min-height: 190px;
  background:
    radial-gradient(140px 70px at 15% 16%, rgba(255,255,255,.7), transparent 75%),
    radial-gradient(120px 60px at 80% 22%, rgba(255,255,255,.6), transparent 72%),
    linear-gradient(180deg, #60a5fa 0 44%, #bfdbfe 44% 55%, #86efac 55% 100%);
  position: relative;
  overflow: hidden;
}

.school-scene::before,
.school-scene::after {
  content: "";
  position: absolute;
  bottom: 0;
}

.school-scene::before {
  left: 10%;
  width: 80px;
  height: 90px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #1d4ed8, #1e3a8a);
  box-shadow: 110px 0 0 #2563eb, 220px 0 0 #1d4ed8;
}

.school-scene::after {
  right: 10px;
  width: 130px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .17);
}

.school-scene .book {
  position: absolute;
  bottom: 18px;
  width: 34px;
  height: 10px;
  border-radius: 5px;
  background: #f59e0b;
}

.school-scene .book.b2 { left: 22px; background: #14b8a6; }
.school-scene .book.b3 { left: 64px; background: #2563eb; }

.poster-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.poster {
  border: 1px solid #c7dcff;
  border-radius: 16px;
  background:
    radial-gradient(220px 90px at 100% 0%, rgba(59,130,246,.16), transparent 70%),
    linear-gradient(160deg, #fff, #f0f9ff);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.poster h4 {
  margin: 0 0 8px;
  color: #1e3a8a;
  font-size: .98rem;
}

.poster p {
  margin: 0;
  color: #475569;
  font-size: .88rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, .16);
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
  border-color: #bfdbfe;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -50px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .15), transparent 70%);
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: -20px;
  bottom: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .2), transparent 72%);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #1e40af);
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, .24);
  margin-bottom: 8px;
}

.value-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.value-check::before {
  content: "\2713";
  color: #047857;
  font-weight: 800;
}

ul, ol { margin: 0; padding-left: 18px; }
li { margin: 5px 0; }

.mosi-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px dashed #7dd3fc;
  background: linear-gradient(120deg, #eff6ff, #ecfeff);
  border-radius: var(--radius-md);
  padding: 12px;
  color: #1e3a8a;
  font-size: .95rem;
  box-shadow: var(--shadow-soft);
}

.mosi-bubble strong {
  color: #0f3a8c;
}

.mosi-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--secondary), #0f766e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(20, 184, 166, .32);
}

.strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.strip-item {
  border: 1px solid #dbeafe;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 620;
  color: #1e3a8a;
}

.gallery-card {
  border-radius: 18px;
  padding: 14px;
  border: 1px solid #bfdbfe;
  background: linear-gradient(155deg, #fff, #f0f9ff);
}

.gallery-card .visual {
  min-height: 170px;
  border-radius: 14px;
  border: 1px dashed #93c5fd;
  background:
    linear-gradient(180deg, #e0f2fe, #f8fafc 70%),
    repeating-linear-gradient(45deg, rgba(148,163,184,.08) 0 7px, rgba(255,255,255,.08) 7px 14px);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  color: #334155;
}

.brochure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.brochure-card {
  border-radius: 18px;
  border: 1px solid #bfdbfe;
  background:
    radial-gradient(180px 90px at 0% 0%, rgba(37,99,235,.16), transparent 72%),
    linear-gradient(165deg, #ffffff, #f0f9ff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brochure-card .head {
  padding: 14px 14px 10px;
}

.brochure-card .head h4 {
  margin: 0 0 6px;
  color: #1e3a8a;
}

.brochure-card .head p {
  margin: 0;
  color: #475569;
  font-size: .88rem;
}

.brochure-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-top: 1px solid #dbeafe;
}

.school-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.school-art {
  border-radius: 18px;
  min-height: 210px;
  border: 1px solid #bfdbfe;
  background:
    radial-gradient(200px 120px at 15% 20%, rgba(255,255,255,.62), transparent 72%),
    radial-gradient(150px 90px at 80% 24%, rgba(255,255,255,.52), transparent 72%),
    linear-gradient(180deg, #60a5fa 0 47%, #dbeafe 47% 58%, #86efac 58% 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.school-art:nth-child(2) {
  background:
    radial-gradient(200px 120px at 15% 20%, rgba(255,255,255,.62), transparent 72%),
    radial-gradient(150px 90px at 80% 24%, rgba(255,255,255,.52), transparent 72%),
    linear-gradient(180deg, #38bdf8 0 46%, #dbeafe 46% 58%, #bbf7d0 58% 100%);
}

.school-art:nth-child(3) {
  background:
    radial-gradient(200px 120px at 15% 20%, rgba(255,255,255,.62), transparent 72%),
    radial-gradient(150px 90px at 80% 24%, rgba(255,255,255,.52), transparent 72%),
    linear-gradient(180deg, #818cf8 0 46%, #e0e7ff 46% 58%, #86efac 58% 100%);
}

.school-art::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 110px;
  left: 12%;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #1d4ed8, #1e3a8a);
  box-shadow: 140px 0 0 #2563eb;
}

.school-art::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 90px;
  height: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .16);
}

.school-art .sticker {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(125, 211, 252, .9);
  color: #1d4ed8;
  font-weight: 750;
  padding: 5px 10px;
  font-size: .76rem;
}

.school-art .chip-row {
  position: absolute;
  right: 12px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.school-art .chip-row span {
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid #bfdbfe;
  color: #0f172a;
  font-size: .7rem;
  padding: 4px 8px;
  font-weight: 700;
}

.school-art .mascot-mini {
  position: absolute;
  width: 92px;
  right: 16px;
  bottom: 12px;
  filter: drop-shadow(0 8px 14px rgba(15,23,42,.2));
}

.edu-divider {
  margin-top: 18px;
  border-radius: 999px;
  height: 12px;
  background:
    radial-gradient(circle at 20% 50%, rgba(20, 184, 166, .45), transparent 22%),
    radial-gradient(circle at 60% 50%, rgba(37, 99, 235, .45), transparent 22%),
    radial-gradient(circle at 90% 50%, rgba(245, 158, 11, .42), transparent 22%),
    linear-gradient(90deg, rgba(148,163,184,.22), rgba(226,232,240,.52));
}

.chalk-card {
  border-radius: 16px;
  border: 1px solid rgba(134, 239, 172, .46);
  background:
    linear-gradient(145deg, rgba(11, 36, 74, .95), rgba(15, 118, 110, .94)),
    linear-gradient(0deg, rgba(255,255,255,.08), rgba(255,255,255,.08));
  color: #e2fef9;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.chalk-card h3 {
  color: #f8fafc;
}

.chalk-card .value-check::before {
  color: #86efac;
}

.cta-band {
  margin-top: 28px;
  background:
    radial-gradient(420px 240px at -5% 0%, rgba(255,255,255,.2), transparent 70%),
    linear-gradient(140deg, #1e3a8a, #2563eb 58%, #0891b2 100%);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-strong);
}

.mosaic-band {
  margin-top: 20px;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #bfdbfe;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(37,99,235,.08) 0 10px,
      rgba(20,184,166,.08) 10px 20px,
      rgba(245,158,11,.08) 20px 30px
    ),
    #ffffff;
}

.mosaic-band h3 {
  margin-bottom: 8px;
}

.policy h2,
.policy h3 { margin-top: 18px; }

.faq-item {
  padding: 12px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #fff;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: #60a5fa;
  outline: 3px solid rgba(59,130,246,.18);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.tier {
  border: 1px solid #bfdbfe;
  background: linear-gradient(150deg, #fff, #eff6ff);
}

.tier .price {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
}

.site-footer {
  border-top: 1px solid #dbeafe;
  padding: 24px 0 36px;
  color: #475569;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,246,255,.92));
  backdrop-filter: blur(6px);
}

.footer-grid {
  display: grid;
  gap: 8px;
  font-size: .92rem;
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.fade-up.delay-1 { animation-delay: .12s; }
.fade-up.delay-2 { animation-delay: .22s; }
.fade-up.delay-3 { animation-delay: .32s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 860px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .nav {
    width: auto;
    order: 0;
    overflow: visible;
  }

  .header-actions {
    width: auto;
  }

  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(3, 1fr); }

  .hero {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    padding: 34px;
  }

  .poster-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .school-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brochure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .edu-ribbon-inner {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }
}

@media (max-width: 620px) {
  body {
    background-attachment: scroll;
  }

  main {
    padding-top: 20px;
  }

  .section {
    margin-top: 18px;
  }

  .hero {
    padding: 18px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-mosi-card img {
    height: 200px;
  }

  .hero-poster-siza,
  .hero-poster-modisa {
    min-height: 200px;
  }

  .hero-poster-siza img,
  .hero-poster-modisa img {
    min-height: 200px;
  }

  .school-art {
    min-height: 190px;
  }

  .school-art::before {
    width: 96px;
    height: 84px;
    left: 9%;
    box-shadow: 104px 0 0 #2563eb;
  }

  .school-art .mascot-mini {
    width: 80px;
    right: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .home-rich-mobile {
    display: none !important;
  }

  .hero,
  .card,
  .cta-band,
  .mosi-panel,
  .illustration-panel {
    border-radius: 18px;
  }
}
