@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/lato/lato-400.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/lato/lato-600.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/lato/lato-700.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/playfair-display/playfair-display-600.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/playfair-display/playfair-display-700.woff2") format("woff2");
}

:root {
  --navy-950: #0b1730;
  --navy-900: #10233f;
  --navy-800: #183153;
  --navy-700: #28466d;
  --ivory-50: #fbf8f1;
  --ivory-100: #f5efe3;
  --ivory-200: #e7dcc7;
  --gold-400: #c2a35f;
  --gold-500: #a88743;
  --slate-500: #66748a;
  --slate-700: #314158;
  --white: #ffffff;
  --line: rgba(16, 35, 63, 0.1);
  --shadow-soft: 0 24px 60px rgba(11, 23, 48, 0.08);
  --shadow-card: 0 16px 34px rgba(11, 23, 48, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;

  /* Global typography */
  --font-body-current: "Lato", "Helvetica Neue", sans-serif;
  --font-serif-fallback: Georgia, Cambria, "Times New Roman", serif;
  --font-serif-playfair: "Playfair Display", var(--font-serif-fallback);
  --font-serif-libre: var(--font-serif-playfair);
  --font-serif-cormorant: var(--font-serif-playfair);
  --font-serif-current: var(--font-serif-playfair);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body-current);
  color: var(--slate-700);
  background:
    radial-gradient(circle at top left, rgba(194, 163, 95, 0.18), transparent 28%),
    linear-gradient(180deg, #fdfaf4 0%, #f7f1e7 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
.button:focus-visible,
.wa-float:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(16, 35, 63, 0.18);
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--white);
  color: var(--navy-950);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.main-nav,
.hero-grid,
.trust-inner,
.two-column,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-actions,
.trust-points,
.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--gold-500);
}

.main-nav-shell {
  position: relative;
  z-index: 20;
  background: var(--white);
}

.main-nav {
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 0;
  gap: 12px;
  padding: 10px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
}

.brand img {
  width: clamp(88px, 8vw, 112px);
  height: clamp(88px, 8vw, 112px);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: var(--font-serif-current);
}

.brand-name {
  font-family: var(--font-serif-libre);
  color: var(--navy-950);
  font-size: clamp(1.42rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand-subline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  color: var(--gold-500);
  font-size: clamp(0.5rem, 0.8vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subline::before,
.brand-subline::after {
  content: "";
  display: block;
  height: 1px;
  min-width: 14px;
  flex: 1 1 auto;
  background: var(--gold-400);
  opacity: 0.72;
}

.brand-tag {
  color: var(--navy-900);
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.site-nav {
  display: block;
  width: 100%;
  background: linear-gradient(
    to bottom,
    var(--navy-950) 0,
    var(--navy-950) calc(100% - 6px),
    var(--gold-500) calc(100% - 6px),
    var(--gold-500) 100%
  );
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  gap: clamp(14px, 2vw, 26px);
  padding: 15px 12px 23px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

/* ── Nav dropdown ─────────────────────────── */
.nav-dropdown {
  position: relative;
  font-size: 0;
  line-height: 0;
}

.nav-dropdown-label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-label::after {
  content: "\25BE";
  font-size: 0.7em;
  line-height: 1;
  margin-left: 0;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  min-width: 170px;
  padding: 8px 0;
  z-index: 200;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nav-dropdown-panel a {
  display: block;
  flex: none;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: left;
  border: none;
  border-radius: 0;
  background: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown-label:focus + .nav-dropdown-panel,
.nav-dropdown-panel:hover {
  display: block;
}

/* --- Approved homepage header/menu system --- */

.vd-hdr-brand .main-nav {
  padding: 6px 0 4px;
}

.vd-hdr-brand .brand {
  gap: clamp(12px, 1.8vw, 18px);
}

.vd-hdr-brand .brand img {
  width: clamp(104px, 10.5vw, 138px);
  height: clamp(104px, 10.5vw, 138px);
}

.vd-hdr-brand .brand-lockup {
  gap: 3px;
}

.vd-hdr-brand .brand-name {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  letter-spacing: 0.18em;
}

.vd-hdr-brand .brand-subline {
  font-size: clamp(0.55rem, 0.95vw, 0.74rem);
  letter-spacing: 0.34em;
  gap: 8px;
}

.vd-hdr-brand .brand-tag {
  font-size: clamp(0.94rem, 1.25vw, 1.12rem);
}

.vd-nav-bar nav {
  background: linear-gradient(
    to bottom,
    var(--navy-950) 0,
    var(--navy-950) calc(100% - 6px),
    var(--gold-500) calc(100% - 6px),
    var(--gold-500) 100%
  );
}

.vd-nav-bar-inner {
  width: min(calc(100% - 40px), 880px);
  justify-content: space-between;
  gap: 0;
  padding: 16px 12px 23px;
}

.vd-nav-bar nav a {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

@media (max-width: 600px) {
  .vd-hdr-brand .main-nav {
    padding: 5px 0 2px;
  }

  .vd-hdr-brand .brand img {
    width: clamp(66px, 16vw, 82px);
    height: clamp(66px, 16vw, 82px);
  }

  .vd-hdr-brand .brand-name {
    font-size: clamp(1.14rem, 4.4vw, 1.36rem);
    letter-spacing: 0.12em;
  }

  .vd-hdr-brand .brand-subline {
    font-size: clamp(0.44rem, 1.6vw, 0.54rem);
    letter-spacing: 0.22em;
    gap: 5px;
  }

  .vd-hdr-brand .brand-tag {
    font-size: clamp(0.7rem, 2.5vw, 0.84rem);
  }

  .vd-nav-bar-inner {
    width: 100%;
    justify-content: space-between;
    padding: 12px 4px 20px;
  }

  .vd-nav-bar nav a {
    font-size: 0.66rem;
    letter-spacing: 0.03em;
  }
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.button-primary:hover {
  background: var(--navy-800);
}

.button-secondary {
  border-color: rgba(16, 35, 63, 0.2);
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy-900);
}

.button-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-whatsapp:hover {
  background: #1ebe5d;
}

.hero-section,
.section-shell {
  padding: 44px 0;
}

#programmes,
#system,
#new-to-uk,
#tutors,
#results,
#pricing {
  scroll-margin-top: 120px;
}

.hero-section {
  padding-top: 64px;
}

.hero-grid,
.two-column {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.info-card,
.single-feature-card,
.content-panel,
.statement-card,
.proof-card,
.review-card,
.proof-note-card,
.pricing-card,
.consultation-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.premium-soft-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 227, 0.7)),
    var(--ivory-50);
  border: 1px solid rgba(194, 163, 95, 0.26);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.04);
}

.card-premium {
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 227, 0.78)),
    var(--ivory-50);
  border: 1px solid rgba(194, 163, 95, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card-soft {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card-minimal {
  background: rgba(251, 248, 241, 0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.hero-copy,
.hero-panel,
.content-panel,
.pricing-card,
.consultation-card {
  padding: 42px;
}

.section-kicker,
.card-tag,
.panel-label,
.footer-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(194, 163, 95, 0.12);
  color: var(--gold-500);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--navy-950);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 11ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin-top: 16px;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
}

.hero-body,
.section-intro {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-copy .hero-body:last-of-type {
  max-width: 54ch;
  margin-bottom: 0;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(16, 35, 63, 0.96), rgba(24, 49, 83, 0.94)),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual-stack {
  position: relative;
  margin-bottom: 26px;
}

.hero-image-frame {
  margin: 0;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(12, 24, 45, 0.16), rgba(12, 24, 45, 0.42)),
    radial-gradient(circle at 18% 18%, rgba(194, 163, 95, 0.2), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(7, 15, 31, 0.22);
  overflow: hidden;
  position: relative;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 15, 31, 0.02) 0%, rgba(7, 15, 31, 0.18) 100%),
    linear-gradient(90deg, rgba(7, 15, 31, 0.08) 0%, rgba(7, 15, 31, 0) 42%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 24%;
}

.floating-proof-card {
  position: absolute;
  right: 20px;
  bottom: -24px;
  width: min(310px, calc(100% - 40px));
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 18px 36px rgba(11, 23, 48, 0.16);
}

.floating-proof-copy {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-panel h2,
.hero-panel strong,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.hero-panel-card {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-support {
  padding-top: 10px;
}

.hero-panel-support .detail-list {
  gap: 12px;
}

.hero-panel-support .detail-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.detail-list,
.bullet-list,
.footer-links {
  display: grid;
  gap: 14px;
}

.detail-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
}

.hero-metrics-compact .metric-card {
  padding: 16px;
}

.hero-metrics-compact {
  padding-top: 18px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong,
.proof-number {
  display: block;
  margin-bottom: 8px;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
}

.trust-strip {
  padding: 0 0 18px;
}

.trust-inner {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 26px 32px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.trust-lead {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.32rem;
}

.trust-points {
  justify-content: flex-end;
}

.trust-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.05);
  color: var(--navy-900);
  font-size: 0.94rem;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.centered-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.card-grid,
.statement-grid,
.proof-grid,
.principle-stack {
  display: grid;
  gap: 22px;
}

.card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.single-feature-card,
.statement-card,
.proof-card,
.review-card,
.proof-note-card,
.principle-card {
  padding: 28px;
}

.single-feature-card {
  margin-top: 22px;
}

.alt-shell .content-panel,
.alt-shell .statement-card,
.pricing-card {
  background: rgba(255, 251, 245, 0.82);
}

.principle-stack,
.proof-grid {
  grid-template-columns: repeat(2, 1fr);
}

.emphasis-panel {
  background:
    linear-gradient(180deg, rgba(194, 163, 95, 0.1), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.76);
}

.progress-dashboard-panel {
  overflow: hidden;
}

.dashboard-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(11, 23, 48, 0.05), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.dashboard-card-head,
.dashboard-overview,
.dashboard-list {
  display: grid;
  gap: 16px;
}

.dashboard-card-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 22px;
}

.dashboard-card-head span,
.dashboard-label {
  color: var(--gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-overview {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.dashboard-overview strong,
.dashboard-list strong {
  color: var(--navy-950);
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 63, 0.07);
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.06);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 600;
}

.bullet-list div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.bullet-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bullet-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.narrow-shell {
  max-width: 900px;
}

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

#parent-problem {
  padding-bottom: 36px;
}

#parent-problem .section-heading {
  max-width: 780px;
}

#parent-problem .narrow-shell {
  max-width: var(--max-width);
}

#parent-problem .section-intro {
  margin-left: auto;
  margin-right: auto;
}

#parent-problem .statement-grid {
  margin-top: 30px;
}

#parent-problem .statement-card,
.landing-page #programmes .info-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(194, 163, 95, 0.28);
  border-radius: var(--radius-md);
  box-shadow: none;
}

#parent-problem .statement-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(194, 163, 95, 0.42);
}

