  /* ── SHARED UTILITIES ── */
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  }
  .product-label { color: var(--product); }

  .btn-primary {
    background: var(--terracotta); color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.2); }
  .btn-product {
    background: var(--product); color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  }
  .btn-product:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.2); }
  .btn-secondary {
    background: transparent; color: var(--dark-teal);
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    border: 2px solid var(--dark-teal); transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-secondary:hover { background: var(--dark-teal); color: white; transform: translateY(-2px); }
  .btn-outline-white {
    background: transparent; color: white;
    padding: 1rem 2rem; border-radius: 3rem;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    border: 2px solid rgba(250,245,237,0.3); transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(250,245,237,0.08); transform: translateY(-2px); }


  /* ════════════════════════════════════
     PRODUCT HERO
  ════════════════════════════════════ */
  .product-hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }

  /* Left — content */
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 10rem 4rem 6rem 5rem;
    background: var(--dark-teal);
    position: relative; z-index: 2;
  }
  .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px),
      repeating-linear-gradient(90deg, rgba(212,168,83,0.02) 0, rgba(212,168,83,0.02) 1px, transparent 0, transparent 60px);
    pointer-events: none;
  }

  /* Product brand pill */
  .product-brand-pill {
    display: inline-flex; align-items: center; gap: 0.7rem;
    width: fit-content; margin-bottom: 2rem;
    animation: fadeUp 0.7s ease both;
  }
  .product-brand-logo {
    background: var(--product);
    border-radius: 10px; padding: 0.45rem 0.9rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem; font-weight: 700; color: white;
    letter-spacing: -0.01em;
  }
  .product-brand-sep { color: rgba(250,245,237,0.2); font-size: 1.2rem; }
  .product-brand-parent {
    font-size: 0.72rem; font-weight: 600; color: rgba(250,245,237,0.45);
    text-transform: uppercase; letter-spacing: 0.08em;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--product-light);
    border: 1px solid var(--product-border);
    border-radius: 2rem; padding: 0.4rem 1rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--sage); letter-spacing: 0.08em;
    text-transform: uppercase; width: fit-content; margin-bottom: 1.8rem;
    animation: fadeUp 0.7s ease 0.05s both;
  }

  .hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 3.8vw, 3.6rem);
    font-weight: 900; line-height: 1.06;
    color: white; letter-spacing: -0.03em; margin-bottom: 1.6rem;
    position: relative; z-index: 1;
    animation: fadeUp 0.7s ease 0.1s both;
  }
  .hero-left h1 em { font-style: italic; color: var(--warm-gold); }

  .hero-left .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem; font-weight: 300; line-height: 1.85;
    color: rgba(250,245,237,0.7); max-width: 480px; margin-bottom: 2.5rem;
    position: relative; z-index: 1;
    animation: fadeUp 0.7s ease 0.15s both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    position: relative; z-index: 1;
    animation: fadeUp 0.7s ease 0.2s both;
  }

  /* Quick facts bar below CTA */
  .hero-facts {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212,168,83,0.12);
    position: relative; z-index: 1;
    animation: fadeUp 0.7s ease 0.25s both;
  }
  .hero-fact { display: flex; flex-direction: column; }
  .hf-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; font-weight: 900;
    color: var(--warm-gold); line-height: 1;
  }
  .hf-lbl {
    font-size: 0.72rem; color: rgba(250,245,237,0.45);
    text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem;
  }

  /* Right — visual panel */
  .hero-right {
    position: relative; overflow: hidden;
    background: var(--product);
    animation: fadeIn 1s ease 0.2s both;
  }
  .hero-right-texture {
    position: absolute; inset: 0; opacity: 0.08;
    background-image:
      repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 40px),
      repeating-linear-gradient(-45deg, white 0, white 1px, transparent 0, transparent 40px);
    background-size: 40px 40px;
  }
  .hero-right-glow {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(212,168,83,0.2) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 75%, rgba(44,24,16,0.4) 0%, transparent 60%);
  }
  .hero-right-content {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1.2rem;
    padding: 8rem 2.5rem;
  }

  /* Floating feature cards in right panel */
  .feature-showcase {
    width: 100%; max-width: 340px;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .fs-main-card {
    background: rgba(250,245,237,0.1);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 20px; padding: 1.8rem 2rem;
    text-align: center;
  }
  .fs-main-icon { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
  .fs-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700; color: white;
    margin-bottom: 0.4rem;
  }
  .fs-main-sub { font-size: 0.82rem; color: rgba(250,245,237,0.6); line-height: 1.5; }
  .fs-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .fs-mini {
    background: rgba(250,245,237,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 1rem;
    text-align: center;
  }
  .fs-mini-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
  .fs-mini-label { font-size: 0.72rem; color: rgba(250,245,237,0.65); font-weight: 600; line-height: 1.3; }
  .fs-age-badge {
    background: var(--gold); color: var(--dark-teal);
    border-radius: 12px; padding: 0.8rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .fs-age-badge span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
  .fs-age-badge strong { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 900; }


  /* ════════════════════════════════════
     PRODUCT OVERVIEW STRIP
  ════════════════════════════════════ */
  .overview-strip {
    background: var(--product);
    padding: 0;
  }
  .overview-strip-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .ov-item {
    padding: 1.8rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 1rem;
  }
  .ov-item:last-child { border-right: none; }
  .ov-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .ov-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }
  .ov-value { font-size: 0.9rem; font-weight: 600; color: white; margin-top: 0.15rem; line-height: 1.3; }


  /* ════════════════════════════════════
     WHAT IS IT — ABOUT THE PRODUCT
  ════════════════════════════════════ */
  .about-product {
    padding: 7rem 5rem;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center;
  }
  .ap-left .section-label { margin-bottom: 0.8rem; }
  .ap-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 1.4rem;
  }
  .ap-left h2 em { font-style: italic; color: var(--terracotta); }
  .ap-left p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem; font-weight: 300; line-height: 1.85;
    color: var(--text-muted); margin-bottom: 1.1rem;
  }
  .ap-left .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

  /* Right: visual icon grid */
  .ap-right { display: flex; flex-direction: column; gap: 1rem; }
  .ap-card {
    background: white; border-radius: 18px;
    border: 1px solid rgba(196,98,45,0.1);
    padding: 1.4rem 1.6rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .ap-card:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(44,24,16,0.07); }
  .ap-card-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    background: var(--product-light);
  }
  .ap-card-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark-teal); margin-bottom: 0.3rem; }
  .ap-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }


  /* ════════════════════════════════════
     CURRICULUM / MODULES
  ════════════════════════════════════ */
  .curriculum {
    background: var(--soft-cream);
    padding: 8rem 5rem;
    position: relative; overflow: hidden;
  }
  .curriculum::after {
    content: '📚';
    position: absolute; right: 2rem; bottom: 0;
    font-size: 16rem; opacity: 0.05; pointer-events: none;
  }
  .curriculum-inner { max-width: 1200px; margin: 0 auto; }
  .curriculum-header { margin-bottom: 4rem; }
  .curriculum-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.8rem;
  }
  .curriculum-header h2 em { font-style: italic; color: var(--terracotta); }
  .curriculum-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); max-width: 600px;
  }

  /* Age-track tabs */
  .track-tabs {
    display: flex; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  }
  .track-tab {
    padding: 0.55rem 1.3rem; border-radius: 2rem;
    font-size: 0.8rem; font-weight: 600;
    border: 2px solid rgba(196,98,45,0.15);
    background: white; color: var(--text-muted);
    cursor: pointer; transition: all 0.25s;
  }
  .track-tab:hover { border-color: var(--product); color: var(--product); }
  .track-tab.active {
    background: var(--product); color: white; border-color: var(--product);
  }

  .modules-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
    margin-bottom: 3rem;
  }
  .module-card {
    background: white; border-radius: 20px;
    border: 1px solid rgba(196,98,45,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .module-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--product), var(--sage));
  }
  .module-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(44,24,16,0.09); }
  .module-card-top { padding: 1.8rem 1.8rem 1.2rem; }
  .mod-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem; font-weight: 700; color: var(--product);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.6rem;
  }
  .mod-icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
  .module-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--dark-teal);
    line-height: 1.25; margin-bottom: 0.5rem;
  }
  .module-card-top p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }
  .mod-divider { height: 1px; background: rgba(196,98,45,0.08); margin: 0 1.8rem; }
  .module-card-bottom { padding: 1.2rem 1.8rem 1.8rem; }
  .mod-topics { list-style: none; }
  .mod-topics li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    padding: 0.28rem 0; font-size: 0.8rem;
    color: var(--text-muted); line-height: 1.45;
  }
  .mod-topics li::before { content: '✓'; color: var(--product); font-weight: 700; flex-shrink: 0; }

  /* Curriculum download CTA */
  .curriculum-download {
    background: var(--dark-teal); border-radius: 22px; padding: 2.5rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
  }
  .curriculum-download::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 50px);
  }
  .cd-left { position: relative; z-index: 1; }
  .cd-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; color: white;
    letter-spacing: -0.02em; margin-bottom: 0.4rem;
  }
  .cd-left h3 em { font-style: italic; color: var(--gold); }
  .cd-left p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300; line-height: 1.7;
    color: rgba(250,245,237,0.6);
  }


  /* ════════════════════════════════════
     PRICING / ENROLMENT TIERS
  ════════════════════════════════════ */
  .pricing {
    padding: 8rem 5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .pricing-header { text-align: center; margin-bottom: 4rem; }
  .pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.8rem;
  }
  .pricing-header h2 em { font-style: italic; color: var(--terracotta); }
  .pricing-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: var(--text-muted); max-width: 540px; margin: 0 auto;
  }

  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .price-card {
    background: white; border-radius: 24px;
    border: 1px solid rgba(196,98,45,0.1);
    overflow: hidden; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }
  .price-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
  }
  .pc-starter::before { background: linear-gradient(90deg, var(--sage), #A8C5A0); }
  .pc-core::before   { background: linear-gradient(90deg, var(--product), var(--sage)); }
  .pc-premium::before { background: linear-gradient(90deg, var(--terracotta), var(--gold)); }

  .popular-badge {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: var(--product); color: white;
    font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.7rem; border-radius: 1rem;
    text-transform: uppercase; letter-spacing: 0.06em;
  }

  .price-card-top { padding: 2.2rem 2.2rem 1.6rem; }
  .pc-age-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 700;
    padding: 0.22rem 0.75rem; border-radius: 1rem;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.8rem;
  }
  .tag-starter { background: rgba(107,143,113,0.12); color: var(--sage); }
  .tag-core    { background: var(--product-light); color: var(--product); }
  .tag-premium { background: rgba(196,98,45,0.1); color: var(--terracotta); }

  .pc-icon { font-size: 2.2rem; display: block; margin-bottom: 0.8rem; }
  .price-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700; color: var(--dark-teal);
    margin-bottom: 0.4rem; line-height: 1.2;
  }
  .pc-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.5; }
  .pc-price-block { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.2rem; }
  .pc-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--dark-teal);
  }
  .pc-period { font-size: 0.8rem; color: var(--text-muted); }
  .pc-per-session { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.4rem; }

  .pc-divider { height: 1px; background: rgba(196,98,45,0.08); margin: 0 2.2rem; }
  .price-card-bottom { padding: 1.6rem 2.2rem 2.2rem; }
  .pc-features { list-style: none; }
  .pc-features li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    padding: 0.35rem 0; font-size: 0.83rem;
    color: var(--text); line-height: 1.5;
    border-bottom: 1px solid rgba(196,98,45,0.06);
  }
  .pc-features li:last-child { border-bottom: none; }
  .pc-features li::before { content: '✓'; color: var(--product); font-weight: 700; flex-shrink: 0; }
  .pc-cta {
    display: block; width: 100%; margin-top: 1.4rem;
    padding: 0.85rem; border-radius: 2rem;
    font-weight: 700; font-size: 0.88rem; text-align: center;
    text-decoration: none; cursor: pointer; transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
  }
  .pc-cta-outline {
    background: var(--soft-cream); color: var(--dark-teal);
    border: 2px solid var(--dark-teal);
  }
  .pc-cta-outline:hover { background: var(--dark-teal); color: white; }
  .pc-cta-fill {
    background: var(--product); color: white; border: none;
  }
  .pc-cta-fill:hover { background: var(--dark-teal); }
  .pc-cta-gold {
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: white; border: none;
  }
  .pc-cta-gold:hover { opacity: 0.9; transform: translateY(-1px); }


  /* ════════════════════════════════════
     HOW IT WORKS
  ════════════════════════════════════ */
  .how-it-works {
    background: var(--product);
    padding: 7rem 5rem;
    position: relative; overflow: hidden;
  }
  .how-it-works::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 50px),
      repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 0, transparent 50px);
    background-size: 50px 50px;
  }
  .how-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
  .how-header { text-align: center; margin-bottom: 4rem; }
  .how-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900; color: white;
    letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.8rem;
  }
  .how-header h2 em { font-style: italic; color: var(--warm-gold); }
  .how-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto;
  }

  .steps-row {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative; margin-bottom: 4rem;
  }
  .steps-row::before {
    content: '';
    position: absolute; top: 1.8rem;
    left: 10%; right: 10%; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(212,168,83,0.5) 0, rgba(212,168,83,0.5) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }
  .hiw-step { text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }
  .hiw-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold); color: var(--dark-teal);
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 16px rgba(212,168,83,0.4);
  }
  .hiw-step h5 {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 0.4rem;
  }
  .hiw-step p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

  /* Logistics info grid */
  .logistics-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  }
  .logistics-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px; padding: 1.6rem 1.4rem; text-align: center;
  }
  .lc-icon { font-size: 1.8rem; display: block; margin-bottom: 0.7rem; }
  .lc-title { font-size: 0.78rem; font-weight: 700; color: var(--warm-gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
  .lc-value { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }


  /* ════════════════════════════════════
     TESTIMONIALS
  ════════════════════════════════════ */
  .testimonials {
    background: var(--dark-teal);
    padding: 7rem 5rem;
    position: relative; overflow: hidden;
  }
  .testimonials::after {
    content: '"';
    position: absolute; top: -2rem; right: 3rem;
    font-family: 'Playfair Display', serif; font-size: 20rem; font-weight: 900;
    color: rgba(212,168,83,0.05); line-height: 1; pointer-events: none;
  }
  .testimonials .section-header { text-align: center; margin-bottom: 3.5rem; }
  .testimonials .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.8rem;
  }
  .testimonials .section-header h2 em { font-style: italic; color: var(--gold); }
  .testimonials .section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: rgba(250,245,237,0.6); max-width: 500px; margin: 0 auto;
  }
  .t-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem; max-width: 1100px; margin: 0 auto;
  }
  .t-card {
    background: rgba(250,245,237,0.05);
    border: 1px solid rgba(212,168,83,0.12);
    border-radius: 20px; padding: 2rem;
  }
  .t-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
  .t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.82); margin-bottom: 1.5rem;
  }
  .t-author { display: flex; align-items: center; gap: 0.8rem; }
  .t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--product), var(--sage));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .t-name { font-size: 0.88rem; font-weight: 600; color: white; }
  .t-role { font-size: 0.72rem; color: rgba(250,245,237,0.45); margin-top: 0.1rem; }


  /* ════════════════════════════════════
     FAQ
  ════════════════════════════════════ */
  .faq-section {
    background: var(--soft-cream);
    padding: 6rem 5rem;
  }
  .faq-inner { max-width: 1100px; margin: 0 auto; }
  .faq-header { text-align: center; margin-bottom: 3.5rem; }
  .faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.8rem;
  }
  .faq-header h2 em { font-style: italic; color: var(--terracotta); }
  .faq-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: var(--text-muted); max-width: 480px; margin: 0 auto;
  }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .faq-item {
    background: white; border-radius: 18px;
    border: 1px solid rgba(196,98,45,0.1);
    padding: 1.6rem 1.8rem; transition: box-shadow 0.3s;
  }
  .faq-item:hover { box-shadow: 0 8px 28px rgba(44,24,16,0.07); }
  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 0.96rem; font-weight: 700; color: var(--dark-teal);
    margin-bottom: 0.6rem; line-height: 1.3;
    display: flex; align-items: flex-start; gap: 0.7rem;
  }
  .faq-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--product-light); color: var(--product);
    font-size: 0.68rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .faq-a { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; padding-left: 2rem; }


  /* ════════════════════════════════════
     ENROLMENT CTA
  ════════════════════════════════════ */
  .enrol-section {
    padding: 7rem 5rem;
    background: linear-gradient(135deg, var(--product) 0%, #1A2E26 100%);
    position: relative; overflow: hidden; text-align: center;
  }
  .enrol-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }

  /* Mini enquiry form */
  .enrol-form {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px; padding: 2.5rem;
    margin-top: 3rem;
  }
  .enrol-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; color: white;
    letter-spacing: -0.02em; margin-bottom: 1.8rem;
  }
  .enrol-form h3 em { font-style: italic; color: var(--warm-gold); }
  .ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .ef-field { margin-bottom: 0; }
  .ef-field input, .ef-field select {
    width: 100%; padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: white;
    transition: border-color 0.3s; outline: none;
  }
  .ef-field input::placeholder { color: rgba(255,255,255,0.35); }
  .ef-field input:focus, .ef-field select:focus { border-color: var(--gold); }
  .ef-field select { color: rgba(255,255,255,0.55); }
  .ef-field select option { background: var(--product); color: white; }
  .ef-submit {
    width: 100%; margin-top: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--warm-gold));
    color: var(--dark-teal); border: none;
    padding: 1.1rem; border-radius: 3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s;
  }
  .ef-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,168,83,0.4); }
  .ef-note { font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }
  .enrol-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem;
  }
  .enrol-section h2 em { font-style: italic; color: var(--warm-gold); }
  .enrol-section > .enrol-inner > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.65);
  }


  /* ── FOOTER ── */
  footer {
    background: #0F0806;
    padding: 3rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.78rem; color: rgba(250,245,237,0.35); margin-top: 0.3rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(250,245,237,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(250,245,237,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════════════════════════
   PHASE 4 — PROGRAMS PAGE UPDATE
═══════════════════════════════════════════════════════════════ */

/* ── 5 SERVICE CARDS ──────────────────────────────────────── */
.services-section {
  padding: 7rem 5rem;
  background: white;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--dark-teal);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.services-header h2 em { font-style: italic; color: var(--terracotta); }
.services-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
/* last row: 2 cards centred — use CSS trick */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 1;
}
.services-grid::after {
  content: '';
  grid-column: span 1;
}
.service-card {
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(0,87,93,0.1);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 22px 22px 0 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44,24,16,0.1);
}
.service-card-featured {
  border-color: rgba(0,87,93,0.25);
  background: var(--dark-teal);
}
.service-card-featured::before {
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.svc-featured-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--dark-teal);
  font-size: 0.65rem; font-weight: 800;
  padding: 0.2rem 0.75rem; border-radius: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,87,93,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card-featured .svc-icon-wrap {
  background: rgba(255,255,255,0.12);
}
.svc-icon { font-size: 1.8rem; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card-featured h3 { color: white; }
.service-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card-featured p { color: rgba(250,245,237,0.75); }
.svc-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.svc-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.28rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.svc-list li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}
.service-card-featured .svc-list li { color: rgba(250,245,237,0.7); }
.service-card-featured .svc-list li::before { color: var(--gold); }
.svc-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-teal);
  text-decoration: none;
  border-bottom: 2px solid rgba(0,87,93,0.2);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
  margin-top: auto;
}
.svc-cta:hover { color: var(--terracotta); border-color: var(--terracotta); }
.svc-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 3rem;
  background: var(--gold);
  color: var(--dark-teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: all 0.3s;
  margin-top: auto;
}
.svc-cta-primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,83,0.3);
}
.svc-cta-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  margin-bottom: 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}
.svc-cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ── NOT SURE STRIP ───────────────────────────────────────── */
.not-sure-strip {
  background: var(--soft-cream);
  border-top: 1px solid rgba(0,87,93,0.08);
  border-bottom: 1px solid rgba(0,87,93,0.08);
  padding: 2.5rem 5rem;
}
.not-sure-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.not-sure-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.not-sure-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-teal);
}
.not-sure-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── AGE GROUP CARDS ──────────────────────────────────────── */
.age-groups-section {
  padding: 7rem 5rem;
  background: var(--cream);
}
.age-groups-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.age-groups-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.age-groups-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--dark-teal);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.age-groups-header h2 em { font-style: italic; color: var(--terracotta); }
.age-groups-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.age-group-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(0,87,93,0.1);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.age-group-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
}
.agc-green::before { background: linear-gradient(90deg, var(--sage), #A8C5A0); }
.agc-featured::before { background: linear-gradient(90deg, var(--product), var(--sage)); }
.agc-terracotta::before { background: linear-gradient(90deg, var(--terracotta), var(--gold)); }
.age-group-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }
.agc-featured {
  border-color: rgba(0,87,93,0.2);
  box-shadow: 0 8px 32px rgba(44,24,16,0.07);
}
.agc-popular {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--product);
  color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.agc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,87,93,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.agc-icon { font-size: 2rem; display: block; margin-bottom: 0.9rem; }
.age-group-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.age-group-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.agc-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}
.agc-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(0,87,93,0.06);
}
.agc-list li:last-child { border-bottom: none; }
.agc-list li::before {
  content: '✓';
  color: var(--product);
  font-weight: 700;
  flex-shrink: 0;
}
.agc-terracotta .agc-list li::before { color: var(--terracotta); }
.agc-green .agc-list li::before { color: var(--sage); }
.agc-cta-row { margin-top: auto; }
.agc-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 2rem;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--soft-cream);
  color: var(--dark-teal);
  border: 2px solid var(--dark-teal);
  transition: all 0.3s;
}
.agc-cta:hover { background: var(--dark-teal); color: white; }
.agc-cta-fill {
  background: var(--product);
  color: white;
  border-color: var(--product);
}
.agc-cta-fill:hover { background: var(--dark-teal); border-color: var(--dark-teal); }

/* ── PHASE 4 MOBILE RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .services-section,
  .age-groups-section { padding: 4rem 1.5rem; }
  .not-sure-strip { padding: 2rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .age-groups-grid { grid-template-columns: 1fr; }

  .not-sure-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .product-hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 8rem 1.5rem 4rem; }
    .overview-strip-inner { grid-template-columns: 1fr 1fr; }
    .ov-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .about-product { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
    .curriculum { padding: 5rem 1.5rem; }
    .modules-grid { grid-template-columns: 1fr; }
    .pricing { padding: 5rem 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .how-it-works { padding: 5rem 1.5rem; }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .steps-row::before { display: none; }
    .logistics-grid { grid-template-columns: 1fr 1fr; }
    .testimonials { padding: 5rem 1.5rem; }
    .t-grid { grid-template-columns: 1fr; }
    .faq-section { padding: 4rem 1.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .enrol-section { padding: 5rem 1.5rem; }
    .ef-row { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }