/* ============================================================
   NMLB STYLES — Education Brand
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #2C2C2C;
  background: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: 'Inter', sans-serif; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #1A1A1A;
  line-height: 1.25;
}

h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 40px; font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }

/* CONTAINERS */
.container { max-width: 1040px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* SECTION SPACING */
section { padding: 100px 0; }

/* SECTION LABEL */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1A3A52;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1A3A52;
  color: #FFFFFF;
  border: 2px solid #1A3A52;
  padding: 0 28px;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
}
.btn-primary:hover { background: #142d40; border-color: #142d40; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2C5F7A;
  border: 2px solid #A8C0CE;
  padding: 0 28px;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-secondary:hover { background: #1A3A52; color: #FFFFFF; border-color: #1A3A52; }

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 2px solid #FFFFFF;
  padding: 0 28px;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary-light:hover { background: #F0EDE6; border-color: #F0EDE6; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0 28px;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline-light:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.08); }

.btn-lg { height: 56px; font-size: 16px; padding: 0 36px; }
.btn-header { height: 42px; font-size: 14px; padding: 0 20px; }

.cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-group-centered { justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E4DC;
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  line-height: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img { height: 36px; max-width: 180px; }
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #1A3A52; }

.btn-header { margin-left: 8px; flex-shrink: 0; }

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A3A52;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV DROPDOWN */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid #E8E4DC;
  padding: 20px 32px 28px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDE6;
}

.mobile-nav-cta { width: 100%; margin-top: 16px; height: 52px; font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #FAF9F6;
  padding: 96px 0 100px;
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 52px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 19px;
  color: #444444;
  line-height: 1.75;
}

.hero-bullets {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto 40px;
  padding: 0;
}

.hero-bullets li {
  font-size: 15px;
  color: #444444;
  padding-left: 20px;
  position: relative;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #1A3A52;
  border-radius: 50%;
}

.hero .cta-group { justify-content: center; margin-bottom: 20px; }

.hero-trust-note {
  font-size: 13px;
  color: #888888;
  font-family: 'Inter', sans-serif;
}

/* HOME HERO — SPLIT LAYOUT */
.hero-home {
  padding: 72px 0 80px;
  text-align: left;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-home-content h1 {
  max-width: none;
  margin: 0 0 20px;
  font-size: 48px;
}

.hero-home-content .section-label {
  margin-bottom: 14px;
}

.hero-home-content .hero-sub {
  max-width: none;
  margin: 0 0 32px;
  font-size: 18px;
}

.hero-cta-group {
  justify-content: flex-start !important;
  margin-bottom: 16px;
}

.hero-home-content .hero-trust-note {
  text-align: left;
}

.hero-home-image {
  position: relative;
}

.hero-home-image::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 58%;
  height: 58%;
  background: #D6E5EF;
  border-radius: 10px;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 48px rgba(26, 58, 82, 0.22);
  position: relative;
  z-index: 1;
}

/* ============================================================
   TRUST INTRO
   ============================================================ */
.trust-intro {
  background: #FFFFFF;
  padding: 80px 0;
}

.trust-statement {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2C2C2C;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.6;
  font-style: italic;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: #FAF9F6;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  background: #EEF3F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.trust-card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: #1A3A52;
  color: #FAF9F6;
  text-align: center;
}

.problem h2 {
  color: #FAF9F6;
  margin-bottom: 20px;
  font-size: 38px;
}

.problem .section-lead {
  color: #A8BED0;
  margin-bottom: 40px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
}

.problem-list li {
  font-size: 17px;
  color: #D8E8F4;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  line-height: 1.5;
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
}

/* ============================================================
   TRANSFORMATION
   ============================================================ */
.transformation {
  background: #FAF9F6;
  text-align: center;
}

.transformation h2 { margin-bottom: 52px; }

.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px;
}

.transform-col {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 32px 32px;
}

.transform-before { border-top: 3px solid #D0392B; }
.transform-after { border-top: 3px solid #2D7A4F; }

.transform-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  margin-bottom: 20px;
}

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.transform-list li {
  font-size: 15px;
  color: #444444;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid #F0EDE6;
  position: relative;
  line-height: 1.5;
}
.transform-list li:last-child { border-bottom: none; }

.transform-before .transform-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 2px;
  background: #D0392B;
}

.transform-after .transform-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  color: #2D7A4F;
  font-size: 13px;
  font-weight: 700;
}

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 28px;
  color: #1A3A52;
  padding-top: 80px;
}

