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

  :root {
    --forest: #0F5132;
    --forest-light: #0F5132;
    --forest-pale: #e6f4ee;
    --blue: #0F5132;
    --blue-light: #0F5132;
    --blue-pale: #e6f4ee;
    --cream: #FFF8E7;
    --cream-dark: #fef08a;
    --text-dark: #1F2933;
    --text-mid: #374151;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--forest);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: -1px;
  }

  .nav-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.2;
  }

  .nav-name span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-style: normal;
  }

  .nav-cta {
    background: var(--forest);
    color: var(--cream);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--forest-light); }

  /* HERO */
  .hero {
    background: var(--forest);
    color: var(--white);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(15,81,50,0.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(254,252,232,0.15);
    border: 1px solid rgba(254,252,232,0.3);
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    max-width: 780px;
    margin: 0 auto 1rem;
  }

  .hero h1 em {
    font-style: italic;
    color: #6BCF8F;
  }

  .hero-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(254,252,232,0.7);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .hero-cta {
    display: inline-block;
    background: #D4A72C;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(15,81,50,0.4);
  }

  .hero-cta:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream);
  }

  .hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
  }

  /* SECTION SHARED */
  section { padding: 5rem 2rem; }

  .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 620px;
    line-height: 1.7;
  }

  /* IS THIS YOU */
  .is-this-you {
    background: var(--cream);
    border-left: 5px solid var(--blue);
    padding: 2.5rem 3rem;
    border-radius: 0 12px 12px 0;
    margin: 0 auto 3rem;
    max-width: 760px;
  }

  .is-this-you p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .is-this-you p:last-child { margin-bottom: 0; }

  .is-this-you-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  /* PROCESS */
  .process-section { background: var(--cream); }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15,81,50,0.1);
  }

  .process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--forest);
  }

  .process-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .process-sub {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .process-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* WHAT YOU GET */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .benefit-card {
    background: var(--blue-pale);
    border: 1px solid #b7e4c7;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    padding-top: 0.3rem;
  }

  .benefit-cert {
    background: var(--forest-pale);
    border-color: #6BCF8F;
  }

  .benefit-cert .benefit-icon { background: var(--forest); }

  /* CONSULTANTS */
  .consultants-section { background: var(--white); }

  .consultant-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
    transition: box-shadow 0.2s;
  }

  .consultant-card:hover {
    box-shadow: 0 8px 30px rgba(15,81,50,0.08);
  }

  .consultant-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--forest-pale);
    border: 3px solid var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--forest);
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
  }

  .consultant-photo svg { opacity: 0.4; }

  .consultant-role {
    display: inline-block;
    background: var(--forest);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
  }

  .consultant-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.25rem;
  }

  .consultant-hook {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--blue);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
  }

  .consultant-bio {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* SCHOOLS */
  .schools-section { background: var(--cream); }

  .schools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    justify-content: center;
  }

  .school-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
    transition: all 0.2s;
  }

  .school-pill:hover {
    border-color: var(--forest);
    color: var(--forest);
    background: var(--forest-pale);
  }

  /* WHO WE HELP */
  .fit-section { background: var(--white); }

  .fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .fit-card {
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
  }

  .fit-card.yes {
    background: var(--forest-pale);
    border-color: #6BCF8F;
  }

  .fit-card.no {
    background: #fef2f2;
    border-color: #fecaca;
  }

  .fit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .fit-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .fit-badge.yes { background: var(--forest); color: white; }
  .fit-badge.no { background: #ef4444; color: white; }

  .fit-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .fit-card.yes .fit-card-title { color: var(--forest); }
  .fit-card.no .fit-card-title { color: #b91c1c; }

  .fit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .fit-list li {
    font-size: 0.88rem;
    color: var(--text-mid);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
  }

  .fit-list li::before {
    content: '—';
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--forest); }

  .testimonials-section .section-label { color: #6BCF8F; }
  .testimonials-section .section-title { color: var(--cream); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(134,239,172,0.4);
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
  }

  .testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6BCF8F;
  }

  .testimonial-school {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.2rem;
  }

  /* FAQ */
  .faq-section { background: var(--cream); }

  .faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    gap: 1rem;
    transition: background 0.15s;
  }

  .faq-question:hover { background: var(--cream); }

  .faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--forest);
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-item.open .faq-answer { max-height: 300px; }

  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  /* FINAL CTA */
  .final-cta-section {
    background: var(--blue);
    text-align: center;
    padding: 6rem 2rem;
  }

  .final-cta-section .section-title {
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 1rem;
  }

  .final-cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
  }

  .cta-btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .cta-sub {
    display: block;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
  }

  /* FOOTER */
  footer {
    background: #0a1a10;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
  }

  footer strong { color: rgba(255,255,255,0.8); }

  /* DIVIDER */
  .divider-arrow {
    text-align: center;
    margin: 0;
    line-height: 0;
    position: relative;
    z-index: 2;
  }

  /* RESPONSIVE */
  @media (max-width: 640px) {
    .consultant-card { grid-template-columns: 1fr; }
    .consultant-photo { margin: 0 auto; }
    .fit-grid { grid-template-columns: 1fr; }
    nav { padding: 0.75rem 1rem; }
    .is-this-you { padding: 1.5rem; }
    .hero { padding: 4rem 1.25rem 3rem; }
  }

  /* FEATURED IN */
  .featured-section {
    background: var(--cream);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border);
  }

  .featured-label {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 1.75rem;
  }

  .featured-grid {
    display: flex; flex-wrap: wrap;
    gap: 1rem; justify-content: center;
    max-width: 900px; margin: 0 auto;
  }

  .featured-pill {
    background: var(--white);
    border: 1.5px solid #0F5132;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.875rem; font-weight: 600;
    color: var(--forest);
    transition: all 0.2s;
  }

  .featured-pill:hover {
    background: var(--forest-pale);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15,81,50,0.15);
  }

  .featured-pill-icon {
    width: 28px; height: 28px;
    background: var(--forest);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #D4A72C; font-size: 0.75rem; font-weight: 700;
    flex-shrink: 0;
  }
