/* ============================================================
   SENPA Learning Club — Landing Page Styles
   KAYTECHiT Web Solutions
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --sky:        #3191CF;
  --sky-deep:   #5e93b8;
  --sky-soft:   #cfe4f2;
  --sky-mist:   #eef6fb;
  --amber:      #F5BA19;
  --amber-deep: #e09a28;
  --sage:       #8cba8c;
  --sage-deep:  #27B34B;
  --ink:        #2c3e50;
  --ink-soft:   #51606e;
  --cloud:      #fbfcfd;
  --white:      #ffffff;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 12px rgba(44, 62, 80, 0.06);
  --shadow:    0 10px 30px rgba(44, 62, 80, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 62, 80, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Nunito", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: min(1180px, 92vw); margin-inline: auto; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }

.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: var(--sky-soft);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.kicker--light { color: var(--white); background: rgba(255, 255, 255, 0.18); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title--light { color: var(--white); }

.section__lede {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section__lede--light { color: rgba(255, 255, 255, 0.9); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.btn--primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(127, 179, 213, 0.4);
}
.btn--primary:hover { background: var(--sky-deep); transform: translateY(-2px); }

.btn--accent {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px rgba(246, 176, 66, 0.4);
}
.btn--accent:hover { background: var(--amber-deep); transform: translateY(-2px); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(127, 179, 213, 0.15);
  transition: box-shadow 0.3s var(--ease);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.nav__brand { display: flex; align-items: center; }

.nav__logo--img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.6rem 1.3rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 4vw 1.5rem;
  background: var(--cloud);
  border-bottom: 1px solid rgba(127, 179, 213, 0.15);
}
.nav__mobile a {
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-sm);
}
.nav__mobile a:hover { background: var(--sky-mist); color: var(--ink); }
.nav__mobile .btn { margin-top: 0.5rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); }

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(246, 176, 66, 0.14), transparent 70%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(140, 186, 140, 0.16), transparent 70%),
    linear-gradient(180deg, var(--sky-mist), var(--cloud));
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--sky-deep);
  position: relative;
}

.hero__sub {
  margin-top: 1.4rem;
  max-width: 30rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__badge {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  padding: 0.7rem 1.2rem 0.7rem 0.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.hero__badge-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  background: rgba(140, 186, 140, 0.16);
  border-radius: 50%;
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__art-img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 18px 35px rgba(44, 62, 80, 0.14));
}

.hero__art-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(127, 179, 213, 0.4);
}
.hero__art-orbit--1 { inset: 4%; }
.hero__art-orbit--2 { inset: 16%; border-color: rgba(246, 176, 66, 0.35); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(127, 179, 213, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.value-card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--sky-soft);
  border-radius: 16px;
  margin-bottom: 1.2rem;
}
.value-card__icon--green { background: rgba(140, 186, 140, 0.2); }
.value-card__icon--amber { background: rgba(246, 176, 66, 0.18); }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   WHO WE SUPPORT (band)
   ============================================================ */
.support-band {
  background:
    radial-gradient(ellipse 40% 60% at 90% 100%, rgba(255,255,255,0.12), transparent 70%),
    linear-gradient(135deg, var(--sky), var(--sky-deep));
  border-radius: var(--radius-lg);
  width: min(1320px, 96vw);
  margin-inline: auto;
}

.learn-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.learn-style {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.learn-style:hover { transform: translateY(-6px); }

.learn-style__img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-style__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(44, 62, 80, 0.14));
}
.learn-style h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.learn-style p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   SUBJECTS
   ============================================================ */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.subject-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(127, 179, 213, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.subject-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.subject-card__img {
  width: 90px;
  height: 90px;
  margin-bottom: 1.1rem;
}
.subject-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(44, 62, 80, 0.13));
}
.subject-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}
.subject-card p { color: var(--ink-soft); font-size: 0.93rem; }

/* ============================================================
   STRUCTURED LEARNING APPROACH
   ============================================================ */