.transform-note {
  font-size: 15px;
  color: #666666;
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-for {
  background: #F0EDE6;
}

.who-for-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.who-for-header p {
  font-size: 18px;
  color: #555555;
  line-height: 1.7;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 32px;
}

.checklist li {
  font-size: 16px;
  color: #333333;
  padding: 14px 16px 14px 36px;
  border-bottom: 1px solid #E0DDD5;
  position: relative;
  line-height: 1.5;
}
.checklist li:nth-last-child(-n+2) { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 8px;
  top: 14px;
  color: #1A3A52;
  font-size: 14px;
  font-weight: 700;
}

.who-note {
  font-size: 15px;
  color: #666666;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.who-for .btn-primary { display: table; margin: 0 auto; }

/* ============================================================
   WHO IT'S NOT FOR
   ============================================================ */
.who-not {
  background: #FFFFFF;
}

.who-not h2 { margin-bottom: 36px; }

.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 28px;
}

.not-list li {
  font-size: 16px;
  color: #555555;
  padding: 14px 16px 14px 32px;
  border-bottom: 1px solid #F0EDE6;
  position: relative;
  line-height: 1.5;
}
.not-list li:nth-last-child(-n+2) { border-bottom: none; }
.not-list li::before {
  content: '×';
  position: absolute;
  left: 8px;
  top: 13px;
  color: #BBBBBB;
  font-size: 16px;
  font-weight: 400;
}

.who-not-close {
  font-size: 15px;
  color: #666666;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: #1A3A52;
  color: #FAF9F6;
}

.how-it-works h2 { color: #FAF9F6; }

.how-it-works .section-lead {
  color: #A8BED0;
  max-width: 680px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.process-step {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.process-step:hover { background: rgba(255,255,255,0.08); }

.process-num {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  color: #FAF9F6;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-text {
  font-size: 15px;
  color: #C8D8E8;
  line-height: 1.6;
}

.format-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 40px 44px;
  max-width: 680px;
  margin: 0 auto;
}

.format-card h3 {
  color: #FAF9F6;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.format-grid { display: flex; flex-direction: column; gap: 0; }

.format-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}
.format-row:last-child { border-bottom: none; }

.format-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A9BB4;
  font-weight: 500;
}

.format-val {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #FAF9F6;
  font-weight: 600;
  text-align: right;
}

/* ============================================================
   INSIDE EACH CLASS
   ============================================================ */
.inside-class {
  background: #FAF9F6;
}

.inside-class h2 { margin-bottom: 16px; }

.class-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #E8E4DC;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.class-step {
  background: #FFFFFF;
  padding: 28px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.class-step-num {
  width: 36px;
  height: 36px;
  background: #EEF3F7;
  color: #1A3A52;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.class-step-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.class-step-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.class-example {
  background: #EEF3F7;
  border-left: 3px solid #1A3A52;
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum {
  background: #F0EDE6;
}

.curriculum h2 { margin-bottom: 16px; }

.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.week-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 3px solid #1A3A52;
}

.week-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A3A52;
  margin-bottom: 10px;
}

.week-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.week-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
}

/* ============================================================
   TUTORS
   ============================================================ */
.tutors {
  background: #FFFFFF;
}

.tutors h2 { margin-bottom: 16px; }

.tutor-qualities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.tutor-quality {
  background: #F0EDE6;
  color: #444444;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
}

.tutor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tutor-card {
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tutor-photo-placeholder {
  width: 80px;
  height: 80px;
  background: #F0EDE6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tutor-info { flex: 1; }

.tutor-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3px;
}

.tutor-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1A3A52;
  font-weight: 500;
  margin-bottom: 12px;
}

.tutor-bio {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 12px;
}

.tutor-detail {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.included {
  background: #FAF9F6;
}

.included h2 { margin-bottom: 40px; }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 800px;
}

.included-list {
  display: flex;
  flex-direction: column;
}

.included-list li {
  font-size: 16px;
  color: #333333;
  padding: 14px 16px 14px 32px;
  border-bottom: 1px solid #E8E4DC;
  position: relative;
  line-height: 1.5;
}
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 14px;
  color: #1A3A52;
  font-size: 13px;
  font-weight: 700;
}

/* ============================================================
   SPEAKING REVIEW
   ============================================================ */
.speaking-review {
  background: #FFFFFF;
  padding: 80px 0;
}

.review-card {
  background: #FAF9F6;
  border: 1px solid #E8E4DC;
  border-left: 4px solid #1A3A52;
  border-radius: 8px;
  padding: 40px 44px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card-header h2 {
  font-size: 26px;
  margin-bottom: 0;
}

.review-included-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1A3A52;
  background: #E8EFF4;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.review-lead {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-summary-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.review-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.review-list li {
  font-size: 15px;
  color: #4A4A4A;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.review-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A3A52;
  font-weight: 700;
  font-size: 14px;
}

.review-disclaimer {
  font-size: 13px;
  color: #888888;
  line-height: 1.6;
  border-top: 1px solid #E8E4DC;
  padding-top: 16px;
  margin-bottom: 0;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
  background: #F0EDE6;
}

.bonuses h2 { margin-bottom: 16px; }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bonus-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 3px solid #1A3A52;
}

