:root {
    /* OKLCH-tuned brand colors. Neutrals tinted toward navy. */
    --navy: oklch(38% 0.09 235);          /* #0B4B72 reference */
    --navy-deep: oklch(28% 0.08 235);
    --navy-ink: oklch(22% 0.05 235);
    --orange: oklch(64% 0.20 38);          /* #EE5203 reference */
    --orange-deep: oklch(54% 0.19 38);
    --lime: oklch(76% 0.17 130);           /* #8DC63F reference */
    --lime-dark: oklch(66% 0.16 130);
    --ink: oklch(22% 0.02 235);
    --gray: oklch(46% 0.012 235);
    --gray-light: oklch(62% 0.008 235);
    --paper: oklch(98% 0.006 60);          /* warm tinted paper */
    --paper-warm: oklch(95% 0.014 60);
    --line: oklch(92% 0.012 235);
    --line-warm: oklch(88% 0.018 60);
    --shadow-color: 11 75 114;

    /* Fluid type scale, 1.28 ratio */
    --step-0: clamp(15px, 0.95rem + 0.1vw, 17px);
    --step-1: clamp(17px, 1.05rem + 0.2vw, 20px);
    --step-2: clamp(22px, 1.25rem + 0.5vw, 28px);
    --step-3: clamp(28px, 1.6rem + 1vw, 38px);
    --step-4: clamp(34px, 2rem + 1.8vw, 52px);
    --step-5: clamp(44px, 2.4rem + 3vw, 76px);

    /* Spacing scale */
    --s-1: 8px;
    --s-2: 14px;
    --s-3: 24px;
    --s-4: 40px;
    --s-5: 64px;
    --s-6: 96px;
    --s-7: 128px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; text-decoration: none; }
  p { max-width: 68ch; }

  /* ===== NAV ===== */
  nav.top {
    background: var(--paper);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(140%);
  }
  nav.top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .logo { display: inline-flex; align-items: center; }
  .logo img { height: 52px; width: auto; display: block; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 180ms cubic-bezier(0.22,1,0.36,1);
  }
  .nav-links a:hover { color: var(--orange); }
  .btn {
    display: inline-block;
    background: var(--lime);
    color: var(--navy-ink);
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: transform 220ms cubic-bezier(0.22,1,0.36,1), background-color 220ms;
    border: none;
    cursor: pointer;
  }
  .btn:hover { background: var(--lime-dark); transform: translateY(-2px); }
  .btn-lg { padding: 19px 38px; font-size: 16px; }
  .btn-orange { background: var(--orange); color: var(--paper); }
  .btn-orange:hover { background: var(--orange-deep); }

  /* ===== HERO ===== */
  .hero {
    background:
      radial-gradient(ellipse 80% 60% at 90% 0%, oklch(95% 0.05 38 / 0.55), transparent 60%),
      linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
    padding: clamp(60px, 7vw, 100px) 0 clamp(72px, 8vw, 120px);
    overflow: hidden;
    position: relative;
  }
  .hero .container-wide {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: oklch(64% 0.20 38 / 0.10);
    color: var(--orange-deep);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }
  .hero h1 {
    font-size: var(--step-5);
    line-height: 1.02;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    max-width: 14ch;
  }
  .hero h1 .accent {
    font-family: 'Courgette', cursive;
    font-weight: 400;
    color: var(--orange);
    letter-spacing: 0;
    display: inline-block;
    position: relative;
  }
  .hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -2px;
    height: 4px;
    background: var(--lime);
    border-radius: 2px;
  }
  .hero p.lede {
    font-size: var(--step-1);
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 52ch;
  }
  .hero .cta-row {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero .cta-row .secondary {
    color: var(--navy);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    padding: 2px 0;
    transition: border-color 200ms;
  }
  .hero .cta-row .secondary:hover { border-bottom-color: var(--orange); }
  .trust-line {
    margin-top: 36px;
    font-size: 12.5px;
    color: var(--gray-light);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
  }
  .trust-line .dot { color: var(--lime-dark); }

  /* ===== HERO COMPOSITION: editorial photo collage ===== */
  .hero-stage {
    position: relative;
    min-height: 580px;
    isolation: isolate;
  }
  /* Brand-color burst behind the photos: energy + depth, no decoration-for-decoration's-sake. */
  .hero-burst {
    position: absolute;
    top: 4%;
    right: 6%;
    width: 62%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, oklch(76% 0.17 130 / 0.55), oklch(64% 0.20 38 / 0.18) 60%, transparent 78%);
    z-index: 0;
    filter: blur(8px);
    animation: heroBurst 14s ease-in-out infinite;
  }
  .hero-ring {
    position: absolute;
    top: 32%;
    left: -4%;
    width: 38%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px dashed oklch(64% 0.20 38 / 0.45);
    z-index: 0;
    animation: heroSpin 38s linear infinite;
  }
  /* Three photos at varied sizes and angles. No Kris. */
  .hero-photo {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0 28px 60px -22px oklch(28% 0.08 235 / 0.45),
      0 0 0 1px oklch(28% 0.08 235 / 0.08),
      inset 0 0 0 6px var(--paper);
  }
  .hero-photo .caption {
    position: absolute;
    left: 12px; bottom: 12px;
    background: oklch(28% 0.08 235 / 0.88);
    color: var(--paper);
    padding: 6px 11px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
  }
  /* Lead photo: real Summit event crowd shot, large, slight right tilt. */
  .hero-photo.lead {
    top: 0;
    right: 0;
    width: 76%;
    aspect-ratio: 3 / 2;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/07/20181025_CCSS_Day2_564-1024x683-1.jpg');
    transform: rotate(1.6deg);
    z-index: 2;
    animation: heroFloatA 9s ease-in-out infinite;
  }
  /* Curriculum photo: lower-left, larger angle, overlaps slightly. */
  .hero-photo.stage {
    bottom: 4%;
    left: 0;
    width: 50%;
    aspect-ratio: 4 / 3;
    background-image: url('https://childcaresuccess.com/wp-content/uploads/2019/11/Childcare_learning_center-home1-min.png');
    transform: rotate(-3.2deg);
    z-index: 3;
    animation: heroFloatB 11s ease-in-out infinite;
  }
  /* Member portrait: real owner, top-left peek. */
  .hero-photo.team {
    top: 6%;
    left: -4%;
    width: 32%;
    aspect-ratio: 4 / 5;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/julie-roy-3-sq.jpg');
    background-position: center top;
    transform: rotate(-2.4deg);
    z-index: 1;
    animation: heroFloatC 13s ease-in-out infinite;
  }
  .hero-photo.team::after {
    content: 'Julie · 9 schools';
    position: absolute;
    left: 10px; bottom: 10px;
    background: oklch(28% 0.08 235 / 0.9);
    color: var(--paper);
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
  /* Member proof card: floats over lower-right corner. */
  .hero-stat-card {
    position: absolute;
    right: -6px;
    bottom: 22px;
    background: var(--paper);
    border-radius: 16px;
    padding: 16px 18px 16px 16px;
    box-shadow:
      0 28px 60px -18px oklch(28% 0.08 235 / 0.45),
      0 0 0 1px oklch(28% 0.08 235 / 0.06);
    z-index: 4;
    transform: rotate(2.6deg);
    max-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: heroFloatD 10s ease-in-out infinite;
  }
  .hero-stat-card .avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/kari-boetcher-b-sq-300x300.jpg');
    background-size: cover;
    background-position: center top;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--lime);
  }
  .hero-stat-card .from-to {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 900;
    line-height: 1;
  }
  .hero-stat-card .from-to .from {
    font-size: 20px;
    color: var(--gray-light);
    text-decoration: line-through;
    text-decoration-color: oklch(64% 0.20 38 / 0.6);
  }
  .hero-stat-card .from-to .arrow {
    color: var(--orange);
    font-size: 18px;
  }
  .hero-stat-card .from-to .to {
    font-size: 34px;
    color: var(--navy);
    letter-spacing: -1.2px;
  }
  .hero-stat-card .meta {
    margin-top: 6px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 900;
    color: var(--orange-deep);
  }
  .hero-stat-card .who {
    margin-top: 2px;
    font-size: 11px;
    color: var(--gray);
    font-weight: 700;
  }
  .hero-tag {
    position: absolute;
    top: 12px;
    left: 30%;
    background: var(--lime);
    color: var(--navy-ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 6px;
    z-index: 5;
    transform: rotate(-3deg);
    box-shadow: 0 8px 18px -6px oklch(28% 0.08 235 / 0.35);
  }
  /* Motion: gentle float, transforms only. Different periods to avoid sync. */
  @keyframes heroFloatA {
    0%, 100% { transform: rotate(1.6deg) translate3d(0, 0, 0); }
    50%      { transform: rotate(1.9deg) translate3d(-4px, -6px, 0); }
  }
  @keyframes heroFloatB {
    0%, 100% { transform: rotate(-3.2deg) translate3d(0, 0, 0); }
    50%      { transform: rotate(-2.6deg) translate3d(3px, -4px, 0); }
  }
  @keyframes heroFloatC {
    0%, 100% { transform: rotate(-2.4deg) translate3d(0, 0, 0); }
    50%      { transform: rotate(-1.8deg) translate3d(-3px, 5px, 0); }
  }
  @keyframes heroFloatD {
    0%, 100% { transform: rotate(2.6deg) translate3d(0, 0, 0); }
    50%      { transform: rotate(3.4deg) translate3d(-2px, -8px, 0); }
  }
  @keyframes heroBurst {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.08); opacity: 0.85; }
  }
  @keyframes heroSpin {
    to { transform: rotate(360deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-photo, .hero-stat-card, .hero-burst, .hero-ring { animation: none; }
  }

  /* ===== OWNERS HELPING OWNERS ===== */
  .ohelp {
    padding: var(--s-7) 0;
    background: var(--paper);
  }
  .ohelp .container {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
  }
  .section-eyebrow {
    color: var(--orange-deep);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12.5px;
    margin-bottom: 18px;
  }
  h2.section {
    font-size: var(--step-4);
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -1.4px;
    font-weight: 900;
    margin-bottom: 22px;
    max-width: 22ch;
  }
  h2.section .script {
    font-family: 'Courgette', cursive;
    font-weight: 400;
    color: var(--orange);
    letter-spacing: 0;
  }
  .ohelp p {
    font-size: var(--step-0);
    color: var(--gray);
    margin-bottom: 18px;
    max-width: 56ch;
  }
  .ohelp .signoff {
    margin-top: 28px;
    font-size: 14px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 0.5px;
  }
  /* Asymmetric photo collage: vary sizes and offsets */
  .ohelp-photos {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 220px 180px;
    gap: 14px;
    position: relative;
  }
  .ohelp-photos .ph {
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 40px -16px oklch(28% 0.08 235 / 0.25);
  }
  .ohelp-photos .ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, oklch(22% 0.05 235 / 0.82) 100%);
  }
  .ohelp-photos .ph span {
    position: absolute;
    left: 14px; bottom: 12px;
    color: var(--paper);
    font-size: 11.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    z-index: 1;
  }
  .ohelp-photos .ph.a {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/07/20181025_CCSS_Day2_564-1024x683-1.jpg');
  }
  .ohelp-photos .ph.b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/paul-nina-lemon-b-sq.jpg');
    background-position: center top;
    transform: translateY(-18px);
  }
  .ohelp-photos .ph.c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/Donna-jensen-b-sq.jpg');
    background-position: center top;
    transform: translateY(18px);
  }

  /* ===== STATS ===== */
  .stats {
    background: var(--navy);
    color: var(--paper);
    padding: var(--s-7) 0;
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: '';
    position: absolute;
    top: -120px; right: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, oklch(64% 0.20 38 / 0.18), transparent 70%);
    pointer-events: none;
  }
  .stats .section-eyebrow { color: var(--lime); }
  .stats h2.section {
    color: var(--paper);
    max-width: 22ch;
    margin-bottom: 56px;
  }
  /* Vary card sizes: bento, not identical grid */
  .stats-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    position: relative;
    z-index: 1;
  }
  .stat-card {
    background: oklch(38% 0.09 235 / 0.4);
    border: 1px solid oklch(76% 0.17 130 / 0.18);
    border-radius: 20px;
    padding: 32px 26px;
    transition: transform 280ms cubic-bezier(0.22,1,0.36,1), background-color 280ms;
  }
  .stat-card:hover {
    background: oklch(38% 0.09 235 / 0.65);
    transform: translateY(-3px);
  }
  .stat-card.hero { grid-column: 1 / 2; grid-row: 1 / 3; padding: 40px 32px; }
  .stat-card.b { grid-column: 2 / 3; grid-row: 1 / 2; }
  .stat-card.c { grid-column: 3 / 4; grid-row: 1 / 2; }
  .stat-card.d { grid-column: 2 / 4; grid-row: 2 / 3; }
  .stat-card .num {
    font-size: clamp(48px, 4vw, 68px);
    font-weight: 900;
    line-height: 1;
    color: var(--lime);
    letter-spacing: -2px;
    margin-bottom: 14px;
  }
  .stat-card.hero .num { font-size: clamp(64px, 5.5vw, 96px); }
  .stat-card .num.orange { color: var(--orange); }
  .stat-card .label {
    font-size: 14.5px;
    line-height: 1.4;
    font-weight: 900;
    color: oklch(98% 0.006 60 / 0.94);
  }
  .stat-card .sub {
    font-size: 12.5px;
    margin-top: 8px;
    color: oklch(98% 0.006 60 / 0.6);
    font-weight: 500;
  }

  /* ===== BUSINESS GAP NARRATIVE ===== */
  .gap-block {
    padding: var(--s-7) 0;
    background: var(--paper-warm);
    position: relative;
  }
  .gap-block .container {
    max-width: 900px;
    text-align: center;
  }
  .gap-block h2.section {
    font-size: var(--step-4);
    margin-left: auto;
    margin-right: auto;
    max-width: 18ch;
  }
  .gap-block .body-copy {
    font-size: var(--step-1);
    line-height: 1.55;
    color: var(--ink);
    margin: 0 auto 24px;
    max-width: 58ch;
  }
  /* Replace side-stripe pull with a centered, typographically anchored quote */
  .pull {
    position: relative;
    font-size: clamp(22px, 1.6rem + 0.6vw, 30px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    text-align: center;
    margin: 48px auto;
    max-width: 28ch;
    padding: 24px 0;
  }
  .pull::before {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto 24px;
  }
  .pull::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--lime);
    border-radius: 2px;
    margin: 24px auto 0;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--paper);
    padding: var(--s-7) 0;
  }
  .testimonials-head { text-align: center; margin-bottom: 64px; }
  .testimonials-head h2.section { margin-left: auto; margin-right: auto; }
  .testimonials-head p {
    font-size: var(--step-0);
    color: var(--gray);
    max-width: 56ch;
    margin: 0 auto;
  }
  /* Bento variety: one feature card spans two columns, the rest stack */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
  }
  .testimonial {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: transform 280ms cubic-bezier(0.22,1,0.36,1), box-shadow 280ms;
    display: flex;
    flex-direction: column;
  }
  .testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px -20px oklch(28% 0.08 235 / 0.22);
  }
  .testimonial.kari { grid-column: span 4; background: var(--navy); color: var(--paper); border-color: transparent; }
  .testimonial.julie { grid-column: span 2; }
  .testimonial.donna { grid-column: span 3; }
  .testimonial.lemon { grid-column: span 3; background: var(--paper-warm); }
  .testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .testimonial .photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--lime);
  }
  .testimonial.kari .photo { box-shadow: 0 0 0 3px var(--orange); }
  .testimonial.lemon .photo { width: 56px; height: 56px; }
  .testimonial .photo.kari-img  { background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/kari-boetcher-b-sq-300x300.jpg'); }
  .testimonial .photo.julie-img { background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/julie-roy-3-sq.jpg'); }
  .testimonial .photo.donna-img { background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/Donna-jensen-b-sq.jpg'); }
  .testimonial .photo.lemon-img { background-image: url('https://www.childcaresuccess.com/wp-content/uploads/2019/08/paul-nina-lemon-b-sq.jpg'); }
  .testimonial .meta { flex: 1; }
  .testimonial .name {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
  }
  .testimonial.kari .name { color: var(--paper); }
  .testimonial .location {
    font-size: 12.5px;
    color: var(--gray-light);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .testimonial.kari .location { color: oklch(98% 0.006 60 / 0.6); }
  .testimonial .quote {
    font-size: var(--step-0);
    line-height: 1.5;
    color: var(--ink);
    flex: 1;
  }
  .testimonial.kari .quote { color: oklch(98% 0.006 60 / 0.94); font-size: clamp(18px, 1.1rem + 0.3vw, 22px); line-height: 1.45; }
  .testimonial .result {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 900;
    color: var(--orange-deep);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .testimonial.kari .result { color: var(--lime); }
  .testimonial .result::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }

  /* ===== PATHWAYS ===== */
  .pathways {
    background: var(--paper-warm);
    padding: var(--s-7) 0;
  }
  .pathways-head {
    text-align: center;
    margin-bottom: 64px;
  }
  .pathways-head h2.section { margin-left: auto; margin-right: auto; }
  .pathways-head p {
    font-size: var(--step-0);
    color: var(--gray);
    max-width: 56ch;
    margin: 0 auto;
  }
  /* Asymmetric: first card is wider featured entry, then a tight row */
  .pathway-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  .pathway {
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 280ms cubic-bezier(0.22,1,0.36,1), box-shadow 280ms;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .pathway:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -22px oklch(28% 0.08 235 / 0.25);
  }
  .pathway .body {
    padding: 28px 26px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .pathway .label {
    font-size: 11.5px;
    font-weight: 900;
    color: var(--orange-deep);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }
  .pathway h3 {
    font-size: clamp(20px, 1.2rem + 0.3vw, 26px);
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
  .pathway .price {
    font-size: 13px;
    font-weight: 900;
    color: var(--gray);
    margin-bottom: 18px;
  }
  .pathway p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 22px;
    flex: 1;
  }
  .pathway .more {
    color: var(--navy);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .pathway .more::after {
    content: '→';
    color: var(--orange);
    font-size: 18px;
    transition: transform 220ms cubic-bezier(0.22,1,0.36,1);
  }
  .pathway:hover .more::after { transform: translateX(4px); }

  /* Layout sizes for variety */
  .pathway.p1 { grid-column: span 6; background: var(--navy); color: var(--paper); }
  .pathway.p1 h3 { color: var(--paper); font-size: clamp(28px, 1.6rem + 1vw, 40px); max-width: 18ch; }
  .pathway.p1 p { color: oklch(98% 0.006 60 / 0.78); font-size: var(--step-1); max-width: 60ch; }
  .pathway.p1 .label { color: var(--lime); }
  .pathway.p1 .price { color: oklch(98% 0.006 60 / 0.65); }
  .pathway.p1 .more { color: var(--paper); }
  .pathway.p1 .body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 40px;
    padding: 44px 40px;
  }
  .pathway.p1 .featured-tag {
    position: absolute;
    top: 28px; right: 28px;
    background: var(--orange);
    color: var(--paper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
  }
  .pathway.p2 { grid-column: span 2; }
  .pathway.p3 { grid-column: span 2; }
  .pathway.p4 { grid-column: span 2; }

  /* ===== AUTHORITY TRIAD ===== */
  .authority {
    padding: var(--s-6) 0;
    background: var(--paper);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .authority h3 {
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-light);
    font-weight: 900;
    margin-bottom: 36px;
  }
  .authority .triad {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 6vw, 80px);
    flex-wrap: wrap;
    align-items: center;
  }
  .authority .badge {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .authority .badge .num {
    font-size: clamp(48px, 3vw, 64px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -2px;
  }
  .authority .badge .lbl {
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.25;
  }
  .authority .badge .lbl strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 2px;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--paper);
    padding: var(--s-7) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, oklch(64% 0.20 38 / 0.18), transparent 70%);
    pointer-events: none;
  }
  .final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, oklch(76% 0.17 130 / 0.10), transparent 70%);
    pointer-events: none;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta h2 {
    font-size: var(--step-4);
    line-height: 1.08;
    font-weight: 900;
    color: var(--paper);
    margin: 0 auto 28px;
    letter-spacing: -1.4px;
    max-width: 18ch;
  }
  .final-cta h2 .script {
    font-family: 'Courgette', cursive;
    font-weight: 400;
    color: var(--lime);
  }
  .final-cta p {
    font-size: var(--step-1);
    color: oklch(98% 0.006 60 / 0.82);
    margin: 0 auto 36px;
    max-width: 56ch;
  }
  .final-cta .roi-line {
    margin-top: 32px;
    font-size: 14px;
    color: oklch(98% 0.006 60 / 0.65);
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    color: oklch(98% 0.006 60 / 0.6);
    padding: 56px 0 36px;
    text-align: center;
    font-size: 13.5px;
  }
  footer .logo {
    justify-content: center;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
  }
  footer .logo img { height: 48px; }
  footer p { margin: 0 auto 8px; max-width: 60ch; }

  /* ===== MOTION RESPECT ===== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      transition: none !important;
      animation: none !important;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 980px) {
    .hero .container-wide,
    .ohelp .container { grid-template-columns: 1fr; gap: 56px; }
    .hero-stage { min-height: 420px; max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card.hero { grid-column: 1 / 3; grid-row: auto; }
    .stat-card.b, .stat-card.c, .stat-card.d { grid-column: auto; grid-row: auto; }
    .stat-card.d { grid-column: 1 / 3; }
    .pathway.p1 .body { grid-template-columns: 1fr; gap: 20px; padding: 32px 28px; }
    .pathway.p2, .pathway.p3, .pathway.p4 { grid-column: span 3; }
    .testimonial.kari { grid-column: span 6; }
    .testimonial.julie { grid-column: span 6; }
    .testimonial.donna, .testimonial.lemon { grid-column: span 6; }
    .nav-links { display: none; }
    .ohelp-photos { grid-template-rows: 200px 160px; }
  }

  @media (max-width: 560px) {
    .pathway.p2, .pathway.p3, .pathway.p4 { grid-column: span 6; }
    .hero-stat-card { right: 0; bottom: 8px; max-width: 180px; padding: 14px 16px; }
    .hero-stat-card .from-to .to { font-size: 32px; }
    .trust-line { gap: 14px; font-size: 11.5px; }
    .ohelp-photos .ph.b { transform: none; }
    .ohelp-photos .ph.c { transform: none; }
  }