#parent-problem .statement-card h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.14rem;
  line-height: 1.22;
}

#parent-problem .statement-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.98rem;
  line-height: 1.58;
}

.programme-hero h1 {
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  max-width: 17ch;
}

.programme-hero .hero-grid,
.about-hero .hero-grid,
.team-hero .hero-grid,
.contact-hero .hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-hero .hero-panel-card {
  border-bottom: none;
  padding-bottom: 0;
}

.team-hero .hero-panel-card {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-hero .hero-actions {
  margin-top: 24px;
}

.programme-hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}

.programme-hero-top h1 {
  margin-bottom: 0;
}

.programme-hero-body {
  display: grid;
  gap: 16px;
  max-width: 62ch;
}

.programme-hero-body .hero-body {
  margin: 0;
}

.programme-hero-bottom {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.programme-hero .hero-actions {
  margin-top: 0;
}

.programme-hero-support {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.94rem;
  line-height: 1.55;
}

.programme-hero .hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.programme-hero .hero-panel-card {
  padding-bottom: 18px;
}

.programme-hero .hero-panel h2 {
  max-width: 12ch;
}

.programme-model-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 36ch;
}

.programme-model-route {
  position: relative;
  display: grid;
  align-self: center;
  width: min(100%, 410px);
  gap: 30px;
  margin: auto 0;
  padding: 8px 0;
}

.programme-model-route::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(194, 163, 95, 0.52);
}

.programme-model-step {
  position: relative;
  display: grid;
  gap: 7px;
  padding-left: 44px;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
}

.programme-model-step::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid rgba(194, 163, 95, 0.78);
  box-shadow: 0 0 0 4px rgba(16, 35, 63, 0.9);
}

.programme-model-step strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  transition: color 0.16s ease;
}

.programme-model-step span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.45;
}

.programme-model-step:hover strong,
.programme-model-step:focus-visible strong {
  color: var(--gold-400);
}

.programme-model-step:hover::before,
.programme-model-step:focus-visible::before {
  border-color: var(--gold-400);
  background: rgba(194, 163, 95, 0.14);
}

.programme-model-step:focus-visible {
  border-radius: 12px;
  outline: 3px solid var(--gold-400);
  outline-offset: 6px;
}

.programme-model-link {
  align-self: center;
  width: min(100%, 410px);
  color: var(--gold-400);
  font-weight: 700;
  text-decoration: none;
}

.programme-model-link:hover,
.programme-model-link:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .programme-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .programme-hero .hero-copy {
    gap: 26px;
  }

  .programme-model-route {
    width: 100%;
    gap: 22px;
    margin: 8px 0 0;
  }

  .programme-model-link {
    width: 100%;
  }
}

.about-hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  max-width: 14ch;
}

.results-hero h1 {
  max-width: 10ch;
}

.team-hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  max-width: 14ch;
}

.legal-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.legal-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  max-width: 21ch;
}

.legal-panel {
  align-self: start;
}

.legal-shell {
  padding-top: 8px;
  padding-bottom: 76px;
}

.legal-wrap {
  max-width: 920px;
}

.legal-card {
  padding: 42px;
}

.legal-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-top: 34px;
  margin-bottom: 14px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card a {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-color: rgba(40, 70, 109, 0.28);
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--navy-900);
  text-decoration-color: rgba(16, 35, 63, 0.5);
}

.programme-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.review-highlight-grid,
.system-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.results-review-grid .review-card:first-child {
  grid-column: 1 / -1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card,
.about-side-card,
.founder-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.about-values-shell {
  padding-top: 52px;
  padding-bottom: 52px;
}

.about-values-shell .section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.about-values-shell .section-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.about-values-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 30px 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 246, 236, 0.9)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(194, 163, 95, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 26px rgba(11, 23, 48, 0.048);
  text-align: center;
}

.about-values-card .card-tag {
  justify-self: center;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: 999px;
  background: rgba(194, 163, 95, 0.08);
  color: var(--gold-600);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-values-statement {
  margin: 0;
  font-family: var(--font-serif-current);
  font-size: clamp(1.24rem, 1.95vw, 1.72rem);
  line-height: 1.34;
  color: var(--navy-900);
}

.about-framework-section .section-heading {
  max-width: 860px;
}

.about-framework-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.about-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-framework-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-framework-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.about-framework-card > p:not(.card-tag) {
  margin: 0;
  color: var(--slate-700);
}

.about-framework-points,
.about-engine-steps {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.about-framework-points section,
.about-engine-steps section {
  padding: 18px;
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 251, 245, 0.78);
}

.about-framework-points h4,
.about-engine-steps h4 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.2;
}

.about-framework-points p,
.about-engine-steps p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-engine-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-engine-steps span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-system-note {
  max-width: 880px;
  margin: 24px auto 0;
}

.about-system-note h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.team-card h3 {
  margin-top: 18px;
}

.team-profile-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.team-profile-card h3,
.team-profile-card p {
  margin: 0;
}

.team-portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(194, 163, 95, 0.24), transparent 42%),
    linear-gradient(160deg, rgba(16, 35, 63, 0.94), rgba(24, 49, 83, 0.88));
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-portrait span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-serif-current);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.team-qualification {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.supporting-link-row {
  margin-top: 4px;
}

.supporting-link {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(40, 70, 109, 0.3);
  text-underline-offset: 3px;
}

.supporting-link:hover {
  color: var(--navy-900);
  text-decoration-color: rgba(16, 35, 63, 0.55);
}

.compact-list {
  margin-top: 0;
}

/* ── New-to-UK ICP section ──────────────────────────────── */
.icp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.icp-block {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icp-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.icp-block h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--navy-950);
}

.icp-block p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--navy-900);
  line-height: 1.6;
}

.icp-subheading {
  font-weight: 600;
  color: var(--navy-950);
  margin-top: 4px;
}

.icp-close {
  text-align: center;
  color: var(--navy-700, #4a5568);
  font-size: 0.97rem;
  margin-top: 36px;
  margin-bottom: 0;
}

.icp-cta {
  text-align: center;
  margin-top: 28px;
}

.section-jump-shell {
  padding-top: 20px;
  padding-bottom: 8px;
}

.section-jump-wrap {
  display: grid;
  gap: 14px;
}

.section-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  color: var(--navy-900);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.section-jump-nav a:hover,
.section-jump-nav a:focus-visible {
  background: rgba(255, 251, 245, 0.96);
  border-color: rgba(194, 163, 95, 0.3);
  color: var(--navy-950);
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .icp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Annual fee cards ───────────────────────────────────── */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.fee-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fee-tier {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.06);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.fee-price {
  font-family: var(--font-serif-current);
  font-size: 2.4rem;
  color: var(--navy-950);
  line-height: 1.1;
  margin: 8px 0 0;
}

.fee-note {
  font-size: 0.9rem;
  color: var(--navy-700, #4a5568);
  margin: 0;
}

.fee-per {
  font-size: 0.88rem;
  color: var(--navy-700, #4a5568);
  margin: 0;
}

/* ── Inclusions block ───────────────────────────────────── */
.inclusions-block {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px 40px;
}

.inclusions-block h3 {
  margin: 0 0 24px;
  font-size: 1.15rem;
  color: var(--navy-950);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inclusions-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--navy-900);
  line-height: 1.5;
}

.inclusions-grid li::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 680px) {
  .fee-grid,
  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .inclusions-block {
    padding: 24px 20px;
  }
}

.programme-stage-nav-section {
  padding-top: 52px;
  padding-bottom: 52px;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.72), var(--ivory-100));
}

.programme-stage-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.programme-stage-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(194, 163, 95, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 23, 48, 0.035);
}

.programme-stage-links a:hover,
.programme-stage-links a:focus-visible {
  border-color: rgba(194, 163, 95, 0.54);
  color: var(--navy-950);
}

.programme-stage-section {
  padding-top: 58px;
  padding-bottom: 62px;
  scroll-margin-top: 120px;
}

#ks3-programmes,
#year-11,
#diagnostic-bridge {
  background: var(--ivory-100);
}

#gcse-prep {
  background:
    linear-gradient(180deg, var(--ivory-50), rgba(255, 255, 255, 0.42));
}

#a-level-maths {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(245, 239, 227, 0.66));
}

.programme-proof-strip-section {
  padding-top: 22px;
  padding-bottom: 34px;
  background: var(--ivory-100);
}

.programme-format-note-section {
  padding: 0 0 22px;
  background: var(--ivory-100);
}