.bonus-card-wide {
  grid-column: 1 / -1;
}

.bonus-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A3A52;
  margin-bottom: 10px;
}

.bonus-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1.4;
}

.bonus-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}

.bonus-note {
  margin-top: 10px;
  font-size: 13px !important;
  color: #888888 !important;
  font-style: italic;
}

.bonus-disclaimer {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   EXPAND / COLLAPSE PATTERN
   ============================================================ */
.expand-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.expand-chevron {
  flex-shrink: 0;
  color: #AAAAAA;
  margin-top: 4px;
  transition: transform 0.3s ease, color 0.2s ease;
}

.expand-item.open .expand-chevron {
  transform: rotate(180deg);
  color: #1A3A52;
}

.expand-body {
  overflow: hidden;
  transition: max-height 0.38s ease, padding-top 0.3s ease;
  padding-top: 0;
}

.expand-trigger:hover .expand-chevron {
  color: #1A3A52;
}

/* Bonus card expand */
.bonus-card .bonus-trigger-label { flex: 1; }
.bonus-card.open .expand-body { padding-top: 14px; }

/* Week card expand */
.week-card .week-trigger-label { flex: 1; }
.week-card.open .expand-body { padding-top: 12px; }

/* Class step expand */
.class-step-content.expand-item { flex: 1; }
.class-step-content.open .expand-body { padding-top: 8px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: #FFFFFF;
}

.pricing h2 { margin-bottom: 16px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card-main {
  border: 2px solid #1A3A52;
  border-radius: 8px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: #1A3A52;
  color: #FAF9F6;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-offer-type {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pricing-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #1A3A52;
  line-height: 1;
}

.price-currency {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #888888;
}

.pricing-equiv {
  font-size: 13px;
  color: #888888;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-payment-options {
  background: #FAF9F6;
  border-radius: 6px;
  padding: 20px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  font-size: 14px;
  color: #444444;
  line-height: 1.5;
}
.payment-option strong { color: #1A1A1A; }

.pricing-includes {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.pricing-includes li {
  font-size: 14px;
  color: #444444;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #F0EDE6;
  position: relative;
  line-height: 1.5;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #1A3A52;
  font-size: 12px;
  font-weight: 700;
}

.pricing-cta { width: 100%; }
.pricing-cta-secondary { width: 100%; }

/* ============================================================
   GUARANTEES
   ============================================================ */
.guarantees {
  background: #FAF9F6;
}

.guarantees h2 { margin-bottom: 40px; }

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guarantee-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 36px 32px;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background: #EEF3F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.guarantee-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.guarantee-offer-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1A3A52;
  margin-bottom: 16px;
}

.guarantee-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee-conditions {
  font-size: 13px !important;
  color: #888888 !important;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #F0EDE6;
  text-align: center;
}

.testimonials h2 { margin-bottom: 12px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-top: 48px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #1A3A52;
}

.testimonial-quote {
  font-size: 15px;
  color: #444444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F0EDE6;
  padding-top: 18px;
}

.testimonial-initials {
  width: 40px;
  height: 40px;
  background: #1A3A52;
  color: #FAF9F6;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2px;
}

.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888888;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #FFFFFF;
}

.faq h2 { margin-bottom: 48px; text-align: center; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E8E4DC;
}

.faq-item {
  border-bottom: 1px solid #E8E4DC;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 44px 20px 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: #1A3A52; }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #1A3A52;
  transition: transform 0.25s;
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 40px 20px 0;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: #1A1A1A;
  color: #FAF9F6;
  text-align: center;
}

.final-cta .cta-group { justify-content: center; }

.final-cta h2 {
  color: #FAF9F6;
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 40px;
}

.final-cta p {
  font-size: 18px;
  color: #AAAAAA;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D0D0D;
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555555;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 4px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666666;
  transition: color 0.2s;
}
.footer-links a:hover { color: #AAAAAA; }

.footer-bottom {
  border-top: 1px solid #1E1E1E;
  padding-top: 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555555;
}

.footer-bottom a {
  color: #666666;
  text-decoration: none;
}
.footer-bottom a:hover { color: #AAAAAA; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E8E4DC;
  padding: 12px 16px;
  z-index: 90;
  justify-content: center;
}

.mobile-sticky-cta.visible { display: flex; }

.btn-mobile {
  width: 100%;
  height: 52px;
  font-size: 15px;
}

/* ============================================================
   MOBILE RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {

  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  section { padding: 72px 0; }

  .container, .container-narrow { padding: 0 20px; }

  /* HEADER */
  .site-nav { display: none; }
  .btn-header { display: none; }
  .mobile-menu-btn { display: flex; }

  /* HERO */
  .hero { padding: 64px 0 72px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  .hero .cta-group { flex-direction: column; align-items: stretch; }

  /* HOME HERO SPLIT — MOBILE */
  .hero-home { padding: 48px 0 56px; text-align: center; }
  .hero-home-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-home-content h1 { font-size: 32px; }
  .hero-home-content .hero-sub { font-size: 17px; }
  .hero-cta-group { justify-content: center !important; flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-lg { width: 100%; justify-content: center; }
  .hero-home-content .hero-trust-note { text-align: center; }
  .hero-img { height: 240px; border-radius: 10px; }
  .hero .cta-group .btn-lg { width: 100%; justify-content: center; }

  /* TRUST */
  .trust-cards { grid-template-columns: 1fr; gap: 16px; }
  .trust-statement { font-size: 18px; }

  /* PROBLEM */
  .problem h2 { font-size: 28px; }

  /* TRANSFORMATION */
  .transform-grid { grid-template-columns: 1fr; }
  .transform-arrow { padding: 16px 0; font-size: 24px; }

  /* WHO FOR */
  .checklist { grid-template-columns: 1fr; }
  .checklist li:nth-last-child(-n+2) { border-bottom: 1px solid #E0DDD5; }
  .checklist li:last-child { border-bottom: none; }

  /* WHO NOT */
  .not-list { grid-template-columns: 1fr; }
  .not-list li:nth-last-child(-n+2) { border-bottom: 1px solid #F0EDE6; }
  .not-list li:last-child { border-bottom: none; }

  /* HOW IT WORKS */
  .process-steps { grid-template-columns: 1fr; }
  .format-card { padding: 28px 24px; }

  /* CLASS STEPS */
  .class-steps { grid-template-columns: 1fr; }

  /* CURRICULUM */
  .weeks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* TUTORS */
  .tutor-cards { grid-template-columns: 1fr; }
  .tutor-card { flex-direction: column; gap: 16px; }

  /* INCLUDED */
  .included-grid { grid-template-columns: 1fr; }

  /* BONUSES */
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card-wide { grid-column: auto; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }

  /* GUARANTEES */
  .guarantee-grid { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FINAL CTA */
  .final-cta h2 { font-size: 28px; }
  .cta-group-centered { flex-direction: column; align-items: stretch; }
  .cta-group-centered .btn-lg { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* MOBILE STICKY */
  .mobile-sticky-cta.visible { display: flex; justify-content: center; }
}

@media (max-width: 480px) {
  .weeks-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  h2 { font-size: 26px; }
}

/* ============================================================
   ABOUT NMLB
   ============================================================ */
.about-nmlb {
  background: #FFFFFF;
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 17px; color: #444444; line-height: 1.8; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  overflow: hidden;
}

.about-pillar {
  display: flex;
  gap: 16px;
  padding: 24px 24px;
  border-bottom: 1px solid #E8E4DC;
  align-items: flex-start;
}
.about-pillar:last-child { border-bottom: none; }

.about-pillar-icon {
  width: 40px;
  height: 40px;
  background: #EEF3F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-pillar-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.about-pillar-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* ============================================================
   CLASS EXAMPLES
   ============================================================ */
.class-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.class-example-card {
  background: #EEF3F7;
  border-left: 3px solid #1A3A52;
  border-radius: 0 8px 8px 0;
  padding: 28px 28px;
}

.class-example-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A3A52;
  margin-bottom: 8px;
}

.class-example-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.class-example-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.class-example-steps li {
  font-size: 14px;
  color: #444444;
  line-height: 1.55;
}

.class-example-steps li span {
  font-weight: 700;
  color: #1A3A52;
  margin-right: 4px;
}

/* ============================================================
   WHY SMALL GROUPS
   ============================================================ */
.small-groups {
  background: #FFFFFF;
  padding: 100px 0;
}

.small-groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.small-groups-text h2 { margin-bottom: 20px; }
.small-groups-text p { font-size: 17px; color: #444444; line-height: 1.8; margin-bottom: 16px; }

.small-groups-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-group-card {
  background: #FAF9F6;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 24px 24px;
  border-left: 4px solid #1A3A52;
}

.small-group-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A3A52;
  line-height: 1;
}

.small-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.small-group-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* ============================================================
   TEACHING APPROACH
   ============================================================ */
.tutor-role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tutor-role-card {
  background: #FAF9F6;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 28px 24px;
}

.tutor-role-icon {
  width: 48px;
  height: 48px;
  background: #EEF3F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tutor-role-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.tutor-role-card p { font-size: 14px; color: #555555; line-height: 1.7; }

.tutor-standards {
  background: #F0EDE6;
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 24px;
}

.tutor-standards-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1A3A52;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.tutor-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.tutor-checklist li {
  font-size: 15px;
  color: #333333;
  padding: 10px 16px 10px 28px;
  border-bottom: 1px solid #E0DDD5;
  position: relative;
  line-height: 1.5;
}
.tutor-checklist li:last-child,
.tutor-checklist li:nth-last-child(2) { border-bottom: none; }
.tutor-checklist li::before {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 10px;
  color: #1A3A52;
  font-size: 13px;
  font-weight: 700;
}

.tutor-trust-note {
  font-size: 14px;
  color: #888888;
  font-style: italic;
  text-align: center;
}

/* ============================================================
   STUDENT EXPECTATIONS
   ============================================================ */
.student-expectations {
  background: #FAF9F6;
  padding: 100px 0;
}

.expectations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.expectations-text h2 { margin-bottom: 20px; }
.expectations-text p { font-size: 17px; color: #444444; line-height: 1.8; margin-bottom: 16px; }

.expectations-note {
  font-size: 15px !important;
  color: #888888 !important;
  font-style: italic;
  border-left: 3px solid #1A3A52;
  padding-left: 16px;
}

.expectations-checklist {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  overflow: hidden;
}

.expectations-checklist li {
  font-size: 16px;
  color: #333333;
  padding: 16px 20px 16px 48px;
  border-bottom: 1px solid #F0EDE6;
  position: relative;
  line-height: 1.5;
}
.expectations-checklist li:last-child { border-bottom: none; }
.expectations-checklist li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 16px;
  color: #1A3A52;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   WHAT YOU WILL NOT FIND HERE
   ============================================================ */
.what-not {
  background: #1A3A52;
  color: #FAF9F6;
  padding: 100px 0;
}

.what-not h2 { color: #FAF9F6; margin-bottom: 16px; }
.what-not .section-lead { color: #A8BED0; }

.what-not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.what-not-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.what-not-x {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  color: #A8BED0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.what-not-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FAF9F6;
  display: block;
  margin-bottom: 6px;
}

.what-not-text p {
  font-size: 14px;
  color: #A8BED0;
  line-height: 1.65;
}

/* ============================================================
   ENROLLMENT PROCESS
   ============================================================ */
.enrollment {
  background: #F0EDE6;
  padding: 100px 0;
}

.enrollment-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.enrollment-header h2 { margin-bottom: 16px; }
.enrollment-header p { font-size: 17px; color: #555555; line-height: 1.75; }

.enrollment-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #D8D4CC;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.enrollment-step {
  background: #FFFFFF;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.enrollment-num {
  width: 40px;
  height: 40px;
  background: #1A3A52;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.enrollment-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.enrollment-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

.enrollment-cta { text-align: center; }

.enrollment-steps-inline {
  display: block;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid #E8E4DC;
}

.enrollment-inline-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 20px;
}

.enrollment-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.enrollment-step-mini {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.enrollment-step-mini .enrollment-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1A3A52;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ============================================================
   PRICING ADDITIONS
   ============================================================ */
.pricing-flag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A3A52;
  margin-bottom: 8px;
}

.pricing-flag-secondary {
  color: #666666;
}

.pricing-transparency {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888888;
  margin-bottom: 16px;
  font-style: italic;
}

.private-clarification {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #FAF9F6;
  border-radius: 6px;
  border-left: 2px solid #D0C8B8;
}

/* ============================================================
   GUARANTEE ADDITIONS
   ============================================================ */
.guarantee-intro {
  font-size: 17px;
  color: #555555;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ============================================================
   TESTIMONIAL ADDITIONS
   ============================================================ */
.testimonials-grid-4 {
  grid-template-columns: repeat(2, 1fr) !important;
  margin-top: 40px;
}

.testimonial-privacy {
  font-size: 13px;
  color: #999999;
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   CLASS PHOTOS STRIP
   ============================================================ */
.class-photos {
  margin-bottom: 56px;
}

.class-photos-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #999999;
  text-align: center;
  margin-bottom: 20px;
}

.class-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.class-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.class-photo-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease;
  filter: brightness(0.97);
}

.class-photo-item:hover img {
  transform: scale(1.02);
}

.class-photo-caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888888;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .class-examples { grid-template-columns: 1fr; }
  .small-groups-grid { grid-template-columns: 1fr; gap: 40px; }
  .tutor-role-cards { grid-template-columns: 1fr; }
  .tutor-standards { padding: 24px 20px; }
  .tutor-checklist { grid-template-columns: 1fr; }
  .tutor-checklist li:nth-last-child(2) { border-bottom: 1px solid #E0DDD5; }
  .tutor-checklist li:last-child { border-bottom: none; }
  .expectations-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-not-grid { grid-template-columns: 1fr; }
  .enrollment-steps { grid-template-columns: 1fr; }
  .enrollment-steps-row { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-grid-4 { grid-template-columns: 1fr !important; }
  .class-photos-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .class-photos-grid .class-photo-item:last-child { display: none; }
}

/* ============================================================
   LOGO AS LINK
   ============================================================ */
a.logo { text-decoration: none; }

/* ============================================================
   NAV — ACTIVE STATE & DROPDOWN
   ============================================================ */
.nav-active { color: #1A3A52; font-weight: 700; }

.nav-caret {
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  opacity: 0.5;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 240px;
  padding-top: 20px;
  padding-bottom: 8px;
  z-index: 200;
  transition: opacity 0.15s ease, visibility 0s linear 0.2s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  padding: 10px 20px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-link:hover { background: #FAF9F6; color: #1A3A52; }

/* Mobile sub-items */
.mobile-nav-sub {
  font-size: 14px !important;
  color: #666666 !important;
  padding-left: 20px !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D0D0D;
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: #888888;
  line-height: 1.7;
  max-width: 240px;
}

.footer-nav-group {
  display: flex;
  gap: 56px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555555;
  margin-bottom: 4px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888888;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover { color: #CCCCCC; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222222;
  padding-top: 24px;
}

.footer-copy {
  font-size: 13px;
  color: #555555;
}

.footer-policy {
  font-size: 13px;
  color: #555555;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: #FFFFFF;
  padding: 80px 0 72px;
  text-align: center;
  border-top: 4px solid #1A3A52;
}

.page-hero-h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 19px;
  color: #555555;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission {
  background: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.mission h2 { margin-bottom: 24px; }

.mission-body {
  font-size: 19px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-support {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  font-style: italic;
}

.mission-dark {
  background: #1A3A52;
}

.mission-dark h2,
.mission-dark .section-label { color: #FFFFFF; }

.mission-dark .mission-body { color: rgba(255,255,255,0.9); }
.mission-dark .mission-support { color: rgba(255,255,255,0.65); }

/* ============================================================
   WHO WE HELP (4-card grid)
   ============================================================ */
.who-help {
  padding: 100px 0;
  background: #FAF9F6;
}

.who-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.who-help-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.who-help-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

.who-help-icon {
  width: 44px;
  height: 44px;
  background: #EEF2F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.who-help-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.who-help-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* ============================================================
   METHOD SECTION
   ============================================================ */
.method {
  background: #1A3A52;
  padding: 100px 0;
}

.method h2 { color: #FFFFFF; }
.method .section-label { color: rgba(255,255,255,0.55); }
.method .section-lead { color: rgba(255,255,255,0.75); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.method-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px 22px;
}

.method-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.method-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values {
  background: #F0EDE6;
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.value-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  background: #EEF2F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #1A3A52;
}

.value-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* ============================================================
   PROGRAMS OVERVIEW CARDS
   ============================================================ */
.programs-overview {
  background: #FFFFFF;
  padding: 100px 0;
}

.programs-detail {
  padding: 60px 0 100px;
}

.programs-detail .programs-cards {
  margin-top: 0;
}

.programs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.program-overview-card {
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.program-overview-main {
  background: #1A3A52;
  color: #FFFFFF;
}

.program-overview-secondary {
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  color: #1A1A1A;
}

.program-overview-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.program-overview-badge-secondary {
  color: #1A3A52;
  background: #EEF2F5;
}

.program-overview-main h2,
.program-overview-main h3 { color: #FFFFFF; margin-bottom: 14px; }
.program-overview-secondary h2,
.program-overview-secondary h3 { color: #1A1A1A; margin-bottom: 14px; }

.program-overview-main > p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.program-overview-secondary > p { color: #555555; margin-bottom: 24px; }

.program-overview-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-overview-list li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.program-overview-main .program-overview-list li { color: rgba(255,255,255,0.85); }
.program-overview-main .program-overview-list li::before { background: rgba(255,255,255,0.6); }

.program-overview-secondary .program-overview-list li { color: #444444; }
.program-overview-secondary .program-overview-list li::before { background: #1A3A52; }

.program-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.program-overview-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.program-overview-main .program-overview-price { color: #FFFFFF; }
.program-overview-secondary .program-overview-price { color: #1A3A52; }

.program-overview-price span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}

.program-overview-payment {
  font-size: 12px;
  margin-bottom: 28px;
}

.program-overview-main .program-overview-payment { color: rgba(255,255,255,0.55); }
.program-overview-secondary .program-overview-payment { color: #888888; }

.program-overview-main .btn-primary-light,
.program-overview-main a.btn-primary-light { margin-top: auto; }
.program-overview-secondary .btn-secondary { margin-top: auto; }
.program-overview-main a,
.program-overview-secondary a { align-self: flex-start; }

/* ============================================================
   CLASS EXPERIENCE SECTION (home)
   ============================================================ */
.class-experience {
  background: #F0EDE6;
  padding: 100px 0;
}

.class-experience .class-photos-grid {
  margin-top: 40px;
}

/* ============================================================
   ABOUT PREVIEW (home)
   ============================================================ */
.about-preview {
  background: #FFFFFF;
  padding: 100px 0;
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-preview-text h2 { margin-bottom: 20px; }
.about-preview-text p { color: #555555; margin-bottom: 28px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison {
  background: #FAF9F6;
  padding: 100px 0;
  text-align: center;
}

.comparison h2 { margin-bottom: 48px; }

.comparison-recommended {
  display: inline-block;
  background: #B8860B;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 12px;
  margin-left: 10px;
  vertical-align: middle;
}

.comparison-table tbody td:nth-child(2) {
  background: rgba(26, 58, 82, 0.04);
}

.comparison-table thead .comparison-th-main {
  border-left: 2px solid rgba(255,255,255,0.2);
  border-right: 2px solid rgba(255,255,255,0.2);
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.comparison-table thead {
  background: #1A3A52;
  color: #FFFFFF;
}

.comparison-th-label {
  padding: 18px 24px;
  width: 22%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-th-main,
.comparison-th-secondary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14px;
}

.comparison-th-secondary {
  background: rgba(255,255,255,0.08);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #E8E4DC;
}

.comparison-table tbody tr:nth-child(odd) {
  background: #FFFFFF;
}

.comparison-row-label {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 13px;
  color: #444444;
  vertical-align: top;
}

.comparison-table tbody td:not(.comparison-row-label) {
  padding: 16px 24px;
  color: #444444;
  vertical-align: top;
}

.comparison-note {
  font-size: 15px;
  color: #666666;
  margin-bottom: 24px;
  font-style: italic;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.about-story { padding: 60px 0 100px; }
.teaching-philosophy { padding: 100px 0; background: #F0EDE6; }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.philosophy-text h2 { margin-bottom: 20px; }
.philosophy-text p { color: #444444; margin-bottom: 16px; line-height: 1.75; }

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.philosophy-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
}

.philosophy-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #1A3A52;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   PRIVATE PRACTICE PAGE
   ============================================================ */
.private-topics { padding: 100px 0; background: #FAF9F6; }

.private-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.private-topic-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 28px 24px;
}

.private-topic-card h3 {
  font-size: 16px;
  color: #1A3A52;
  margin-bottom: 10px;
}

.private-topic-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

.private-topics-note {
  margin-top: 32px;
  font-size: 14px;
  color: #888888;
  font-style: italic;
}

.private-vs-group { padding: 100px 0; }
.pricing-grid-single { grid-template-columns: 1fr; justify-items: center; }
.pricing-card-centered { max-width: 560px; width: 100%; }
.guarantee-grid-single { grid-template-columns: 1fr; justify-items: center; }
.guarantee-grid-single .guarantee-card { max-width: 600px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: #444444; margin-bottom: 16px; line-height: 1.75; }

.contact-info-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
  padding: 24px;
  background: #FAF9F6;
  border-radius: 8px;
}

.contact-info-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #333333;
}

.contact-info-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #1A3A52;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.contact-note {
  background: #FFF8E7;
  border: 1px solid #E8D5A0;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #555555;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-email-label {
  font-size: 13px;
  color: #888888;
  margin-bottom: 6px;
}

.contact-email-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A3A52;
  text-decoration: none;
}
.contact-email-link:hover { text-decoration: underline; }

.contact-booking-card {
  background: #FAF9F6;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 36px 32px;
  margin-bottom: 24px;
}

.contact-booking-card h3 { margin-bottom: 12px; }
.contact-booking-card p { color: #555555; margin-bottom: 24px; }
.contact-booking-btn { width: 100%; }
.contact-booking-note { font-size: 12px; color: #888888; text-align: center; margin-top: 14px; margin-bottom: 0 !important; }

.contact-programs-links { display: flex; flex-direction: column; gap: 12px; }
.contact-programs-label { font-size: 12px; color: #888888; margin-bottom: 4px; }

.contact-program-link {
  display: block;
  border: 1px solid #E8E4DC;
  border-radius: 6px;
  padding: 14px 18px;
  background: #FFFFFF;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.contact-program-link:hover { border-color: #1A3A52; background: #FAF9F6; }

.contact-program-link-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A3A52;
  margin-bottom: 4px;
}

.contact-program-link-desc {
  font-size: 12px;
  color: #888888;
}

.contact-expect { padding: 80px 0; background: #FAF9F6; }
.contact-expect h2 { text-align: center; margin-bottom: 48px; }

/* ============================================================
   FINAL CTA (dark) — already exists, just adding dark
   ============================================================ */
.final-cta-dark {
  background: #1A1A1A;
  text-align: center;
}

.final-cta-dark h2 { color: #FFFFFF; }
.final-cta-dark p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE — MULTI-PAGE NEW SECTIONS
   ============================================================ */
@media (max-width: 768px) {
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-group { flex-wrap: wrap; gap: 32px; }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero-h1 { font-size: 32px; }
  .page-hero-sub { font-size: 16px; }

  /* Who help */
  .who-help-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Method */
  .method-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Programs cards */
  .programs-cards { grid-template-columns: 1fr; }
  .program-overview-card { padding: 32px 24px; }

  /* About preview */
  .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Comparison table */
  .comparison-table { font-size: 12px; }
  .comparison-th-label,
  .comparison-row-label,
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 14px; }

  /* Philosophy */
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Private topics */
  .private-topics-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Class experience on home */
  .class-experience .class-photos-grid { grid-template-columns: 1fr 1fr; }
  .class-experience .class-photos-grid .class-photo-item:last-child { display: none; }
}

@media (max-width: 480px) {
  .who-help-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .private-topics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

/* Hero */
.careers-hero {
  background: #FFFFFF;
  padding: 96px 0 80px;
  text-align: center;
  border-top: 4px solid #1A3A52;
}

.careers-hero .section-label { margin-bottom: 16px; }

.careers-hero h1 {
  font-size: 48px;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.careers-hero-sub {
  font-size: 19px;
  color: #4A4A4A;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.65;
}

.careers-hero-body {
  font-size: 17px;
  color: #666666;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.careers-comp-note {
  font-size: 14px;
  color: #888888;
  margin-bottom: 32px;
}

.careers-hero .cta-group { justify-content: center; }

/* Section wrappers */
.careers-section { padding: 100px 0; }
.careers-section-cream { background: #FAF9F6; }
.careers-section-beige { background: #F0EDE6; }

.careers-section-navy {
  background: #1A3A52;
  color: #FAF9F6;
}

.careers-section-navy .section-label-light {
  color: rgba(255,255,255,0.55);
}

.careers-navy-heading {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.careers-section .section-label { margin-bottom: 12px; }

/* Role grid */
.careers-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.careers-role-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.careers-role-icon {
  width: 44px;
  height: 44px;
  background: #EFF3F7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.careers-role-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

/* Checklist */
.careers-checklist {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.careers-checklist li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid #E8E4DC;
  line-height: 1.6;
}

.careers-checklist li:nth-last-child(-n+2) { border-bottom: none; }

.careers-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A3A52;
  font-weight: 700;
  font-size: 15px;
}

/* Teaching focus grid */
.careers-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.careers-focus-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 28px 24px;
}

.careers-focus-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.careers-focus-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

/* Two-column requirements layout */
.careers-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.careers-requirements-intro {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-top: 16px;
}

.careers-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-requirements-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid #E8E4DC;
  line-height: 1.6;
}

.careers-requirements-list li:last-child { border-bottom: none; }

.careers-requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A3A52;
  font-weight: 700;
  font-size: 15px;
}

/* Process steps */
.careers-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.careers-process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.careers-process-step:last-child { border-bottom: none; }

.careers-process-num {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.careers-process-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.careers-process-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* How to apply */
.careers-email-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F0EDE6;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0 16px;
  width: fit-content;
}

.careers-email-address {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A3A52;
}

.careers-copy-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A3A52;
  background: #FFFFFF;
  border: 1px solid #D4D0C8;
  border-radius: 4px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.careers-copy-btn:hover { background: #F0EDE6; }

.careers-subject-line {
  font-size: 15px;
  color: #666666;
  margin-bottom: 32px;
}

.careers-checklist-block {
  background: #FFFFFF;
  border: 1px solid #E8E4DC;
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.careers-checklist-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.careers-apply-list {
  padding-left: 20px;
  margin: 0;
}

.careers-apply-list li {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 10px;
}

.careers-apply-list li:last-child { margin-bottom: 0; }

.careers-apply-sublist {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.careers-apply-sublist li {
  font-size: 14px;
  color: #555555;
  margin-bottom: 4px;
}

.careers-video-note {
  background: #FAF9F6;
  border-left: 3px solid #1A3A52;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 8px;
}

.careers-video-note p {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

/* Footer careers */
.footer-careers-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-careers-link {
  font-weight: 600;
}

/* Final CTA overrides for careers */
.careers-section-navy + .final-cta.final-cta-dark .section-label-light {
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 768px) {
  .careers-hero h1 { font-size: 32px; }
  .careers-hero-sub { font-size: 17px; }
  .careers-hero .cta-group { flex-direction: column; align-items: stretch; }
  .careers-hero .cta-group .btn-lg { width: 100%; justify-content: center; }
  .careers-role-grid { grid-template-columns: 1fr 1fr; }
  .careers-checklist { grid-template-columns: 1fr; }
  .careers-checklist li:nth-last-child(-n+2) { border-bottom: 1px solid #E8E4DC; }
  .careers-checklist li:last-child { border-bottom: none; }
  .careers-focus-grid { grid-template-columns: 1fr 1fr; }
  .careers-two-col { grid-template-columns: 1fr; gap: 32px; }
  .careers-email-block { flex-wrap: wrap; width: 100%; }
  .careers-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .careers-role-grid { grid-template-columns: 1fr; }
  .careers-focus-grid { grid-template-columns: 1fr; }
}
