
  /* ── Shared ── */
  .hcp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 14px;
  }

  .hcp-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1.5px;
    background: var(--brand-cyan);
    flex-shrink: 0;
  }

  .hcp-eyebrow--light { color: var(--brand-teal); }
  .hcp-eyebrow--light::before { background: var(--brand-teal); }

  .hcp-section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin: 0;
  }

  .hcp-section-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-section-header {
    margin-bottom: 56px;
  }

  /* ── Buttons ── */
  .hcp-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    background: var(--brand-teal);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
    border: none;
    white-space: nowrap;
  }

  .hcp-btn-primary:hover { background: var(--brand-cyan); transform: translateY(-1px); }

  .hcp-btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.22s, color 0.22s;
    white-space: nowrap;
  }

  .hcp-btn-ghost:hover { border-color: var(--brand-navy); }

  .hcp-btn-whatsapp {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #25d366;
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
    white-space: nowrap;
  }

  .hcp-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

  /* ═══════════════
     HERO
  ═══════════════ */
  .hcp-hero {
    background: var(--white);
    padding: 30px 0 20px;
    border-bottom: 1px solid var(--border);
  }

.hcp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

  .hcp-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .hcp-hero-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-hero-sub {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .hcp-hero-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .hcp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Embed visual card */
  .hcp-embed-visual {
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }

  .hcp-embed-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .hcp-embed-list {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* display: flex;
    flex-direction: column; */
    gap: 14px;
  }

  .hcp-embed-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 5px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.22s, transform 0.22s;
  }

  .hcp-embed-item:hover { border-color: rgba(62,207,170,0.3); transform: translateX(4px); }

  .hcp-embed-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .hcp-icon--teal   { background: rgba(62,207,170,0.10); }
  .hcp-icon--cyan   { background: rgba(41,174,230,0.10); }
  .hcp-icon--navy   { background: rgba(13,31,45,0.07);   }
  .hcp-icon--warm   { background: rgba(245,166,35,0.10); }

  .hcp-embed-item span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
  }

  /* ═══════════════
     RESEARCH
  ═══════════════ */
  .hcp-research {
    background: var(--bg-subtle);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hcp-research-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  }

  .hcp-research-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-3px);
    border-color: rgba(62,207,170,0.25);
  }

  .hcp-rc--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
  }

  .hcp-rc-wide-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
  }

  .hcp-rc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .hcp-rc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
  }

  .hcp-rc-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  .hcp-rc-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-silver);
    background: rgba(143,168,184,0.12);
    border-radius: 4px;
    padding: 3px 10px;
    align-self: flex-start;
    margin-top: auto;
    white-space: nowrap;
  }

  .hcp-rc-tag--teal {
    color: var(--brand-teal);
    background: rgba(62,207,170,0.10);
    align-self: center;
    flex-shrink: 0;
  }

  /* ═══════════════
     GLIMPSE
  ═══════════════ */
  .hcp-glimpse {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-glimpse-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 560px;
  }

  /* 4 equal cards in a row */
  .hcp-glimpse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
  }

  /* Unwrap col — all 4 cards sit directly in the grid */
  .hcp-glimpse-col { display: contents; }

  /* Base card */
  .hcp-glimpse-card {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
    display: flex;
    flex-direction: column;
  }

  .hcp-glimpse-card:hover {
    border-color: rgba(62,207,170,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
  }

  /* Compact image — shorter ratio */
  .hcp-gc-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-subtle);
    flex-shrink: 0;
  }

  .hcp-gc--tall .hcp-gc-img { aspect-ratio: 4/3; }

  .hcp-gc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
  }

  .hcp-glimpse-card:hover .hcp-gc-img img { transform: scale(1.03); }

  /* Label area */
  .hcp-gc-label {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .hcp-gc-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-teal);
    background: rgba(62,207,170,0.09);
    border-radius: 4px;
    padding: 3px 9px;
    align-self: flex-start;
  }

  .hcp-gc-caption {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
  }

  .hcp-gc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Drive CTA bar */
  .hcp-glimpse-cta {
    margin-top: 32px;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hcp-glimpse-cta span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    flex: 1;
    min-width: 200px;
  }

  .hcp-glimpse-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--brand-navy);
    border-radius: 8px;
    padding: 9px 18px;
    transition: background 0.22s, color 0.22s;
    white-space: nowrap;
  }

  .hcp-glimpse-link:hover {
    background: var(--brand-navy);
    color: #fff;
  }

  /* ═══════════════
     HOW IT SHOWS UP
  ═══════════════ */
  .hcp-shows {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-shows-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .hcp-shows-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin: 16px 0 28px;
  }

  .hcp-shows-quote {
    background: rgba(62,207,170,0.07);
    border-left: 3px solid var(--brand-teal);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .hcp-shows-quote strong { font-style: normal; color: var(--brand-navy); }
  .hcp-shows-quote svg { flex-shrink: 0; margin-top: 3px; }

  /* Pathway list */
  .hcp-pathway-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hcp-pathway {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-subtle);
    border: 1.5px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
  }

  .hcp-pathway:hover {
    background: var(--white);
    border-color: rgba(62,207,170,0.28);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .hcp-pathway-num {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: rgba(13,31,45,0.25);
    font-weight: 400;
    flex-shrink: 0;
    width: 24px;
  }

  .hcp-pathway-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.22s;
  }

  .hcp-pathway:hover .hcp-pathway-icon { box-shadow: 0 4px 14px rgba(62,207,170,0.18); }

  .hcp-pathway-text { flex: 1; min-width: 0; }

  .hcp-pathway-title {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .hcp-pathway-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
  }

  .hcp-pathway-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s;
  }

  .hcp-pathway:hover .hcp-pathway-arrow { background: var(--brand-teal); }
  .hcp-pathway:hover .hcp-pathway-arrow svg { stroke: var(--brand-navy); }

  /* ═══════════════
     WHO
  ═══════════════ */
  .hcp-who {
    background: var(--bg-subtle);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hcp-who-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }

  .hcp-who-card:hover {
    border-color: rgba(62,207,170,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-3px);
  }

  /* Left accent bar on hover */
  .hcp-who-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-teal), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .hcp-who-card:hover::before { opacity: 1; }

  .hcp-who-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
  }

  .hcp-who-card:hover .hcp-who-icon { transform: scale(1.06); }

  .hcp-who-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
  }

  .hcp-who-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }

  .hcp-who-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
    margin-top: auto;
  }

  .hcp-who-link:hover { color: var(--brand-teal); gap: 9px; }

  /* ═══════════════
     CTA
  ═══════════════ */
  .hcp-cta {
    background: url('./bg6.png');
    padding: 30px 0;
  }

  .hcp-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
  }

  .hcp-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }

  .hcp-cta-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-cta-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
  }

  .hcp-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Stats visual */
  .hcp-cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 160px;
  }

  .hcp-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .hcp-cta-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .hcp-cta-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  .hcp-cta-divider {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.12);
  }

  /* ═══════════════
     SCROLL REVEAL
  ═══════════════ */
  .hcp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .hcp-reveal.hcp-visible { opacity: 1; transform: translateY(0); }

  /* ═══════════════
     RESPONSIVE
  ═══════════════ */
  @media (max-width: 960px) {
    .hcp-glimpse-grid { grid-template-columns: 1fr 1fr; }

    .hcp-hero-inner,
    .hcp-shows-inner { grid-template-columns: 1fr; gap: 40px; }
    .hcp-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .hcp-cta-visual { flex-direction: row; min-width: unset; }
    .hcp-cta-divider { width: 24px; height: 1px; }
    .hcp-research-grid { grid-template-columns: 1fr 1fr; }
    .hcp-rc--wide { grid-column: 1 / -1; flex-direction: column; gap: 16px; }
    .hcp-rc-tag--teal { align-self: flex-start; }
    .hcp-who-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .hcp-hero { padding: 60px 0; }
    .hcp-research,
    .hcp-shows,
    .hcp-who,
    .hcp-glimpse,
    .hcp-cta { padding: 64px 0; }
    .hcp-research-grid,
    .hcp-who-grid,
    .hcp-glimpse-grid { grid-template-columns: 1fr; }
    .hcp-hero-btns,
    .hcp-cta-btns { flex-direction: column; align-items: flex-start; }
  }





  /* ── Hero image card ── */
  .clh-hero-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/3;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
  }

  .clh-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-img-fallback {
    background: linear-gradient(135deg, #eaf6fd, #c8ecf9) !important;
  }

  .clh-hero-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(13,31,45,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }

  .clh-badge-num {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--brand-teal);
    line-height: 1;
    display: block;
  }

  .clh-badge-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    display: block;
  }

  /* ── Image grid in origin story ── */