.programme-format-note {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(194, 163, 95, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 241, 0.72)),
    var(--ivory-50);
  box-shadow: 0 16px 34px rgba(11, 23, 48, 0.045);
}

.programme-format-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(194, 163, 95, 0.22);
  border-radius: 999px;
  background: rgba(194, 163, 95, 0.08);
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.programme-format-content {
  display: grid;
  gap: 18px;
}

.programme-format-content h3 {
  max-width: 21ch;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.14;
}

.programme-format-points {
  display: grid;
  gap: 12px;
}

.programme-format-points p {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(16, 35, 63, 0.1);
  color: var(--navy-900);
  font-size: 0.98rem;
  line-height: 1.58;
}

.programme-format-points strong {
  color: var(--navy-950);
}

.programme-proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(194, 163, 95, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 248, 241, 0.78)),
    var(--ivory-50);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.04);
}

.programme-proof-copy h2 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.programme-proof-stat {
  margin: 0;
  color: var(--navy-700);
  font-weight: 700;
}

.programme-proof-review {
  display: grid;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(194, 163, 95, 0.24);
}

.programme-proof-review .google-stars {
  color: var(--gold-400);
  font-size: 1.08rem;
  letter-spacing: 2.4px;
}

.programme-proof-review .review-quote {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-serif-current);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  font-style: normal;
  line-height: 1.46;
}

.programme-proof-review a {
  justify-self: start;
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(40, 70, 109, 0.28);
  text-underline-offset: 4px;
}

.programme-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.programme-stage-copy,
.programme-fee-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 227, 0.7)),
    var(--ivory-50);
  border: 1px solid rgba(194, 163, 95, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.04);
  padding: 34px;
}

.programme-stage-copy h2,
.programme-fee-panel h3 {
  color: var(--navy-950);
}

.programme-stage-copy p {
  color: var(--navy-900);
  line-height: 1.72;
}

.programme-stage-copy p:last-child {
  margin-bottom: 0;
}

.programme-pathway-list {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.programme-pathway-list h3,
.programme-pathway-list h4 {
  margin-bottom: 10px;
  color: var(--navy-950);
}

.programme-pathway-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--navy-900);
  line-height: 1.55;
}

.programme-pathway-list-detailed {
  display: grid;
  gap: 16px;
}

.programme-pathway-list-detailed > div {
  padding: 16px 18px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(245, 239, 227, 0.52);
}

.programme-pathway-list-detailed p {
  margin: 0;
}

.programme-parent-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(194, 163, 95, 0.1);
  border: 1px solid rgba(194, 163, 95, 0.24);
}

.programme-fee-panel {
  position: sticky;
  top: 112px;
}

.programme-fee-panel h3 {
  margin-bottom: 18px;
}

.programme-fee-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.programme-fee-list div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(245, 239, 227, 0.56);
}

.programme-fee-list dt,
.programme-fee-list dd {
  margin: 0;
}

.programme-fee-list dt {
  color: var(--navy-700);
  font-size: 0.9rem;
  line-height: 1.35;
}

.programme-fee-list dd {
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.25rem;
  line-height: 1.2;
}

.programme-bridge-section .content-panel p {
  color: var(--navy-900);
  line-height: 1.72;
}

.programme-inclusions-section {
  scroll-margin-top: 120px;
  padding-top: 68px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, var(--ivory-50), var(--ivory-100));
}

.programme-bridge-section .content-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 241, 0.86));
  border-color: rgba(194, 163, 95, 0.3);
  box-shadow: none;
}

#programmes-cta {
  padding-top: 66px;
  background:
    linear-gradient(180deg, var(--ivory-100), var(--ivory-50));
}

.programme-inclusions-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.programme-inclusion-card {
  padding: 24px 22px;
  border: 1px solid rgba(194, 163, 95, 0.26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 227, 0.7)),
    var(--ivory-50);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.04);
}

.programme-inclusion-label {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programme-inclusion-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.16rem;
}

.programme-inclusion-card p:last-child {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.58;
}

.programme-inclusions-support {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--navy-700);
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: center;
}

.programme-faq-section {
  scroll-margin-top: 120px;
  padding-top: 66px;
  padding-bottom: 68px;
  background:
    linear-gradient(180deg, var(--ivory-100), var(--ivory-50));
}

.programme-faq-section .section-heading {
  max-width: 760px;
}

.programme-faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 34px auto 0;
}

.programme-faq-item {
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 248, 241, 0.78)),
    var(--ivory-50);
  box-shadow: 0 10px 24px rgba(11, 23, 48, 0.035);
  overflow: hidden;
}

.programme-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
}

.programme-faq-item summary::-webkit-details-marker {
  display: none;
}

.programme-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold-500);
  font-family: var(--font-body-current);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.programme-faq-item[open] summary::after {
  content: "-";
}

.programme-faq-item summary:focus-visible {
  outline: 2px solid rgba(194, 163, 95, 0.45);
  outline-offset: -6px;
}

.programme-faq-answer {
  padding: 0 24px 22px;
  color: var(--navy-900);
  line-height: 1.68;
}

.programme-faq-answer p {
  margin: 0;
}

.programme-faq-answer p + p {
  margin-top: 12px;
}

@media (max-width: 860px) {
  .programme-stage-links,
  .programme-stage-grid {
    grid-template-columns: 1fr;
  }

  .programme-inclusions-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programme-stage-copy,
  .programme-fee-panel {
    padding: 26px 22px;
  }

  .programme-fee-panel {
    position: static;
  }

  .programme-format-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .programme-format-content h3 {
    max-width: 18ch;
  }

  .programme-proof-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  .programme-proof-review {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(194, 163, 95, 0.24);
  }

  .programme-faq-section {
    padding-top: 52px;
    padding-bottom: 54px;
  }
}

@media (max-width: 560px) {
  .programme-inclusions-list {
    grid-template-columns: 1fr;
  }

  .programme-faq-item summary {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .programme-faq-answer {
    padding: 0 20px 20px;
  }
}

.best-for,
.pricing-follow-on {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.statement-card p,
.pricing-card p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--navy-900);
}

.proof-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(194, 163, 95, 0.08)),
    rgba(255, 255, 255, 0.76);
}

.proof-grid {
  align-content: start;
}

.homepage-proof-panel {
  display: grid;
  align-content: start;
  gap: 22px;
}

.homepage-review-grid {
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
}

.proof-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.compact-proof-summary {
  margin-top: 0;
}

.proof-summary div {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
}

.proof-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.review-card,
.proof-note-card {
  min-height: 220px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-review-card {
  background: rgba(255, 255, 255, 0.9);
}

.homepage-proof-note {
  min-height: 0;
}

.homepage-review-grid .review-card,
.homepage-review-grid .proof-note-card {
  min-height: 0;
}

.review-label {
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-quote {
  margin: 0 0 20px;
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.24rem;
  line-height: 1.45;
}

.review-meta {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.proof-note-card {
  background: rgba(255, 251, 245, 0.9);
}

.system-proof-copy {
  margin: 0;
  color: var(--navy-900);
}

.proof-note-list {
  margin: 0;
  padding-left: 18px;
  color: var(--navy-900);
}

.proof-number {
  color: var(--gold-500);
  font-family: var(--font-serif-current);
  font-size: 1.45rem;
}

.pricing-shell {
  max-width: 760px;
}

.contact-hero h1 {
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  max-width: 17ch;
}

.contact-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-summary-note {
  margin: 16px 4px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.contact-number {
  white-space: nowrap;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.contact-method-card {
  display: grid;
  gap: 14px;
}

.contact-method-card h3 a {
  color: var(--navy-950);
}

.contact-method-card h3 a:hover {
  color: var(--gold-500);
}

.contact-form-card {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field span {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.96rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-950);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(168, 135, 67, 0.65);
  box-shadow: 0 0 0 4px rgba(194, 163, 95, 0.12);
  background: var(--white);
}

.form-field-full {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy-900);
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy-900);
}

.form-note {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.94rem;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  font-size: 0.95rem;
}

.form-status[data-state="sending"] {
  background: rgba(16, 35, 63, 0.06);
  color: var(--navy-900);
}

.form-status[data-state="success"] {
  background: rgba(194, 163, 95, 0.08);
  border-color: rgba(16, 35, 63, 0.08);
  color: var(--navy-900);
}

.form-status[data-state="error"] {
  background: rgba(217, 180, 180, 0.24);
  border-color: rgba(145, 59, 59, 0.2);
  color: #7a2f2f;
}

.botcheck-field {
  display: none !important;
}

.contact-side-card .detail-list,
.contact-form-card .detail-list {
  margin-top: 0;
}

.consultation-shell {
  padding-bottom: 76px;
}

.consultation-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.97), rgba(29, 57, 90, 0.95)),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.88);
}

.consultation-card h2 {
  color: var(--white);
}

.site-footer {
  padding: 52px 0 56px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.85fr 0.95fr;
  align-items: start;
}

.footer-brand h2 {
  max-width: 12ch;
}

