/* ==========================================================
   ISPTD — shared stylesheet for all mockup pages
   Mirrors docs/superpowers/specs/2026-04-24-isptd-wix-website-design.md
   ========================================================== */

:root {
  --primary:      #2E4A6B;
  --primary-dark: #1C2F47;
  --accent:       #C9A44C;
  --accent-soft:  #e1c685;
  --n1:           #F7F5F0;
  --n2:           #E6E2D9;
  --text:         #1A1A1A;
  --muted:        #5A6472;
  --white:        #ffffff;

  --serif: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1200px;
  --pad-section: 96px;
  --pad-section-mobile: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--n1);
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--pad-section) 0; }
@media (max-width: 768px) {
  .section { padding: var(--pad-section-mobile) 0; }
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--primary); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-weight: 700; font-size: 64px; }
h2 { font-weight: 700; font-size: 48px; }
h3 { font-weight: 600; font-size: 32px; }
h4 { font-weight: 600; font-size: 22px; }
@media (max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}

.body-lg { font-size: 20px; line-height: 1.6; color: var(--text); }
.body   { font-size: 16px; line-height: 1.7; color: var(--text); }
.muted  { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-family: var(--sans);
  font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-secondary { background: transparent; color: var(--primary); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-ghost { color: var(--accent); padding: 0; border: none; background: none; position: relative; font-weight: 600; }
.btn-ghost::after { content: '→'; margin-left: 8px; display: inline-block; transition: transform .2s ease; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ==========================================================
   HEADER — quick-links strip + main nav
   ========================================================== */
.quicklinks {
  background: var(--primary-dark); color: rgba(255,255,255,0.8);
  font-size: 12px; letter-spacing: 0.04em;
}
.quicklinks .wrap { display: flex; align-items: center; justify-content: space-between; height: 32px; }
.quicklinks a { margin-right: 20px; transition: color .2s; }
.quicklinks a:hover { color: var(--accent); }
.quicklinks .right { display: flex; gap: 20px; align-items: center; }
.quicklinks .right a:last-child { margin-right: 0; }

header.main {
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
}
header.main .wrap { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }

nav.main ul { display: flex; gap: 32px; list-style: none; align-items: center; }
nav.main a {
  font-weight: 500; font-size: 15px; color: var(--text);
  padding: 8px 0; position: relative; transition: color .2s;
}
nav.main a:hover { color: var(--primary); }
nav.main a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
nav.main a:hover::after { transform: scaleX(1); }
nav.main a.active { color: var(--primary); font-weight: 600; }
nav.main a.active::after { transform: scaleX(1); }

.mobile-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; }

@media (max-width: 1024px) {
  .quicklinks { display: none; }
  nav.main ul { display: none; }
  header.main .apply-btn { display: none; }
  .mobile-toggle { display: block; }
}

/* ==========================================================
   HERO (homepage full-height) + PAGE HERO (inner pages compact)
   ========================================================== */
.hero {
  position: relative; height: 100vh; min-height: 640px; max-height: 880px;
  overflow: hidden; color: var(--white); display: flex; align-items: center;
}
.hero video, .hero .fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,47,71,0.75), rgba(28,47,71,0.55) 60%, rgba(28,47,71,0.7));
  z-index: 1;
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: var(--white); max-width: 860px; margin-bottom: 24px; }
.hero .sub { font-size: 20px; max-width: 640px; color: rgba(255,255,255,0.9); margin-bottom: 40px; }
.hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50% { transform: translate(-50%,6px);} }

@media (max-width: 768px) {
  .hero { height: auto; min-height: 560px; padding: 120px 0 100px; }
  .hero .overlay { background: linear-gradient(135deg, rgba(28,47,71,0.82), rgba(28,47,71,0.7)); }
  .hero .sub { font-size: 17px; }
}

/* Page hero for inner pages — compact */
.page-hero {
  position: relative; padding: 140px 0 96px; color: var(--white);
  background: var(--primary-dark); overflow: hidden;
}
.page-hero.has-image { background: var(--primary-dark); }
.page-hero.has-image::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { color: var(--white); max-width: 820px; margin-bottom: 16px; font-size: 56px; }
.page-hero .sub { font-size: 19px; max-width: 620px; color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 72px; }
  .page-hero h1 { font-size: 36px; }
}

/* ==========================================================
   Positioning band (home H2)
   ========================================================== */
.positioning { background: var(--primary); color: var(--white); text-align: center; padding: 72px 0; }
.positioning blockquote {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: 40px; line-height: 1.35; max-width: 1040px; margin: 0 auto;
  letter-spacing: -0.005em;
}
.positioning blockquote::before, .positioning blockquote::after { content: '"'; color: var(--accent); margin: 0 4px; }
.positioning .rule { width: 72px; height: 2px; background: var(--accent); margin: 28px auto 0; border: none; }
@media (max-width: 768px) { .positioning blockquote { font-size: 24px; } }