.clh-img-grid {
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px;
}

.clh-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 7 / 3;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
}

  .clh-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .clh-img-wrap:hover img { transform: scale(1.04); }

  /* ── GBG section ── */
  .clh-gbg-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .clh-gbg-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .clh-gbg-intro strong { font-weight: 500; color: var(--black); }

  .clh-gbg-outcome-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-navy);
    margin-bottom: 14px;
  }

  .clh-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .clh-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    line-height: 1.5;
  }

  .clh-outcome-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(62,207,170,0.10);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Principles */
  .clh-principle-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .clh-principles {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .clh-principle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: border-color 0.22s, box-shadow 0.22s;
  }

  .clh-principle:hover {
    border-color: rgba(62,207,170,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  }

  .clh-principle-num {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: rgba(13,31,45,0.2);
    flex-shrink: 0;
    width: 20px;
    margin-top: 2px;
  }

  .clh-principle-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .clh-principle-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
  }

  .clh-principle-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* ── Structure grid ── */
  .clh-structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .clh-structure-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }

  .clh-structure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .clh-structure-card:hover {
    border-color: rgba(62,207,170,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(-3px);
  }

  .clh-structure-card:hover::before { opacity: 1; }

  .clh-sc-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .clh-sc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
  }

  .clh-sc-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  /* Toolkit wrap */
  .clh-toolkit-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }

  .clh-toolkit-img {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-subtle);
  }

  .clh-toolkit-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-toolkit-text {
    padding: 28px 28px 28px 0;
    flex: 1;
  }