.footer-links a,
.legal-block p {
  font-size: 0.96rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-block p {
  margin: 0 0 10px;
}

@media (max-width: 1120px) {
  .card-grid-four,
  .programme-section-grid,
  .results-review-grid,
  .review-highlight-grid,
  .system-proof-grid,
  .dashboard-overview,
  .contact-method-grid,
  .contact-form-grid,
  .team-grid,
  .statement-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-column,
  .consultation-card,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .programme-hero .hero-grid,
  .about-hero .hero-grid,
  .team-hero .hero-grid,
  .contact-hero .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-points {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .card-grid-four,
  .programme-section-grid,
  .results-review-grid,
  .review-highlight-grid,
  .system-proof-grid,
  .dashboard-overview,
  .contact-method-grid,
  .contact-form-grid,
  .team-grid,
  .principle-stack,
  .proof-grid,
  .proof-summary,
  .statement-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 6px 0 0;
  }

  .brand {
    justify-self: center;
    max-width: 100%;
  }

  .brand img {
    width: clamp(62px, 15vw, 78px);
    height: clamp(62px, 15vw, 78px);
  }

  .brand-name {
    font-size: clamp(1.1rem, 4.2vw, 1.32rem);
    letter-spacing: 0.115em;
  }

  .brand-subline {
    gap: 5px;
    font-size: clamp(0.42rem, 1.55vw, 0.52rem);
    letter-spacing: 0.2em;
  }

  .brand-tag {
    font-size: clamp(0.68rem, 2.45vw, 0.82rem);
    white-space: normal;
  }

  .site-nav-inner {
    display: flex;
    grid-column: 1 / -1;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 0;
    overflow: hidden;
    padding: 10px 4px 19px;
  }

  .site-nav a {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.64rem;
    letter-spacing: 0.035em;
    text-align: center;
  }

  .nav-dropdown {
    flex: 1 1 0;
    min-width: 0;
  }

  .nav-dropdown-label {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .hero-panel,
  .hero-copy,
  .content-panel,
  .legal-card,
  .pricing-card,
  .consultation-card {
    padding: 32px;
  }

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

  .floating-proof-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .hero-image,
  .hero-image-frame {
    min-height: 300px;
  }

  .dashboard-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-actions,
  .consultation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-jump-nav a {
    width: 100%;
    justify-content: center;
  }

  .hero-image,
  .hero-image-frame {
    min-height: 260px;
  }

  .brand {
    gap: 6px;
  }

  .main-nav {
    min-height: 0;
    padding-top: 5px;
  }

  .brand img {
    width: clamp(58px, 17vw, 68px);
    height: clamp(58px, 17vw, 68px);
  }

  .brand-name {
    font-size: clamp(1.04rem, 4.6vw, 1.2rem);
    letter-spacing: 0.1em;
  }

  .brand-subline {
    gap: 4px;
    font-size: 0.43rem;
    letter-spacing: 0.15em;
  }

  .brand-subline::before,
  .brand-subline::after {
    min-width: 10px;
  }

  .brand-tag {
    font-size: clamp(0.64rem, 2.7vw, 0.76rem);
  }

  .site-nav-inner {
    flex-wrap: wrap;
    width: min(calc(100% - 24px), var(--max-width));
    padding: 10px 3px 19px;
    row-gap: 6px;
    overflow: visible;
  }

  .site-nav a {
    flex: 0 0 33.333%;
    font-size: 0.6rem;
    letter-spacing: 0.035em;
    text-align: center;
  }

  .nav-dropdown {
    flex: 0 0 33.333%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.85rem);
  }

  .about-hero h1,
  .team-hero h1 {
    font-size: clamp(2rem, 7.6vw, 2.75rem);
    max-width: 15ch;
  }

  .programme-hero h1,
  .contact-hero h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.55rem);
    max-width: 18ch;
  }

  .legal-hero h1 {
    font-size: clamp(1.65rem, 6.4vw, 2.2rem);
    max-width: 22ch;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-section,
  .section-shell,
  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .single-feature-card,
  .content-panel,
  .statement-card,
  .proof-card,
  .team-card,
  .about-side-card,
  .founder-card,
  .legal-card,
  .pricing-card,
  .consultation-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* --- One-line mobile nav for wider phones (>413px) --- */

@media (max-width: 560px) and (min-width: 414px) {
  .site-nav-inner {
    flex-wrap: nowrap;
    gap: 2px;
  }

  .site-nav a {
    flex: 1 1 0;
    min-width: 0;
    letter-spacing: 0.025em;
  }

  .nav-dropdown {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ── Mobile 3-column nav grid (≤430px) ──────────────────── */
@media (max-width: 430px) {
  .site-nav-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6px;
    column-gap: 0;
    align-items: center;
    justify-items: center;
    overflow: visible;
  }

  .site-nav-inner > a {
    flex: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .site-nav-inner > .nav-dropdown {
    flex: initial;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-dropdown-label {
    display: flex;
    justify-content: center;
  }
}

/* ── Floating WhatsApp button ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
  }
}

/* ── "Or WhatsApp Jothi" inline text link ───────────────── */
.cta-wa-link {
  font-size: 0.9rem;
  color: #25d366;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}

.cta-wa-link:hover {
  text-decoration: underline;
}

/* ── Framework Diagrams (Trifecta + 4T Engine) ───────────── */
.framework-diagrams {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.framework-block {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.framework-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-950);
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 0.01em;
}

.venn-svg,
.engine-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.framework-captions {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  width: 100%;
  max-width: 420px;
}

.framework-captions li {
  font-size: 0.8rem;
  color: var(--slate-700);
  padding: 7px 0;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.framework-captions strong {
  color: var(--navy-950);
}

@media (max-width: 560px) {
  .framework-diagrams {
    flex-direction: column;
    align-items: center;
  }
  .framework-block {
    width: 100%;
  }
}

/* ── Gateway pages (students.html / tutors.html) ─────────── */
.gateway-hero {
  text-align: center;
}

.gateway-intro-panel {
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 36px;
}

.gateway-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy-950);
  margin: 8px 0 14px;
  max-width: none;
  text-align: center;
}

.gateway-intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gateway-support-line {
  margin: 14px 0 0;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.95rem;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gateway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--navy-950);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gateway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(194, 163, 95, 0.3);
}

.gateway-card-inactive {
  background: rgba(255, 255, 255, 0.72);
  border-style: dashed;
  box-shadow: none;
}

.gateway-card-inactive:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}

.gateway-card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold-400);
  font-size: 1.15rem;
  line-height: 1;
}

.gateway-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-950);
  margin: 0;
  padding-right: 28px;
  line-height: 1.35;
}

.gateway-note {
  font-size: 0.82rem;
  color: var(--slate-500);
  margin: 12px 0 0;
  line-height: 1.55;
}