/* ==========================================================
   Power Hook (home H3)
   ========================================================== */
.power { background: var(--n1); }
.power .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.power .questions { font-family: var(--serif); font-size: 40px; color: var(--primary); font-weight: 600; line-height: 1.25; }
.power .questions p + p { margin-top: 16px; }
.power .answer .body-lg { margin-bottom: 24px; }
@media (max-width: 860px) {
  .power .grid { grid-template-columns: 1fr; gap: 32px; }
  .power .questions { font-size: 28px; }
}

/* ==========================================================
   Pipeline / step-strip (ecosystem, certification, accreditation)
   ========================================================== */
.pipeline-section { background: var(--n2); text-align: center; }
.pipeline-section h2 { max-width: 760px; margin: 0 auto 64px; }
.pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative;
}
.pipeline.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pipeline::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: var(--accent); z-index: 0;
}
.node { position: relative; z-index: 1; background: var(--n2); padding: 0 12px; text-align: center; }
.node.on-white { background: var(--white); }
.circle {
  width: 80px; height: 80px; border-radius: 50%; background: var(--primary);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; font-weight: 700;
  margin: 0 auto 24px; box-shadow: 0 4px 18px rgba(28,47,71,0.2);
  border: 4px solid var(--n2);
}
.node.on-white .circle { border-color: var(--white); }
.node h4 { color: var(--primary); margin-bottom: 12px; font-size: 20px; }
.node p { color: var(--muted); font-size: 15px; }

@media (max-width: 768px) {
  .pipeline { grid-template-columns: 1fr !important; gap: 32px; }
  .pipeline::before { display: none; }
}

/* ==========================================================
   Problem-solve / icon-list block
   ========================================================== */
.problem { background: var(--white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col h2 { max-width: 460px; }
.icon-list { list-style: none; }
.icon-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 18px; color: var(--text);
}
.icon-list li:last-child { border-bottom: none; }
.icon-list .icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,164,76,0.15); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; margin-top: 2px;
}
.punch {
  margin-top: 48px; font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--primary);
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================
   Card grid (offer, benefits, outcomes)
   ========================================================== */
.head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards-5-3-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-5-3-2 > .card:nth-child(4) { grid-column-start: 1; margin-left: calc((100% + 24px) / 6); }

.card {
  background: var(--white); border-radius: 10px; padding: 32px;
  box-shadow: 0 4px 18px rgba(28,47,71,0.06); transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(0,0,0,0.03);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(28,47,71,0.12); }
.card .num { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 16px; letter-spacing: 0.06em; }
.card h4 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

@media (max-width: 960px) {
  .cards-3, .cards-4, .cards-5-3-2 { grid-template-columns: repeat(2, 1fr); }
  .cards-5-3-2 > .card:nth-child(4) { margin-left: 0; }
}
@media (max-width: 600px) {
  .cards-3, .cards-4, .cards-5-3-2 { grid-template-columns: 1fr; }
  .cards-5-3-2 > .card:nth-child(4) { margin-left: 0; }
}

/* Mission & Vision (home H7, reused on About) */
.mv { background: var(--primary-dark); color: var(--white); }
.mv .grid { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 48px; align-items: start; }
.mv .divider { background: var(--accent); height: 100%; width: 2px; min-height: 160px; }
.mv h3 {
  font-family: var(--sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.mv p { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--white); line-height: 1.45; }
@media (max-width: 860px) {
  .mv .grid { grid-template-columns: 1fr; gap: 32px; }
  .mv .divider { width: 48px; height: 2px; min-height: 2px; }
}

/* Why ISPTD / feature list */
.why { background: var(--n1); }
.why .head-center { margin-bottom: 48px; }
.why ul { list-style: none; max-width: 820px; margin: 0 auto; }
.why li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 19px;
}
.why li:last-child { border-bottom: none; }
.why .check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}