.approach { background: var(--sky-mist); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}

.approach-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.approach-step:hover { transform: translateY(-6px); }

.approach-step__num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.approach-step:nth-child(2) .approach-step__num { background: var(--sky); }
.approach-step:nth-child(3) .approach-step__num { background: var(--sage); }
.approach-step:nth-child(4) .approach-step__num { background: var(--sky-deep); }
.approach-step:nth-child(5) .approach-step__num { background: var(--amber-deep); }

.approach-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.approach-step p { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   SPECIAL NEEDS SUPPORT
   ============================================================ */
.sen__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.sen__art {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(140,186,140,0.18), transparent 65%),
    var(--sky-mist);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 2.5rem;
}
.sen__art img {
  width: 100%;
  filter: drop-shadow(0 14px 28px rgba(44, 62, 80, 0.12));
}

.sen__list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.sen__list li {
  display: flex;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.sen__tick {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}
.sen__list strong { display: block; font-size: 1rem; }
.sen__list span { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(127, 179, 213, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(127, 179, 213, 0.15);
}
.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
}
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption span span { color: var(--ink-soft); font-size: 0.84rem; }

.testimonials__note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ============================================================
   ENROLMENT / CTA
   ============================================================ */
.enrol {
  background:
    radial-gradient(ellipse 50% 60% at 10% 0%, rgba(246,176,66,0.16), transparent 70%),
    linear-gradient(135deg, var(--sage), var(--sage-deep));
}
.enrol__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.enrol__points { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.enrol__points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
}
.enrol__points span {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  font-size: 0.8rem;
}

.enrol__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}
.enrol-form__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field__opt { font-weight: 400; color: var(--ink-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--sky-soft);
  border-radius: var(--radius-sm);
  background: var(--cloud);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(127, 179, 213, 0.2);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa7b2; }

.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-color: #e07a7a; background: #fdf3f3; }

.field__error {
  display: block;
  color: #c0504d;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
  min-height: 1em;
}

.cf-turnstile { margin: 0.4rem 0 1rem; }

.enrol-form__submit { width: 100%; justify-content: center; margin-top: 0.4rem; }

.enrol-form__status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.2em;
}
.enrol-form__status--ok { color: var(--sage-deep); }
.enrol-form__status--err { color: #c0504d; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.78); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.footer__logo--img {
  height: 44px;
  width: auto;
  display: block;
  background: var(--white);
  border-radius: 10px;
  padding: 5px 12px;
}
.footer__brand p { font-size: 0.92rem; max-width: 22rem; }

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--amber); }

.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__social a:hover { background: var(--sky); color: #fff; transform: translateY(-3px); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: 1.5rem 0;
  font-size: 0.84rem;
}
.footer__credit { color: rgba(255,255,255,0.55); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger children within a grid */
.about__grid .reveal:nth-child(2),
.learn-styles .reveal:nth-child(2),
.subject-grid .reveal:nth-child(2),
.testimonial-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.about__grid .reveal:nth-child(3),
.learn-styles .reveal:nth-child(3),
.subject-grid .reveal:nth-child(3),
.testimonial-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.subject-grid .reveal:nth-child(4),
.approach-steps .reveal:nth-child(4) { transition-delay: 0.3s; }
.approach-steps .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ---------- Placeholder styling (removed when client art added) ---------- */
[data-placeholder] { position: relative; }
[data-placeholder]::after {
  content: attr(data-placeholder);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: rgba(255,255,255,0.75);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__visual { order: 1; max-width: 380px; margin: 0 auto; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .hero__badge { justify-content: center; }

  .about__grid,
  .learn-styles,
  .testimonial-grid { grid-template-columns: 1fr; }
  .subject-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }

  .sen__inner,
  .enrol__inner { grid-template-columns: 1fr; }
  .sen__visual { max-width: 360px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .subject-grid,
  .approach-steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__bar { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION  (important for SEN / autistic users)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}