.clh-toolkit-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-teal);
    margin-bottom: 10px;
}

  .clh-toolkit-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  /* ── Stats row ── */
  .clh-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .clh-stat { display: flex; flex-direction: column; gap: 3px; }

  .clh-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .clh-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── Teacher leads ── */
  .clh-leads-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .clh-leads-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
  }

  .clh-lead-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .clh-lead-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--brand-navy);
    transition: border-color 0.22s, transform 0.22s;
  }

  .clh-lead-card:hover .clh-lead-avatar {
    border-color: var(--brand-teal);
    transform: scale(1.06);
  }

  .clh-lead-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .clh-lead-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    text-align: center;
  }

  .clh-foundation-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    padding: 14px 16px;
    background: rgba(41,174,230,0.06);
    border-left: 3px solid var(--brand-cyan);
    border-radius: 0 8px 8px 0;
  }

  .clh-foundation-note svg { flex-shrink: 0; margin-top: 2px; }

  /* ── Film section ── */
  .clh-film-section {
    background: url(./bg6.png);
    padding: 30px 0;
    margin: 0px 40px;
    border-radius: 20px;
  }

  .clh-film-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .clh-film-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }

  .clh-film-title em { font-style: italic; color: var(--brand-teal); }

  .clh-film-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .clh-film-btn {
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    background: var(--brand-teal);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.22s, transform 0.18s;
  }

  .clh-film-btn:hover { background: var(--brand-cyan); transform: translateY(-1px); }

  .clh-film-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.10);
  }

  .clh-film-placeholder {
    background: linear-gradient(135deg, rgba(62,207,170,0.15), rgba(41,174,230,0.10)) !important;
  }

  .clh-film-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-film-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,31,45,0.35);
    transition: background 0.25s;
  }

  .clh-film-img-wrap:hover .clh-film-play-overlay {
    background: rgba(13,31,45,0.50);
  }

  .clh-play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--brand-teal);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.25s, background 0.25s;
    padding-left: 4px;
  }

  .clh-play-btn:hover { transform: scale(1.10); background: var(--brand-cyan); }

  /* ── Responsive ── */
  @media (max-width: 960px) {
    .clh-gbg-inner,
    .clh-film-inner { grid-template-columns: 1fr; gap: 40px; }
    .clh-structure-grid { grid-template-columns: 1fr 1fr; }
    .clh-toolkit-wrap { flex-direction: column; }
    .clh-toolkit-img { width: 100%; }
    .clh-toolkit-text { padding: 0 24px 24px; }
  }

  @media (max-width: 640px) {
    .clh-structure-grid { grid-template-columns: 1fr; }
    .clh-img-grid { grid-template-columns: 1fr; }
    .clh-film-section,
    .hcp-cta { padding: 64px 0; }
  }