.gateway-card-help {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .gateway-intro-panel {
    padding: 0 24px;
  }

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

/* ── Live Lesson Supervision section ─────────────────────── */
.supervision-image-frame {
  max-width: 760px;
  margin: 32px auto 0;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(11, 23, 48, 0.08);
  overflow: hidden;
}

.supervision-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.supervision-closing {
  font-style: italic;
  color: var(--slate-500);
  text-align: center;
  margin: 32px auto 0;
  max-width: 540px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.supervision-cta {
  text-align: center;
  margin-top: 32px;
}

/* ── Results page rebuild ─────────────────────────────────── */
.results-page-hero { padding-top: 64px; }
.results-page-hero h1 { max-width: none; font-size: clamp(2.2rem, 4vw, 3.6rem); text-align: center; }
.results-page #gcse { background: transparent; }
.results-page #messages {
  background: linear-gradient(180deg, rgba(16,35,63,0.96), rgba(24,49,83,0.92));
  border-top: 1px solid rgba(194,163,95,0.14);
  border-bottom: 1px solid rgba(194,163,95,0.14);
}
.results-page #messages .section-kicker { color: var(--gold-400); }
.results-page #messages h2,
.results-page #messages .section-intro,
.results-page #messages .section-outro { color: var(--ivory-100); }
.results-page #messages .section-outro:last-of-type { color: rgba(255,248,238,0.78); }
.results-page #messages .results-message-card .message-bubble-attribution { color: var(--slate-500); }
.results-page #improvement,
.results-page #alevel,
.results-page #consultation {
  background: var(--white);
  border-top: 1px solid rgba(16,35,63,0.05);
  border-bottom: 1px solid rgba(16,35,63,0.05);
}
.results-page #ukmt,
.results-page #reviews {
  background: var(--ivory-100);
  border-top: 1px solid rgba(16,35,63,0.04);
  border-bottom: 1px solid rgba(16,35,63,0.04);
}
.results-proof-kicker-block { margin-bottom: 0; }
.results-proof-kicker-block .section-kicker { margin-bottom: 0; }
.results-proof-carousel-wrap { margin-top: 16px; }
.results-proof-summary { margin-top: 36px; }
.results-page .section-heading.centered-heading {
  align-items: center;
  text-align: center;
}
.results-page .section-heading.centered-heading .section-intro,
.results-page #improvement > .wrap > .section-intro,
.results-page #alevel > .wrap > .section-intro {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-outro { font-style: italic; color: var(--slate-500); text-align: center; font-size: 0.9rem; line-height: 1.6; margin: 24px auto 0; max-width: 620px; }
.results-proof-support { text-align: center; color: var(--slate-500); font-size: 0.82rem; margin-top: 14px; letter-spacing: 0.02em; }
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.stat-band-card { background: rgba(255,255,255,0.76); border: 1px solid rgba(16,35,63,0.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 36px 28px; text-align: center; }
.stat-band-number { display: block; font-family: var(--font-serif-current); font-size: clamp(2.8rem, 5vw, 4rem); color: var(--navy-950); margin-bottom: 12px; line-height: 1; }
.stat-band-caption { color: var(--slate-700); font-size: 0.9rem; line-height: 1.55; margin: 0; }
.stat-band-trust { text-align: center; color: var(--slate-500); font-size: 0.82rem; margin-top: 22px; letter-spacing: 0.02em; }
.cohort-card { background: rgba(255,255,255,0.76); border: 1px solid rgba(16,35,63,0.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 32px 28px; }
.cohort-number { display: block; font-family: var(--font-serif-current); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--navy-950); line-height: 1; margin-bottom: 10px; }
.cohort-heading { font-size: 1rem; font-weight: 600; color: var(--navy-900); margin: 0 0 10px; }
.cohort-caption { font-style: italic; font-size: 0.82rem; color: var(--slate-500); margin: 0; line-height: 1.5; }
.message-feed { display: flex; flex-direction: column; gap: 28px; max-width: 640px; margin: 36px auto 0; }
.message-bubble { background: var(--ivory-100); border: 1px solid var(--line); border-radius: 4px var(--radius-lg) var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-card); padding: 24px 28px; font-family: var(--font-serif-current); font-style: italic; color: var(--navy-900); font-size: 1.05rem; line-height: 1.7; }
.message-bubble p { margin: 0; }
.message-bubble-attribution { margin-top: 10px; font-size: 0.82rem; color: var(--slate-500); padding-left: 4px; }
.featured-statement { text-align: center; margin: 36px auto; max-width: 620px; padding: 36px 40px; background: rgba(194,163,95,0.08); border: 1px solid rgba(194,163,95,0.3); border-radius: var(--radius-md); font-family: var(--font-serif-current); font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--navy-950); line-height: 1.35; }
.results-carousel-wrap { position: relative; }
.results-page #gcse .results-proof-carousel-wrap,
.results-page #messages .results-carousel-wrap,
.results-page #ukmt .results-carousel-wrap,
.results-page #reviews .results-carousel-wrap {
  margin-top: 32px;
  padding-inline: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.results-page #reviews .results-carousel-wrap {
  padding-inline: 0;
}
.results-carousel-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 16px; }
.results-page #messages .results-carousel-nav,
.results-page #ukmt .results-carousel-nav,
.results-page #reviews .results-carousel-nav {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
  z-index: 2;
}
.results-page #messages .results-carousel-nav .tutor-strip-btn,
.results-page #ukmt .results-carousel-nav .tutor-strip-btn,
.results-page #reviews .results-carousel-nav .tutor-strip-btn,
.results-proof-control {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16,35,63,0.12);
  color: var(--navy-900);
  box-shadow: none;
  font-size: 1.45rem;
  line-height: 1;
}
.results-page #messages .results-carousel-nav .tutor-strip-btn,
.results-page #ukmt .results-carousel-nav .tutor-strip-btn,
.results-page #reviews .results-carousel-nav .tutor-strip-btn {
  pointer-events: auto;
}
.results-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.results-carousel-track::-webkit-scrollbar { display: none; }
.results-page #gcse .results-proof-track,
.results-page #reviews .results-review-track {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 6px;
  padding-bottom: 10px;
}
.results-proof-carousel-wrap { position: relative; }
.results-proof-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.results-proof-control-prev { left: -8px; }
.results-proof-control-next { right: -8px; }
.cert-gallery,
.results-proof-track,
.results-review-track,
.results-cert-track,
.results-message-track { margin-top: 0; }
.results-proof-card,
.results-review-card,
.results-cert-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.results-proof-track .results-proof-card {
  width: calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px 26px;
}
.results-proof-card,
.results-review-card,
.google-review-card.results-review-card {
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 245, 0.94));
  box-shadow: 0 10px 24px rgba(11, 23, 48, 0.07);
}
.results-proof-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  background: rgba(194,163,95,0.12);
  border: 1px solid rgba(194,163,95,0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  margin: 0 auto 18px;
}
.results-proof-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.results-proof-card .cohort-number {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  letter-spacing: -0.03em;
  position: relative;
}
.results-proof-card .cohort-number::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(194,163,95,0.9);
  margin: 14px auto 0;
}
.results-proof-rating-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--gold-400);
  font-size: 0.76rem;
  letter-spacing: 0;
  margin: -4px 0 12px;
}
.results-proof-card .cohort-heading {
  min-height: 3.1em;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 0;
}
.results-proof-card .cohort-caption {
  margin-top: auto;
  padding-top: 14px;
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.6;
}
.results-proof-card .cohort-number,
.results-proof-card .cohort-heading,
.results-proof-card .cohort-caption { width: 100%; }
@media (max-width: 680px) {
  .results-proof-track .results-proof-card {
    width: 78%;
    min-width: 78%;
  }
  .results-page #messages .results-carousel-wrap,
  .results-page #ukmt .results-carousel-wrap,
  .results-page #reviews .results-carousel-wrap {
    padding-inline: 0;
  }
  .results-proof-control { display: none; }
  .results-proof-summary { margin-top: 30px; }
  .results-proof-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .results-proof-icon svg {
    width: 22px;
    height: 22px;
  }
}
.results-message-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  text-align: center;
  min-height: 100%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,35,63,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 26px;
  overflow: hidden;
  transform: none;
  transition: none;
}
.results-message-card:hover,
.results-message-card:focus-within {
  transform: none;
}
.results-review-track .results-review-card {
  width: calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
}
.results-cert-track .results-cert-card {
  width: calc((100% - 20px) / 2);
  min-width: calc((100% - 20px) / 2);
}
.results-cert-card { display: grid; gap: 10px; }
.cert-slot { aspect-ratio: 25 / 18; background: var(--ivory-100); border-radius: var(--radius-md); box-shadow: var(--shadow-card); display: grid; }
.cert-slot > * { grid-area: 1 / 1; }
.cert-slot img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: inherit; }
.cert-placeholder { display: none; place-items: center; border: 2px dashed var(--ivory-200); border-radius: inherit; color: var(--slate-500); font-style: italic; font-size: 0.88rem; text-align: center; padding: 20px; }
.cert-placeholder p { margin: 0; }
.cert-caption { text-align: center; font-size: 0.82rem; color: var(--slate-500); margin: 0; }
.mock-table { width: min(100%, 760px); border-collapse: collapse; margin: 28px auto 0; font-size: 0.95rem; }
.mock-table th, .mock-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); color: var(--navy-900); }
.mock-table th { color: var(--navy-950); font-weight: 600; background: rgba(16,35,63,0.03); }
.mock-table tr:last-child td { border-bottom: none; }
.google-review-card { min-height: 0; justify-content: flex-start; gap: 14px; }
.results-review-card {
  padding: 24px 24px 22px;
  min-height: 100%;
  background: rgba(255,255,255,0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.92));
}
.results-message-card .message-bubble {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.78;
}
.results-message-card .message-bubble-attribution {
  color: var(--slate-500);
  text-align: center;
  padding-left: 0;
  margin: 0;
  padding-top: 0;
  width: 100%;
}
.google-review-card .review-quote { margin-bottom: 0; }
.results-review-card { text-align: center; }
.results-review-card .google-review-header { display: flex; align-items: center; justify-content: center; gap: 12px; }
.results-review-card .google-review-header > div:last-child { text-align: left; }
.results-review-card .review-quote,
.results-review-card .review-meta,
.results-cert-card .cert-caption { text-align: center; }
.google-review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-800); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.google-stars { color: var(--gold-400); font-size: 0.88rem; letter-spacing: 2px; line-height: 1; margin: 0 0 2px; }
.google-review-tag { font-size: 0.7rem; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.google-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 32px;
}
.google-reviews-link {
  border-color: transparent;
  background: transparent;
  color: var(--navy-900);
}
.google-reviews-link-leave {
  text-decoration: underline;
  text-decoration-color: rgba(40,70,109,0.3);
  text-underline-offset: 3px;
}
.google-reviews-link-read {
  border-color: rgba(16, 35, 63, 0.2);
  background: rgba(255, 255, 255, 0.65);
}
.google-reviews-actions:has(.google-reviews-link-leave:hover) .google-reviews-link-leave,
.google-reviews-actions:has(.google-reviews-link-leave:focus-visible) .google-reviews-link-leave {
  border-color: rgba(16, 35, 63, 0.2);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.google-reviews-actions:has(.google-reviews-link-leave:hover) .google-reviews-link-read,
.google-reviews-actions:has(.google-reviews-link-leave:focus-visible) .google-reviews-link-read {
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(40,70,109,0.3);
  text-underline-offset: 3px;
}
.google-reviews-link-read:hover,
.google-reviews-link-read:focus-visible {
  border-color: rgba(16, 35, 63, 0.2);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.flagship-card-wrap { max-width: 560px; margin: 36px auto 0; }
.flagship-card-wrap .detail-list { margin-top: 16px; }
.flagship-card-wrap .pricing-follow-on { text-align: center; border-top: none; padding-top: 0; margin-top: 24px; }
@media (max-width: 960px) {
  .results-proof-track .results-proof-card,
  .results-message-card {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
  .results-review-track .results-review-card {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 860px) { .stat-band { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .results-message-card {
    width: 78%;
    min-width: 78%;
  }
  .results-message-card .message-bubble {
    font-size: 1.06rem;
    line-height: 1.82;
  }
}
@media (max-width: 680px) {
  .results-proof-track .results-proof-card,
  .results-review-track .results-review-card,
  .results-cert-track .results-cert-card {
    width: 82%;
    min-width: 82%;
  }
  .results-carousel-nav { display: none; }
}
@media (max-width: 599px) { .featured-statement { padding: 24px 20px; } }

/* ── Hero proof carousel ─────────────────────────────────── */
.hero-carousel-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-carousel-brand-line {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-carousel { display: flex; flex-direction: column; gap: 12px; }
.hero-carousel-viewport { overflow: hidden; border-radius: var(--radius-md); }
.hero-carousel-track { display: flex; transition: transform 0.45s ease; will-change: transform; }
.hero-carousel-slide { flex: 0 0 100%; display: flex; flex-direction: column; }
.hero-carousel-frame { display: grid; aspect-ratio: 16 / 10; margin: 0; }
.hero-carousel-frame > * { grid-area: 1 / 1; }
.hero-carousel-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-carousel-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(11,23,48,0.98), rgba(24,49,83,0.92));
  border: 1px dashed rgba(194,163,95,0.22);
  text-align: center;
}
.hc-fallback-file { margin: 0; font-size: 0.78rem; font-family: var(--font-body-current); color: var(--gold-400); }
.hc-fallback-dims { margin: 0; font-size: 0.7rem; color: rgba(255,255,255,0.38); }
.hc-fallback-dir { margin: 0; font-size: 0.76rem; color: rgba(255,255,255,0.62); font-style: italic; max-width: 28ch; line-height: 1.5; }
.hero-carousel-caption { margin: 0; padding: 10px 2px 0; font-size: 0.8rem; color: rgba(255,255,255,0.56); font-style: italic; min-height: 2.4em; }
.hero-carousel-dots { display: flex; gap: 8px; justify-content: center; padding-top: 4px; }
.hero-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-carousel-dot.is-active { background: var(--gold-400); transform: scale(1.35); }
.hero-carousel-dot:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }
@media (max-width: 860px) { .hero-carousel-frame { aspect-ratio: 4 / 3; } }
@media (max-width: 560px) { .hero-carousel-frame { aspect-ratio: 1 / 1; } }

/* ── Proof image slots ───────────────────────────────────── */
.proof-img-slot { margin-top: 28px; }
.proof-img-frame {
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16,35,63,0.08);
}
.proof-img-frame > * { grid-area: 1 / 1; }
.proof-img-landscape { aspect-ratio: 16 / 10; }
.proof-img-portrait { aspect-ratio: 3 / 4; }
.proof-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.proof-img-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 24px;
  min-height: 280px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border: 1px dashed rgba(194,163,95,0.2);
  text-align: center;
}
.proof-img-fallback-file { margin: 0; font-size: 0.84rem; font-family: var(--font-body-current); color: var(--gold-400); }
.proof-img-fallback-dims { margin: 0; font-size: 0.72rem; color: rgba(255,255,255,0.38); }
.proof-img-fallback-dir { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.62); font-style: italic; max-width: 46ch; line-height: 1.55; }
.proof-img-caption { margin-top: 12px; font-size: 0.88rem; color: var(--slate-500); text-align: center; font-style: italic; }
@media (max-width: 860px) { .proof-img-landscape { aspect-ratio: 4 / 3; } }