/* Impact / stats */
.impact { background: var(--n2); }
.impact .head-center { margin-bottom: 56px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 80px; }
.stats.six { grid-template-columns: repeat(6, 1fr); }
.stat { text-align: center; padding: 16px; }
.stat .num { font-family: var(--serif); font-size: 56px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat .label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
@media (max-width: 860px) {
  .stats, .stats.six { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat .num { font-size: 42px; }
}

.feature-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(28,47,71,0.08);
}
.feature-story img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.feature-story .copy { padding: 40px; }
.feature-story h3 { margin-bottom: 16px; }
.feature-story p { color: var(--text); margin-bottom: 20px; font-size: 17px; }
.feature-story.reverse { direction: rtl; }
.feature-story.reverse .copy, .feature-story.reverse img { direction: ltr; }
@media (max-width: 860px) {
  .feature-story, .feature-story.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-story img { min-height: 260px; }
}

/* Photo marquee */
.marquee { padding: 0; overflow: hidden; background: var(--primary-dark); }
.marquee-track { display: flex; gap: 12px; padding: 12px 0; animation: scroll 50s linear infinite; width: max-content; }
.marquee img { height: 280px; width: auto; border-radius: 4px; flex-shrink: 0; filter: saturate(0.9); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 768px) { .marquee img { height: 180px; } }

/* Closing CTA */
.closing {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center;
}
.closing h2 { color: var(--white); font-size: 56px; margin-bottom: 20px; line-height: 1.2; max-width: 820px; margin-left: auto; margin-right: auto; }
.closing h2 .line2 { display: block; }
.closing .sub { color: var(--accent); font-size: 17px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 40px; }
@media (max-width: 768px) { .closing h2 { font-size: 36px; } }

/* News teaser/list */
.news { background: var(--n1); }
.news .head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.news-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px rgba(28,47,71,0.06); transition: transform .2s; display: block; }
.news-card:hover { transform: translateY(-3px); }
.news-card .img { height: 200px; background-size: cover; background-position: center; }
.news-card .copy { padding: 24px; }
.news-card .meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.news-card h4 { font-size: 19px; margin-bottom: 10px; }
.news-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .news .cards-3 { grid-template-columns: 1fr; } }

