/* ============================================================
   THINK BIG EDUCATION — style.css
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
/*
   SAVANNAH SUNSET PALETTE
   Deep acacia dark · Amber sun · Sunset orange · Sandy cream · Dust
*/
:root {
  /* Dark structural — deep acacia bark at night */
  --navy:        #1E0A02;
  --navy-mid:    #341506;
  --navy-pale:   #FFF0D8;

  /* Primary warm accent — amber sun at peak */
  --gold:        #F0A010;
  --gold-dark:   #CC8808;
  --gold-pale:   #FFF0B8;

  /* Backgrounds — bright Kalahari sand & white */
  --cream:       #FFFAF0;
  --cream-dark:  #FFE8C8;

  /* Text */
  --charcoal:    #1E0A02;

  /* Hot accent — vivid sunset orange at the horizon */
  --brick:       #E05C18;

  /* Supporting palette */
  --forest:      #4A8020;   /* bright acacia green           */
  --plum:        #8040A8;   /* vivid dusk sky purple         */
  --white:       #FFFFFF;
  --muted:       #7A5A38;   /* dusty earth / secondary text  */
  --muted-light: #B08860;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-xs: 3px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows use warm brown undertone (rgb 38,18,4) */
  --shadow-sm: 0 1px 4px rgba(38, 18, 4, 0.08);
  --shadow-md: 0 4px 18px rgba(38, 18, 4, 0.13);
  --shadow-lg: 0 8px 36px rgba(38, 18, 4, 0.18);

  --transition: 0.2s ease;

  --container: 1200px;
  --pad:        1.25rem;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
address { font-style: normal; }

/* --- Skip Link -------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.375rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { max-width: 70ch; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.75;
  margin-top: 0.875rem;
}

/* --- Layout ----------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(201, 148, 31, 0.35);
  outline: none;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--navy);
  color: #fff;
  outline: none;
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  outline: none;
}

.btn--full { width: 100%; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* --- Header / Navigation ---------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(20, 5, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1.5rem;
}

.nav__logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }

.nav__cta { display: none; flex-shrink: 0; }
.nav__login { display: none; flex-shrink: 0; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__toggle:hover { background: rgba(255,255,255,0.07); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 4.25rem;
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--pad) 2rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 12px 32px rgba(20,5,0,0.3);
  z-index: 199;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__drawer-link:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.nav__drawer-cta { margin-top: 1.25rem; }

/* --- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(150deg, #ffffff 0%, #FFF4DC 45%, #ffffff 100%);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
/* Decorative warm glow behind form card */
.hero::after {
  content: '';
  position: absolute;
  top: -10rem; right: -8rem;
  width: 36rem; height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,160,16,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201,148,31,0.5);
  border-radius: 2rem;
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  color: var(--navy);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.hero__headline em {
  font-style: italic;
  color: var(--brick);
}

.hero__sub {
  font-size: 1.0625rem;
  color: #5A3820;
  line-height: 1.78;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.hero__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.hero__note::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* --- Trial / lead form card (shared — used in hero on index.html and booking.html) --- */
.trial-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  text-align: left;
}
.trial-form-card__header {
  background: linear-gradient(100deg, #8C2606 0%, var(--brick) 50%, #F09020 100%);
  padding: 2rem 2.25rem 1.875rem;
}
.trial-form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.trial-form-card__sub { font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.trial-form-card__body { padding: 2.25rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
@media (min-width: 640px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-field label .req { color: var(--brick); margin-left: 0.125rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E0D0B8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  background: #FDFAF5;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  min-height: 3rem;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B6040' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.125rem;
  padding-right: 2.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(224,92,24,0.12);
  background: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #B0946A; }
.form-field textarea { resize: vertical; min-height: 5.5rem; }

.form-divider { height: 1px; background: var(--cream-dark); margin: 1.75rem 0; }
.form-consent { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.375rem; }
.form-submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  min-height: 3.25rem;
}
.trial-form-feedback {
  display: none;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1rem;
}
.trial-form-feedback--success { background: #E6F9ED; border: 1.5px solid #57C97A; color: #1A6633; }
.trial-form-feedback--error   { background: #FEF0EE; border: 1.5px solid #F26A50; color: #7C2010; }

/* --- Sticky promo / urgency banner -------------------------- */
.promo-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.625rem var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promo-banner strong { color: var(--gold); font-weight: 700; }

/* --- Problem / comparison cards ------------------------------ */
.compare-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-col {
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.compare-col--bad { background: #FBF3EC; border: 1.5px solid #ECD9C6; }
.compare-col--good { background: var(--navy); color: #fff; }
.compare-col__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.compare-col--bad .compare-col__tag { color: var(--muted); }
.compare-col--good .compare-col__tag { color: var(--gold); }
.compare-col__title { font-family: var(--font-display); font-size: 1.625rem; margin-bottom: 1.25rem; }
.compare-col--bad .compare-col__title { color: var(--navy); }
.compare-col--good .compare-col__title { color: #fff; }
.compare-list { display: grid; gap: 0.875rem; }
.compare-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.5; }
.compare-item svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; margin-top: 0.125rem; }
.compare-col--bad .compare-item { color: #6B4A2E; }
.compare-col--bad .compare-item svg { stroke: #C04020; }
.compare-col--good .compare-item { color: rgba(255,255,255,0.88); }
.compare-col--good .compare-item svg { stroke: var(--gold); }

/* --- FAQ (native details/summary, no JS) --------------------- */
.faq-list { display: grid; gap: 0.75rem; max-width: 46rem; margin-inline: auto; }
.faq-list details {
  background: #fff;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
}
.faq-list summary {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brick);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.875rem;
}

/* --- Trust Strip ------------------------------------------ */
.trust-strip {
  background: linear-gradient(100deg, #A82E08 0%, #E05818 35%, #F09020 68%, #D48808 100%);
  padding: 2.5rem 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
}
.trust-stat { text-align: center; }
.trust-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.trust-stat__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* --- Why Group Learning ----------------------------------- */
.why-groups {
  background: #fff;
  padding: 5rem 0;
  border-top: 4px solid var(--cream-dark);
}
.why-groups__inner {
  display: grid;
  gap: 3.5rem;
}

.why-groups__text .section-label { color: var(--brick); }

.why-groups__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #5A3820;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.why-points { display: grid; gap: 1.5rem; }
.why-point {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  align-items: start;
}
.why-point__icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.why-point__icon svg { width: 1.125rem; height: 1.125rem; stroke: var(--gold); }
.why-point__title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.why-point__desc  { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }

/* Visual panel */
.why-groups__visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-groups__visual::before {
  content: '';
  position: absolute;
  bottom: -3rem; right: -3rem;
  width: 14rem; height: 14rem;
  border-radius: 50%;
  border: 2.5rem solid rgba(201,148,31,0.12);
  pointer-events: none;
}
.why-groups__visual::after {
  content: '';
  position: absolute;
  top: -2rem; left: -2rem;
  width: 8rem; height: 8rem;
  border-radius: 50%;
  border: 1.5rem solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.year-stack {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.year-stack__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  transition: background var(--transition);
}
.year-stack__pill:hover { background: rgba(255,255,255,0.11); }
.year-stack__pill-label {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: #fff;
}
.year-stack__pill-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,144,16,0.15);
  border-radius: 2rem;
  padding: 0.2rem 0.625rem;
}
.year-stack__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem;
}
.why-card__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}
.why-card__text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* --- Growth graph (8-week bar chart) ----------------------- */
.growth-graph { position: relative; z-index: 1; }
.growth-graph__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.growth-graph__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.growth-graph__top-legend {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.growth-graph__legend-pill {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}
.growth-graph__swatch {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.1875rem;
  display: inline-block;
  flex-shrink: 0;
}
.growth-graph__swatch--week1 { background: rgba(255,255,255,0.25); }
.growth-graph__swatch--week8 { background: var(--gold); }
.growth-graph__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.growth-graph__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.growth-graph__bar-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  height: 11rem;
  width: 100%;
}
.growth-graph__bar {
  width: 2.75rem;
  border-radius: 0.375rem 0.375rem 0 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.growth-graph__bar--week1 { background: rgba(255,255,255,0.12); }
.growth-graph__bar--week8 { background: var(--gold); }
.growth-graph__value {
  position: absolute;
  top: -1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.growth-graph__value--week8 { color: var(--gold); }
.growth-graph__group-label {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.growth-graph__caption {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* --- The Big Five ----------------------------------------- */
.big-five {
  background: linear-gradient(180deg, #FFF8E8 0%, #ffffff 100%);
  padding: 5rem 0;
  border-top: 4px solid var(--cream-dark);
}
.big-five__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.big-five__header .section-intro { margin-inline: auto; }

.big-five__grid {
  display: grid;
  gap: 1.25rem;
}

.pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  border-top: 4px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: attr(data-num);
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(15,42,74,0.04);
  position: absolute;
  bottom: -1.5rem;
  right: 0.5rem;
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}
.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar:hover::after { color: rgba(201,148,31,0.08); }

.pillar--1 { border-top-color: var(--brick); }
.pillar--2 { border-top-color: var(--gold); }
.pillar--3 { border-top-color: #E07010; }
.pillar--4 { border-top-color: var(--forest); }
.pillar--5 { border-top-color: var(--plum); }

.pillar__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.pillar:hover .pillar__num { color: var(--gold); }

.pillar__title {
  font-size: 1.3125rem;
  color: var(--navy);
  margin-bottom: 1.125rem;
}

.pillar__skills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar__skills li {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.pillar__skills li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* --- How It Works ----------------------------------------- */
.how-it-works {
  background: #fff;
  padding: 5rem 0;
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.how-it-works__header .section-intro { margin-inline: auto; }

.steps { display: grid; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 2.5rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.step__num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}
.step:hover .step__num { background: var(--gold); color: var(--navy); }

.step__line {
  width: 2px;
  flex: 1;
  background: var(--cream-dark);
  min-height: 2rem;
  margin-top: 0;
}
.step:last-child .step__line { display: none; }

.step__content { padding-top: 0.6rem; }
.step__title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}
.step__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* --- Who We Help ------------------------------------------ */
.who-we-help {
  background: var(--navy);
  padding: 5rem 0;
}
.who-we-help__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.who-we-help__header h2 { color: #fff; }
.who-we-help__header .section-intro { color: rgba(255,255,255,0.65); margin-inline: auto; }

.year-bands { display: grid; gap: 1.25rem; }

.year-band {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.year-band:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,148,31,0.4);
}

.year-band__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.year-band__tag {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 2rem;
  padding: 0.275rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.year-band__title { font-family: var(--font-display); font-size: 1.375rem; color: #fff; }

.year-band__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

/* --- Testimonials ----------------------------------------- */
.testimonials {
  background: var(--cream-dark);
  padding: 5rem 0;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials__header .section-intro { margin-inline: auto; }

.testimonials__grid { display: grid; gap: 1.25rem; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.75rem; right: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #5A3820;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-card__avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.125rem;
}
.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: 0.375rem;
}
.testimonial-card__verified::before {
  content: '✓';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
}
.footer__main {
  display: grid;
  gap: 3rem;
  padding: 4rem 0 3.5rem;
}

.footer__logo { margin-bottom: 1rem; }
.footer__logo-main {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: #fff;
  display: block;
}
.footer__logo-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 0.875rem;
  max-width: 36ch;
}

.footer__social { display: flex; gap: 0.875rem; margin-top: 1.25rem; }
.footer__social-link {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,148,31,0.1);
}
.footer__social-link svg { width: 1rem; height: 1rem; }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: #fff; }

.footer__contact { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.25rem; }
.footer__contact a, .footer__contact p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__contact a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.75); }

/* --- Floating CTA bar (mobile) ---------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 0.875rem var(--pad);
  z-index: 150;
  box-shadow: 0 -2px 20px rgba(20,5,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — 640px+ */
@media (min-width: 640px) {
  :root { --pad: 1.5rem; }

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

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

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

  .year-bands { grid-template-columns: repeat(1, 1fr); }

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

  .footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }

  .mobile-cta-bar { display: none; }
}

/* Desktop — 1024px+ */
@media (min-width: 1024px) {
  :root { --pad: 2rem; }

  /* Nav */
  .nav__links { display: flex; }
  .nav__cta   { display: block; }
  .nav__login { display: block; }
  .nav__toggle { display: none; }

  /* Hero */
  .hero { padding: 6rem 0 5rem; }
  .hero::after { width: 45%; }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }
  .hero__headline { max-width: 20ch; font-size: 3.25rem; }
  .hero__badge, .hero__sub { margin-inline: 0; }

  /* Why Groups */
  .why-groups__inner { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Big Five */
  .big-five__grid { grid-template-columns: repeat(3, 1fr); }

  /* Steps — horizontal on large screens */
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .step {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.25rem;
    padding-bottom: 0;
    padding-right: 2rem;
  }
  .step:last-child { padding-right: 0; }
  .step__track {
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: 100%;
    margin-bottom: 0;
  }
  .step__line {
    width: 100%;
    height: 2px;
    min-height: auto;
    flex: 1;
    margin: 0;
  }
  .step__content { padding-top: 0; }

  /* Who We Help */
  .year-bands { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer__main { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

  .mobile-cta-bar { display: none; }
}

/* Wide — 1280px+ */
@media (min-width: 1280px) {
  /* Big five in one row */
  .big-five__grid { grid-template-columns: repeat(5, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* --- Page header banner (inner pages) --------------------- */
.page-header {
  background: linear-gradient(135deg, #B83408 0%, var(--brick) 40%, #F09020 75%, var(--gold) 100%);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -5rem; right: -5rem;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  border: 4rem solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -3rem; left: -3rem;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  border: 2rem solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header .section-label { color: rgba(255,255,255,0.8); }
.page-header h1 { color: #fff; margin-bottom: 0.875rem; font-size: clamp(2rem, 5vw, 3rem); }
.page-header__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.75;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: underline; transition: color var(--transition); }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb svg { width: 12px; height: 12px; stroke: currentColor; flex-shrink: 0; }

/* --- Overview cards (home page) --------------------------- */
.overview-section {
  background: #fff;
  padding: 5rem 0;
}
.overview-section__header { margin-bottom: 3rem; }

.overview-grid { display: grid; gap: 1.5rem; }

.overview-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.overview-card:hover {
  border-color: var(--brick);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.overview-card__icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.overview-card__icon svg { width: 1.375rem; height: 1.375rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.overview-card__icon--orange { background: rgba(224,92,24,0.12); color: var(--brick); }
.overview-card__icon--amber  { background: rgba(240,160,16,0.14); color: var(--gold-dark); }
.overview-card__icon--dark   { background: rgba(30,10,2,0.09);   color: var(--navy); }
.overview-card__icon--green  { background: rgba(74,128,32,0.12);  color: var(--forest); }
.overview-card__icon--purple { background: rgba(128,64,168,0.12); color: var(--plum); }
.overview-card__icon--brick  { background: rgba(176,40,8,0.11);   color: #B02808; }

.overview-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.overview-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.overview-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}
.overview-card:hover .overview-card__cta { gap: 0.625rem; }

/* --- Scholarship section (who-we-help page) --------------- */
.scholarship-section {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  padding: 5rem 0;
  border-top: 4px solid var(--cream-dark);
}
.scholarship-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .scholarship-inner { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}
.scholarship-text .section-label { display: block; margin-bottom: 0.625rem; }
.scholarship-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.scholarship-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.scholarship-exams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.625rem;
}
.scholarship-exam-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(240,160,16,0.14);
  color: #8A5800;
  border: 1px solid rgba(240,160,16,0.3);
  border-radius: 2rem;
  padding: 0.375rem 0.875rem;
}
.scholarship-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.scholarship-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(240,160,16,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.scholarship-card__icon svg { width: 1.375rem; height: 1.375rem; stroke: var(--gold); }
.scholarship-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: #fff;
  margin-bottom: 1.375rem;
  line-height: 1.3;
}
.scholarship-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.scholarship-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}
.scholarship-card__list li svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  stroke: var(--gold);
}

/* --- CTA strip (shared bottom of each page) --------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -6rem; right: -6rem;
  width: 22rem; height: 22rem;
  border-radius: 50%;
  border: 4rem solid rgba(240,160,16,0.07);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -3rem; left: -3rem;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  border: 2rem solid rgba(224,92,24,0.07);
  pointer-events: none;
}
.cta-strip__inner { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; margin-bottom: 0.875rem; }
.cta-strip__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.cta-strip__bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-bottom: 2rem;
}
.cta-strip__bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.cta-strip__bullet::before {
  content: '✓';
  width: 1.25rem; height: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Nav active state ------------------------------------- */
.nav__link--active,
.nav__link--active:hover { color: #fff !important; }
.nav__link--active::after { width: 100% !important; }

/* --- Featured testimonial (home page single card) --------- */
.featured-testimonial {
  background: var(--cream);
  padding: 4.5rem 0;
}
.featured-testimonial__card {
  max-width: 780px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px solid var(--cream-dark);
  position: relative;
  box-shadow: var(--shadow-md);
}
.featured-testimonial__mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; right: 2rem;
  pointer-events: none;
  user-select: none;
}
.featured-testimonial__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #5A3820;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.featured-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.featured-testimonial__avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.featured-testimonial__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.featured-testimonial__name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.featured-testimonial__role { font-size: 0.8125rem; color: var(--muted); margin-top: 0.125rem; }
.featured-testimonial__link { display: block; text-align: center; margin-top: 1.5rem; }
.featured-testimonial__link a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brick);
  text-decoration: underline;
}

/* --- Responsive for new components ----------------------- */
@media (min-width: 640px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(3, 1fr); }
  .page-header { text-align: left; }
  .page-header__sub { margin-inline: 0; }
  .page-breadcrumb { display: inline-flex; }
}