/* ── Parent visibility two-col ───────────────────────────── */
.proof-visual-pair {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}
@media (max-width: 860px) {
  .proof-visual-pair { grid-template-columns: 1fr; gap: 28px; }
  .proof-visual-pair .proof-img-slot { max-width: 300px; }
}

/* ── Tutor strip (team page) ─────────────────────────────── */
.tutor-strip-wrap { position: relative; }
.team-strip-intro {
  max-width: 62ch;
  margin-top: 0;
}
.tutor-strip-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 16px; }
.tutor-strip-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(16,35,63,0.12);
  background: rgba(255,255,255,0.88);
  color: var(--navy-900);
  box-shadow: none;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.tutor-strip-btn:hover { background: rgba(255,255,255,0.96); border-color: rgba(16,35,63,0.18); }
.tutor-strip-btn:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }
.tutor-strip-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 8px;
  scrollbar-width: none;
}
.tutor-strip-track::-webkit-scrollbar { display: none; }
.tutor-strip-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,35,63,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px rgba(11, 23, 48, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tutor-strip-copy {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}
.tutor-strip-card h3 {
  font-size: 1.08rem;
  margin: 0;
}
.tutor-strip-card .card-tag {
  margin: 0;
  justify-self: start;
}
.tutor-strip-card .team-qualification {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.5;
}
.tutor-strip-photo {
  display: grid;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory-100);
}
.tutor-strip-photo > * { grid-area: 1 / 1; }
.tutor-strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.tutor-strip-photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(194,163,95,0.24), transparent 42%),
    linear-gradient(160deg, rgba(16,35,63,0.94), rgba(24,49,83,0.88));
  text-align: center;
}
.tutor-strip-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-serif-current);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
}
.tutor-strip-ph-meta { margin: 0; font-size: 0.6rem; color: rgba(255,255,255,0.35); font-family: var(--font-body-current); line-height: 1.45; }
@media (max-width: 980px) {
  .tutor-strip-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
  .tutor-strip-track { gap: 18px; }
  .tutor-strip-card { flex: 0 0 78%; }
  .tutor-strip-nav { display: none; }
}

/* Homepage-first landing page refinements */
.landing-page .hero-copy,
.landing-page .hero-panel,
.landing-page .info-card,
.landing-page .statement-card,
.landing-page .content-panel,
.landing-page .review-card,
.landing-page .proof-note-card,
.landing-page .pricing-card {
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.055);
}

.landing-hero .hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4.6vw, 64px);
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(194, 163, 95, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 18%, rgba(194, 163, 95, 0.12), transparent 32%),
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(245, 239, 227, 0.72)),
    var(--ivory-50);
  box-shadow: 0 18px 42px rgba(11, 23, 48, 0.055);
}

.landing-hero .hero-grid > * {
  min-width: 0;
}

.landing-hero {
  padding: clamp(44px, 6vw, 72px) 0 44px;
  background:
    linear-gradient(180deg, var(--ivory-100), var(--ivory-50));
}

.landing-hero h1 {
  max-width: 12ch;
}

.landing-hero .hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-note {
  margin: 24px 0 0;
  max-width: 48ch;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-proof-panel {
  display: grid;
  align-content: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof-card {
  display: grid;
  gap: 14px;
  height: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof-title {
  display: grid;
  gap: 7px;
  max-width: 620px;
}

.hero-proof-title span {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-proof-title strong {
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: clamp(1.38rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

.hero-proof-subline {
  margin: 0;
  max-width: 52ch;
  color: var(--navy-900);
  font-size: 0.96rem;
  line-height: 1.55;
}

.landing-hero h1,
.landing-hero .hero-body,
.hero-note,
.hero-proof-title strong,
.hero-proof-subline,
.hero-proof-panel-copy p {
  overflow-wrap: break-word;
}

.hero-proof-device {
  position: relative;
  margin-top: clamp(-10px, -1vw, -4px);
  padding: clamp(6px, 1vw, 10px);
  border: 1px solid transparent;
  border-radius: 26px;
  background: transparent;
}

.hero-proof-screen {
  position: relative;
  min-height: clamp(360px, 35vw, 500px);
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
}

.hero-proof-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(4px, 0.8vw, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-proof-visual.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.14);
  filter:
    drop-shadow(0 5px 6px rgba(11, 23, 48, 0.12))
    drop-shadow(0 10px 12px rgba(11, 23, 48, 0.08));
}

.hero-proof-stylus {
  position: absolute;
  z-index: 4;
  right: clamp(58px, 9vw, 110px);
  bottom: clamp(-36px, -3vw, -24px);
  width: clamp(320px, 73%, 600px);
  height: auto;
  filter:
    drop-shadow(0 2px 3px rgba(11, 23, 48, 0.2))
    drop-shadow(0 9px 14px rgba(11, 23, 48, 0.1));
  opacity: 0.96;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-proof-placeholder {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(194, 163, 95, 0.26);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    rgba(255, 251, 245, 0.94);
  box-shadow: 0 12px 24px rgba(11, 23, 48, 0.055);
}

.hero-proof-placeholder-label {
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero-proof-placeholder span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.08);
}

.hero-proof-placeholder span:nth-child(3) {
  width: 78%;
}

.hero-proof-placeholder span:nth-child(4) {
  width: 56%;
}

.hero-proof-content {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    rgba(255, 251, 245, 0.96);
  box-shadow: 0 12px 24px rgba(11, 23, 48, 0.055);
}

.hero-proof-count {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(194, 163, 95, 0.12);
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-proof-panel-copy {
  display: none;
  gap: 10px;
}

.hero-proof-panel-copy.is-active {
  display: grid;
}

.hero-proof-panel-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.hero-proof-panel-copy p {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-proof-panel-copy strong {
  color: var(--navy-950);
}

.hero-proof-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.hero-proof-control {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 35, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-950);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof-control.is-active {
  border-color: rgba(194, 163, 95, 0.62);
  background: rgba(194, 163, 95, 0.14);
}

.proof-visual-board {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(194, 163, 95, 0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(194, 163, 95, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.proof-visual-topline,
.proof-visual-feedback {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.proof-visual-topline span,
.proof-visual-feedback span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-visual-topline strong {
  color: var(--ivory-100);
  font-size: 0.9rem;
}

.proof-visual-work {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(194, 163, 95, 0.2);
}

.proof-visual-work span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.16), rgba(194, 163, 95, 0.38));
}

.proof-visual-work span:nth-child(2) {
  width: 78%;
}

.proof-visual-work span:nth-child(3) {
  width: 88%;
}

.proof-visual-work span:nth-child(4) {
  width: 56%;
}

.home-proof-band {
  margin-top: 0;
  padding: 34px 0 42px;
  background: var(--ivory-100);
}

.proof-stat-grid.trust-inner {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 163, 95, 0.32);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.proof-stat {
  min-height: 160px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  grid-template-rows: 64px auto;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.proof-stat:not(:first-child) {
  border-left: 1px solid rgba(194, 163, 95, 0.2);
}

.proof-stat-figure {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-stat strong {
  color: var(--navy-950);
  font-family: var(--font-serif-libre);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.proof-stat:first-child .proof-stat-figure strong {
  transform: translateY(8px);
}

.proof-stat-copy {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.92rem;
  line-height: 1.5;
}

.proof-stat:first-child .proof-stat-copy {
  transform: translateY(6px);
}

.home-google-reviews {
  margin-top: 0;
  padding-top: 50px;
  background:
    linear-gradient(180deg, var(--ivory-50), var(--ivory-100));
}

.home-google-reviews .section-heading {
  max-width: 820px;
}

.home-google-reviews h2 {
  color: var(--navy-950);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
}

.home-google-reviews .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-700);
}

.home-google-carousel-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 34px auto 0;
}

.home-google-carousel-nav {
  position: absolute;
  inset: 50% -16px auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-google-carousel-nav .tutor-strip-btn {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  background: var(--white);
  border-color: var(--line);
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
  font-size: 1.32rem;
}

.home-google-review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px 10px;
}

.home-google-review-track::-webkit-scrollbar {
  display: none;
}

.home-google-reviews .home-google-review-card {
  flex: 0 0 clamp(240px, 21vw, 270px);
  min-height: 390px;
  padding: 24px 24px 22px;
  font-family: var(--font-body-current);
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(60, 64, 67, 0.12);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-google-reviews .home-google-review-card .google-review-header {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.home-google-reviews .home-google-review-card .review-avatar {
  width: 38px;
  height: 38px;
  background: #1a73e8;
  color: #ffffff;
  font-family: var(--font-body-current);
  font-size: 0.95rem;
  font-weight: 600;
}

.home-google-reviews .home-google-reviewer-block {
  min-width: 0;
}

.home-google-reviews .home-google-reviewer {
  margin: 0 0 2px;
  color: #1a73e8;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.home-google-reviews .home-google-review-card .google-stars {
  color: #fbbc04;
  font-family: var(--font-body-current);
  font-size: 1.12rem;
  letter-spacing: 2.6px;
  line-height: 1;
  margin: 2px 0 12px;
}

.home-google-reviews .home-google-review-card .google-review-tag {
  color: #5f6368;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.home-google-reviews .home-google-review-card .review-quote {
  margin: 0;
  color: #3c4043;
  font-family: var(--font-body-current);
  font-size: 0.93rem;
  line-height: 1.52;
}

.home-google-reviews .home-google-review-card .review-meta {
  margin-top: auto;
  padding-top: 18px;
  color: #5f6368;
  font-family: var(--font-body-current);
  font-size: 0.8rem;
  line-height: 1.4;
}

.home-google-reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-google-reviews-cta .button-secondary {
  background: var(--white);
}

.landing-page #programmes .section-heading {
  max-width: 820px;
}

.landing-page #programmes {
  padding-top: 36px;
}

.landing-page #programmes .section-intro {
  color: var(--slate-700);
}

.landing-page #programmes .compact-card-grid {
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-page #programmes .info-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
  border-color: rgba(194, 163, 95, 0.32);
}

.landing-page #programmes .info-card h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.landing-page #programmes .card-tag {
  align-self: flex-start;
}

.landing-page #programmes .info-card p:last-child {
  color: var(--slate-700);
}

.programmes-preview-cta {
  margin: 30px 0 0;
  text-align: center;
}

.programmes-preview-cta .button-secondary {
  background: rgba(255, 255, 255, 0.78);
}

.home-method-section {
  overflow-x: hidden;
  background: var(--ivory-100);
  padding-top: 64px;
  padding-bottom: 70px;
}

.home-method-section .section-heading {
  max-width: 860px;
}

.home-method-section h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-method-section .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-700);
}

.home-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 38px;
}

.compact-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-method-panel {
  display: grid;
  grid-template-rows: minmax(172px, auto) 1fr;
  min-width: 0;
  min-height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(194, 163, 95, 0.3);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.compact-method-grid .home-method-panel {
  grid-template-rows: auto;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 26px 22px;
}

.compact-method-grid .home-method-panel h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.2rem;
  line-height: 1.22;
}

.compact-method-grid .home-method-panel p:last-child {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.56;
}

.home-method-link {
  margin: 28px 0 0;
  text-align: center;
}

.home-method-link a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(40, 70, 109, 0.3);
  text-underline-offset: 3px;
}