/* Footer */
footer.site { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding-top: 72px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
footer.site h5 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
footer.site ul { list-style: none; }
footer.site li { padding: 6px 0; font-size: 14px; }
footer.site a { transition: color .2s; }
footer.site a:hover { color: var(--accent); }
footer .brandcol .wordmark {
  font-family: var(--serif); font-size: 44px; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
footer .brandcol .wordmark-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
footer .brandcol p { font-size: 14px; max-width: 300px; line-height: 1.6; color: rgba(255,255,255,0.75); }
footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 16px;
}
footer .bottom a { margin-right: 20px; }
footer .social a { margin-right: 16px; font-size: 18px; }
@media (max-width: 860px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .cols { grid-template-columns: 1fr; } }

/* Mockup banner */
.mockup-banner {
  position: fixed; bottom: 16px; right: 16px; z-index: 500;
  background: var(--accent); color: var(--primary-dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ==========================================================
   INNER-PAGE patterns
   ========================================================== */

/* Timeline (About) */
.timeline {
  position: relative; padding: 48px 0 24px;
}
.timeline::before {
  content: ''; position: absolute; top: 48px; left: 5%; right: 5%;
  height: 2px; background: var(--accent);
}
.timeline-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative;
}
.timeline .node-t {
  text-align: center; position: relative; padding: 0 8px;
}
.timeline .dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--primary);
  border: 4px solid var(--n1); margin: 0 auto 20px; position: relative; z-index: 2;
}
.timeline .year { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.timeline .label { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.4; }
@media (max-width: 860px) {
  .timeline-track { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .timeline .dot { display: none; }
}

/* Accordion (Programs FAQ, program tracks) */
.accordion { max-width: 960px; margin: 0 auto; }
.accordion-item {
  background: var(--white); border-radius: 10px;
  margin-bottom: 12px; box-shadow: 0 4px 12px rgba(28,47,71,0.05);
  border: 1px solid rgba(0,0,0,0.04); overflow: hidden;
}
.accordion-item summary {
  padding: 22px 28px; cursor: pointer;
  font-family: var(--serif); font-size: 20px; color: var(--primary); font-weight: 600;
  list-style: none; position: relative; padding-right: 60px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+'; position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 28px; font-weight: 300; transition: transform .2s;
}
.accordion-item[open] summary::after { content: '−'; }
.accordion-item .body-panel {
  padding: 0 28px 24px; color: var(--text); font-size: 16px; line-height: 1.7;
}
.accordion-item .body-panel p + p { margin-top: 12px; }
.accordion-item .body-panel .btn { margin-top: 16px; }

/* Tabs (News filter) */
.tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab {
  padding: 10px 22px; border-radius: 999px;
  background: var(--white); color: var(--muted);
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(0,0,0,0.08); cursor: pointer;
  transition: all .2s;
}
.tab:hover { color: var(--primary); border-color: var(--accent); }
.tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Form (Contact) */
.form-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.form { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 4px 18px rgba(28,47,71,0.06); }
.form h3 { margin-bottom: 24px; font-size: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px; font-family: var(--sans); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }
.radio-row, .check-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label, .check-row label {
  display: flex; align-items: center; gap: 6px;
  background: var(--n1); padding: 8px 14px; border-radius: 999px;
  font-size: 13px; color: var(--text); font-weight: 500;
  text-transform: none; letter-spacing: 0; margin: 0; cursor: pointer;
  border: 1px solid transparent;
}
.radio-row input, .check-row input { margin: 0; width: auto; accent-color: var(--accent); }
.radio-row label:has(input:checked),
.check-row label:has(input:checked) {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.consent { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.consent input { margin-top: 3px; width: auto; accent-color: var(--accent); }

.sidebar-contact {
  padding: 36px; background: var(--primary-dark); color: var(--white); border-radius: 10px;
}
.sidebar-contact h4 { color: var(--white); font-size: 20px; margin-bottom: 20px; }
.sidebar-contact .row { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
.sidebar-contact .row:last-child { border-bottom: none; }
.sidebar-contact .row strong { display: block; color: var(--accent); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.sidebar-contact a { color: var(--white); }
.sidebar-contact a:hover { color: var(--accent); }

.channels-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.channel-tile {
  background: var(--white); padding: 28px; border-radius: 10px; text-align: center;
  box-shadow: 0 4px 18px rgba(28,47,71,0.06); transition: transform .2s; display: block;
}
.channel-tile:hover { transform: translateY(-3px); }
.channel-tile .chname { font-family: var(--serif); font-size: 24px; color: var(--primary); margin-bottom: 6px; }
.channel-tile .chmeta { color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
  .form-grid { grid-template-columns: 1fr; }
  .channels-row { grid-template-columns: 1fr; }
}

/* Image gallery (Impact) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.gallery .tall { grid-row: span 2; }
@media (max-width: 768px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .tall { grid-row: span 1; } }

/* Spotlight cards */
.spotlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spotlight { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(28,47,71,0.05); }
.spotlight .ph { height: 240px; background-size: cover; background-position: center; }
.spotlight .copy { padding: 20px; }
.spotlight .name { font-family: var(--serif); font-size: 20px; color: var(--primary); font-weight: 600; }
.spotlight .achievement { font-size: 14px; color: var(--muted); margin-top: 4px; }
@media (max-width: 860px) { .spotlights { grid-template-columns: 1fr; } }

/* Benefit chips (Teachers) */
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.benefit {
  background: var(--white); padding: 28px 20px; border-radius: 10px; text-align: center;
  box-shadow: 0 4px 12px rgba(28,47,71,0.05);
  border-top: 3px solid var(--accent);
}
.benefit .icon-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,164,76,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
}
.benefit h4 { font-size: 16px; margin-bottom: 8px; }
.benefit p { font-size: 13px; color: var(--muted); }
@media (max-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* Testimonial block */
.testimonial {
  background: var(--white); border-radius: 10px; padding: 48px;
  box-shadow: 0 4px 18px rgba(28,47,71,0.06); max-width: 860px; margin: 0 auto;
  border-left: 4px solid var(--accent);
}
.testimonial blockquote {
  font-family: var(--serif); font-size: 24px; line-height: 1.5;
  color: var(--text); font-style: italic; margin-bottom: 24px;
}
.testimonial .attr { font-size: 14px; color: var(--muted); }
.testimonial .attr strong { color: var(--primary); display: block; font-size: 16px; font-weight: 600; }

/* Approved Centre block */
.centre-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--primary); color: var(--white); border-radius: 10px; overflow: hidden;
}
.centre-block img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.centre-block .copy { padding: 48px; }
.centre-block h3 { color: var(--white); margin-bottom: 16px; }
.centre-block p { margin-bottom: 20px; color: rgba(255,255,255,0.85); }
@media (max-width: 860px) { .centre-block { grid-template-columns: 1fr; } }

/* FAQ on Contact */
.faq-mini { max-width: 720px; margin: 0 auto; }

/* Press logos */
.press-row { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; justify-content: center; opacity: 0.6; filter: grayscale(1); }
.press-row .press { font-family: var(--serif); font-size: 18px; color: var(--muted); padding: 8px 16px; border: 1px dashed var(--muted); }

/* Newsletter band */
.newsletter-band {
  background: var(--primary); color: var(--white); padding: 56px 0; text-align: center;
}
.newsletter-band h3 { color: var(--white); margin-bottom: 20px; }
.newsletter-band .field-row { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.newsletter-band input[type=email] {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: none;
  font-family: var(--sans); font-size: 15px;
}
@media (max-width: 600px) { .newsletter-band .field-row { flex-direction: column; } }