.home-method-copy {
  padding-bottom: 24px;
}

.home-method-copy h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.home-method-copy p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.62;
}

.home-method-visual {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--ivory-50);
  border: 1px solid rgba(16, 35, 63, 0.06);
}

.home-method-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.home-method-visual-trifecta {
  gap: 16px;
  align-content: start;
}

.trifecta-diagram {
  width: min(112%, 500px);
  max-width: none;
}

.trifecta-outline,
.trifecta-centre,
.engine-orbit,
.engine-orbit-arrow,
.engine-node circle,
.engine-centre {
  vector-effect: non-scaling-stroke;
}

.trifecta-outline {
  fill: rgba(255, 255, 255, 0.36);
  stroke: var(--gold-400);
  stroke-width: 2;
}

.trifecta-centre {
  fill: var(--white);
  stroke: rgba(194, 163, 95, 0.62);
  stroke-width: 1.8;
}

.trifecta-label,
.trifecta-centre-text,
.engine-node-title,
.engine-centre-text {
  fill: var(--navy-950);
  font-family: var(--font-serif-current);
  font-weight: 600;
}

.trifecta-label {
  font-size: 25px;
}

.trifecta-label-top {
  font-size: 25px;
}

.trifecta-centre-text {
  font-size: 23px;
  font-weight: 700;
}

.trifecta-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.trifecta-pillar {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(194, 163, 95, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.trifecta-pillar h4 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 0.88rem;
  line-height: 1.2;
}

.trifecta-pillar ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trifecta-pillar li {
  position: relative;
  padding-left: 11px;
  color: var(--slate-700);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trifecta-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold-400);
}

.engine-diagram {
  width: min(108%, 510px);
  max-width: none;
}

.engine-orbit,
.engine-orbit-arrow {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 2;
  stroke-linecap: round;
}

.engine-orbit {
  opacity: 0.72;
}

.engine-orbit-arrow {
  marker-end: url("#engineArrow");
}

.engine-diagram marker path {
  fill: var(--gold-400);
}

.engine-node circle {
  fill: var(--white);
  stroke: rgba(194, 163, 95, 0.7);
  stroke-width: 1.8;
}

.engine-node-title {
  font-size: 21px;
}

.engine-node-note {
  fill: var(--slate-700);
  font-size: 11px;
  font-family: var(--font-body-current);
}

.engine-centre {
  fill: rgba(255, 255, 255, 0.82);
  stroke: rgba(194, 163, 95, 0.42);
  stroke-width: 1.2;
}

.engine-centre-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.compact-card-grid.card-grid-four {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.compact-card-grid .info-card {
  padding: 24px;
}

.compact-card-grid .info-card p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.compact-frameworks {
  margin-top: 18px;
}

.compact-frameworks .framework-captions {
  display: none;
}

.supervision-feature-shell {
  background: var(--white);
  border-top: 1px solid rgba(194, 163, 95, 0.12);
  border-bottom: 1px solid rgba(194, 163, 95, 0.12);
}

.proof-gallery-shell {
  background: var(--white);
  border-top: 1px solid rgba(194, 163, 95, 0.12);
  border-bottom: 1px solid rgba(194, 163, 95, 0.12);
}

.proof-gallery-shell .section-heading {
  max-width: 800px;
}

.proof-gallery-shell .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-700);
}

.proof-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.proof-placeholder-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border: 1px dashed rgba(194, 163, 95, 0.56);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(245, 239, 227, 0.58)),
    var(--ivory-50);
}

.proof-placeholder-frame {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(16, 35, 63, 0.06) 25%, transparent 25%),
    linear-gradient(315deg, rgba(16, 35, 63, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, rgba(16, 35, 63, 0.06) 25%, transparent 25%),
    rgba(255, 255, 255, 0.74);
  background-position: 14px 0, 14px 0, 0 0, 0 0;
  background-size: 28px 28px;
}

.proof-placeholder-frame::after {
  content: "Real image slot";
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-placeholder-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.18rem;
  line-height: 1.2;
}

.proof-placeholder-card p:last-child {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.95rem;
  line-height: 1.56;
}

.live-supervision-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.97), rgba(29, 57, 90, 0.95)),
    var(--navy-900);
  border: 1px solid rgba(194, 163, 95, 0.2);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.08);
}

.live-board-main,
.live-board-side article {
  border-radius: var(--radius-md);
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(194, 163, 95, 0.2);
}

.live-board-main {
  padding: 26px;
}

.live-work-lines {
  display: grid;
  gap: 14px;
}

.live-work-lines span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.14), rgba(194, 163, 95, 0.35));
}

.live-work-lines span:nth-child(2) {
  width: 84%;
}

.live-work-lines span:nth-child(3) {
  width: 66%;
}

.live-work-lines span:nth-child(4) {
  width: 92%;
}

.live-work-lines span:nth-child(5) {
  width: 58%;
}

.live-board-side {
  display: grid;
  gap: 14px;
}

.live-board-side article {
  padding: 18px;
}

.live-board-side strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-950);
}

.landing-page .system-proof-grid {
  margin-top: 24px;
}

.pricing-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

#pricing .pricing-shell {
  max-width: 980px;
}

#pricing .section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

#pricing .section-intro {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#pricing .section-intro + .section-intro {
  margin-top: 10px;
}

.pricing-snapshot-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 227, 0.68)),
    var(--ivory-50);
  border-color: rgba(194, 163, 95, 0.26);
  box-shadow: 0 12px 28px rgba(11, 23, 48, 0.045);
  text-align: left;
}

.pricing-snapshot-card .card-tag {
  justify-self: start;
}

.pricing-snapshot-card strong {
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: clamp(1.7rem, 2.2vw, 2.08rem);
  line-height: 1.05;
}

.pricing-snapshot-card span {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.pricing-snapshot-card p:last-child {
  color: var(--navy-900);
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing-snapshot-note,
.pricing-snapshot-link {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--navy-900);
}

.pricing-snapshot-link a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(40, 70, 109, 0.3);
  text-underline-offset: 3px;
}

.proof-experiment-page {
  background:
    radial-gradient(circle at top left, rgba(194, 163, 95, 0.14), transparent 28%),
    linear-gradient(180deg, var(--ivory-50), var(--ivory-100));
}

.proof-experiment-hero {
  padding-top: 58px;
  padding-bottom: 18px;
}

.proof-experiment-heading h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.proof-experiment-heading .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.proof-experiment-section {
  padding-top: 18px;
  padding-bottom: 74px;
}

.proof-experiment-grid {
  display: grid;
  gap: 34px;
}

.proof-experiment-variant {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-card);
}

.proof-experiment-label {
  position: sticky;
  top: 24px;
}

.proof-experiment-label h2 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.proof-experiment-stack {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.proof-experiment-card {
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(194, 163, 95, 0.24);
}

.proof-experiment-card-navy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--navy-900);
  box-shadow: 0 14px 30px rgba(11, 23, 48, 0.1);
}

.proof-experiment-card-ivory {
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    var(--ivory-50);
  box-shadow: 0 14px 30px rgba(11, 23, 48, 0.07);
}

.proof-experiment-card-balanced {
  overflow: hidden;
  padding: 0;
  background: var(--ivory-50);
  box-shadow: 0 16px 34px rgba(11, 23, 48, 0.08);
}

.proof-experiment-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.proof-experiment-head span {
  color: var(--gold-400);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-experiment-head strong {
  color: var(--ivory-100);
  font-size: 0.92rem;
  text-align: right;
}

.proof-experiment-card-ivory .proof-experiment-head,
.proof-experiment-card-balanced .proof-experiment-head {
  margin: -18px -18px 0;
  padding: 15px 18px;
  background: var(--navy-900);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.proof-experiment-card-balanced .proof-experiment-head {
  margin: 0;
  border-radius: 0;
}

.proof-experiment-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.24fr);
  gap: 12px;
  align-items: end;
}

.proof-experiment-card-balanced .proof-experiment-stage,
.proof-experiment-card-balanced .proof-experiment-caption,
.proof-experiment-card-balanced .proof-experiment-steps,
.proof-experiment-card-balanced .proof-experiment-note {
  margin-left: 18px;
  margin-right: 18px;
}

.proof-experiment-card-balanced .proof-experiment-stage {
  margin-top: 18px;
}

.proof-experiment-frame {
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--navy-950);
  border: 1px solid rgba(194, 163, 95, 0.24);
  overflow: hidden;
}

.proof-experiment-frame-main {
  padding: 10px;
  box-shadow: 0 14px 26px rgba(11, 23, 48, 0.12);
}

.proof-experiment-frame-secondary {
  padding: 6px;
  opacity: 0.92;
}

.proof-experiment-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-experiment-frame-main img {
  min-height: 300px;
}

.proof-experiment-frame-secondary img {
  min-height: 130px;
}

.proof-experiment-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.proof-experiment-card-ivory .proof-experiment-caption,
.proof-experiment-card-balanced .proof-experiment-caption {
  padding: 12px 14px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
}

.proof-experiment-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}

.proof-experiment-steps span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-experiment-steps span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold-400);
}

.proof-experiment-card-ivory .proof-experiment-steps,
.proof-experiment-card-balanced .proof-experiment-steps {
  color: var(--slate-700);
}

.proof-experiment-note {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--ivory-50);
  border: 1px solid rgba(194, 163, 95, 0.24);
  color: var(--navy-900);
}

.proof-experiment-card-balanced .proof-experiment-note {
  margin-bottom: 18px;
}

.proof-experiment-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-950);
  font-family: var(--font-serif-current);
  font-size: 1.1rem;
  line-height: 1.25;
}

.proof-experiment-note p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.52;
}

.proof-experiment-founder-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(194, 163, 95, 0.24);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 0%, rgba(194, 163, 95, 0.12), transparent 34%),
    rgba(255, 251, 245, 0.96);
  box-shadow: 0 12px 24px rgba(11, 23, 48, 0.055);
}

.proof-experiment-founder-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.proof-experiment-founder-card p {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.95rem;
  line-height: 1.55;
}

.proof-experiment-founder-card .detail-list {
  margin-top: 2px;
  gap: 9px;
}

.proof-experiment-founder-card .detail-list li {
  color: var(--slate-700);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .compact-card-grid.card-grid-four,
  .proof-stat-grid.trust-inner,
  .pricing-snapshot-grid,
  .compact-method-grid,
  .proof-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-stat:nth-child(odd) {
    border-left: 0;
  }

  .proof-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(194, 163, 95, 0.2);
  }

  .proof-experiment-variant {
    grid-template-columns: 1fr;
  }

  .proof-experiment-label {
    position: static;
  }
}

@media (max-width: 860px) {
  .landing-hero {
    padding-bottom: 34px;
  }

  .landing-hero .hero-grid {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(30px, 6vw, 44px);
  }

  .landing-hero .hero-copy {
    align-self: start;
  }

  .hero-proof-screen {
    min-height: clamp(330px, 60vw, 480px);
  }

  .hero-proof-visual img {
    transform: scale(1.03);
  }

  .hero-proof-stylus {
    bottom: -72px;
  }

  .hero-proof-card {
    height: auto;
    align-content: start;
  }

  .hero-proof-panel {
    padding: 0;
  }

  .hero-proof-subline,
  .hero-proof-panel-copy p {
    overflow-wrap: break-word;
  }

  .home-proof-band {
    padding: 30px 0 34px;
  }

  .home-google-reviews {
    padding-top: 38px;
  }

  .landing-page #programmes .compact-card-grid {
    grid-template-columns: 1fr;
  }

  .home-method-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .home-method-section .wrap {
    width: min(calc(100vw - 48px), var(--max-width));
  }

  .home-method-section h2 {
    font-size: clamp(2rem, 7vw, 2.55rem);
    max-width: 12ch;
  }

  .home-method-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    min-width: 0;
  }

  .compact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-method-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .home-method-copy p,
  .home-method-section .section-intro {
    overflow-wrap: break-word;
  }

  .home-method-copy {
    padding-bottom: 18px;
  }

  .home-method-visual {
    min-height: 0;
    padding: 16px;
  }

  .trifecta-diagram,
  .engine-diagram {
    width: 100%;
    max-width: 390px;
  }

  .trifecta-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trifecta-pillar {
    padding: 12px 14px;
  }

  .engine-node-note {
    font-size: 10px;
  }

  .compact-card-grid.card-grid-four,
  .proof-stat-grid.trust-inner,
  .live-supervision-board,
  .proof-gallery-grid,
  .about-framework-grid {
    grid-template-columns: 1fr;
  }

  .pricing-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-stat,
  .proof-stat:not(:first-child) {
    border-left: 0;
  }

  .proof-stat {
    min-height: 0;
    border-bottom: 1px solid rgba(194, 163, 95, 0.2);
  }

  .proof-stat:last-child {
    border-bottom: 0;
  }

  .proof-experiment-variant {
    padding: 20px;
  }

  .proof-experiment-stage {
    grid-template-columns: 1fr;
  }

  .proof-experiment-frame-main img {
    min-height: 240px;
  }

  .proof-experiment-frame-secondary img {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  .landing-hero .hero-grid {
    gap: 26px;
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .landing-hero .section-kicker {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .home-google-carousel-wrap {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
  }

  .home-google-carousel-nav {
    display: none;
  }

  .home-google-review-track {
    gap: 16px;
    padding-inline: 10px;
  }

  .home-google-reviews .home-google-review-card {
    flex-basis: min(82vw, 280px);
    min-height: 360px;
  }

  .hero-proof-panel {
    padding: 0;
  }

  .pricing-snapshot-card {
    text-align: left;
  }

  .pricing-snapshot-card .card-tag {
    justify-self: start;
  }

  .pricing-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .compact-method-grid,
  .about-engine-steps {
    grid-template-columns: 1fr;
  }

  .proof-visual-topline,
  .proof-visual-feedback,
  .live-supervision-board {
    grid-template-columns: 1fr;
  }

  .proof-visual-topline,
  .proof-visual-feedback {
    flex-direction: column;
  }

  .hero-proof-card,
  .hero-proof-device,
  .hero-proof-screen,
  .hero-proof-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-proof-card {
    overflow: hidden;
  }

  .hero-proof-screen {
    min-height: 270px;
  }

  .hero-proof-device {
    padding: 5px;
  }

  .hero-proof-visual img {
    transform: scale(1);
  }

  .hero-proof-stylus {
    right: 24px;
    bottom: 2px;
    width: clamp(220px, 74%, 300px);
    filter:
      drop-shadow(0 2px 3px rgba(11, 23, 48, 0.2))
      drop-shadow(0 7px 11px rgba(11, 23, 48, 0.1));
  }

  .proof-experiment-hero {
    padding-top: 42px;
  }

  .proof-experiment-variant {
    padding: 16px;
  }

  .proof-experiment-card,
  .proof-experiment-founder-card {
    padding: 16px;
  }

  .proof-experiment-card-ivory .proof-experiment-head {
    margin: -16px -16px 0;
  }

  .proof-experiment-card-balanced {
    padding: 0;
  }

  .proof-experiment-card-balanced .proof-experiment-stage,
  .proof-experiment-card-balanced .proof-experiment-caption,
  .proof-experiment-card-balanced .proof-experiment-steps,
  .proof-experiment-card-balanced .proof-experiment-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .proof-experiment-card-balanced .proof-experiment-note {
    margin-bottom: 16px;
  }

  .proof-experiment-head {
    flex-direction: column;
    gap: 6px;
  }

  .proof-experiment-head strong {
    text-align: left;
  }
}
