
/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(650px, 86vh, 700px);
    overflow: hidden;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 60%),
                var(--hero-bg-desktop, none) right bottom/cover no-repeat;
    margin-top: -80px;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg) 0 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    display: none;
}

.hero h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    font-size: 40px;
    margin-top: 60px;
}

.hero-description {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 400px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8.4px 28px 6px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background-color: var(--primary-green-hover);
    box-shadow: 0 0 0 5px rgba(55, 183, 131, 0.25);
}

.hero-button:focus-visible {
    outline: 2px solid var(--primary-green-hover);
    outline-offset: 2px;
    border-radius: 24px;
}

.trust-section {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: -23.9px;
}

.trust-badges {
    display: flex;
    list-style: none;
    gap: -8px;
    margin-right: var(--spacing-sm);
}

.badge {
    width: 25.6px;
    height: 25.6px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 9px;
    margin-left: -8px;
    border: 2px solid var(--white);
}

.badge:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 10.4px;
    color: var(--text-primary);
    font-weight: 500;
    margin-left: -8px;
}

/* Desktop Styles */
@media (min-width: 900px) {
    .hero h1 {
        margin-top: 48px;
    }
}

/* Tablet Styles */
@media (max-width: 899px) {
    .hero {
        min-height: auto;
        background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 60%),
                    var(--hero-bg-desktop, none) 100% bottom/auto 100% no-repeat;
    }
    
    .hero-content {
        width: 50%;
        padding: var(--spacing-xl) var(--spacing-lg);
        padding-left: var(--spacing-lg);
        margin: 5%;
        margin-right: auto;
        transform: translateY(-9%);
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-ctas {
        margin-bottom: var(--spacing-xl);
    }
}

@media (min-width: 550px) and (max-width: 1399px) {
    .hero {
        background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 60%),
                    var(--hero-bg-desktop, none) 75% bottom/auto 100% no-repeat;
    }
}

/* Phone Styles */
@media (max-width: 550px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        background: none;
        margin-top: -160px;
        padding-top: 0;
    }

    .hero::before {
        display: none;
    }

    .hero-image {
        display: block;
        width: 100%;
        height: 60vh;
        background: var(--hero-bg-mobile, none) center 30%/cover no-repeat;
        margin-top: 80px;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: var(--spacing-xl) var(--spacing-lg);
        margin: 0;
        transform: none;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: var(--spacing-md);
        margin-top: 0;
        max-width: none;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: var(--spacing-lg);
        max-width: none;
    }
    
    .hero-ctas {
        margin-bottom: var(--spacing-xl);
    }

    .trust-section {
        margin-bottom: 56px;
    }
}
@media (min-width: 1400px) {
    .hero {
        background: linear-gradient(to right, var(--white) 0%, var(--white) 24%, rgba(255, 255, 255, 0) 70%),
                    var(--hero-bg-desktop, none) right bottom/auto 100% no-repeat;
    }
}

/* ========================================
   LOGOS / TRUST SECTION
   ======================================== */

.logos-section {
    background-color: var(--grey-trust);
    padding: 20px 24px 125px;
    text-align: center;
}

.logos-grid {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 45px;
    row-gap: 12px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo-item img,
.logo-item svg {
    display: block;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

.logo-1  { height: 37px; }
.logo-2  { height: 25px; }
.logo-3  { height: 22px; }
.logo-4  { height: 25px; }
.logo-5  { height: 32px; }
.logo-6  { height: 27px; }
.logo-7  { height: 25px; }
.logo-8  { height: 27px; }
.logo-9  { height: 27px; }
.logo-10 { height: 28px; }

@media (max-width: 899px) {
    .logos-grid {
        column-gap: 36px;
        row-gap: 16px;
    }
}

@media (max-width: 550px) {
    .logos-section {
        padding: 32px 20px 110px;
    }

    .logos-eyebrow {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .logos-grid {
        column-gap: 26px;
        row-gap: 14px;
    }

    .logo-item img,
    .logo-item svg {
        max-width: 90px;
    }

    .logo-1  { height: 30px; }
    .logo-2  { height: 20px; }
    .logo-3  { height: 18px; }
    .logo-4  { height: 20px; }
    .logo-5  { height: 26px; }
    .logo-6  { height: 22px; }
    .logo-7  { height: 20px; }
    .logo-8  { height: 22px; }
    .logo-9  { height: 22px; }
    .logo-10 { height: 23px; }
}

/* ========================================
   WHO SECTION
   ======================================== */

.who-section {
    background-color: var(--white);
    padding: 95px 0 0;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 0 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
}

.who-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
}

.who-image-frame {
    width: 360px;
    aspect-ratio: 530 / 748.3;
    border-radius: 80px;
    overflow: hidden;
    background-color: var(--grey-trust);
}

.who-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-content {
    flex: 0 1 560px;
    max-width: 560px;
}



.who-content > p:not(.eyebrow) {
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.symptom-strip {
    max-width: 1200px;
    margin: 40px auto 20px auto;
    padding: 60px 24px 0;
    text-align: center;
}

h2.symptoms{font-size: 24px;}

.symptom-strip p {
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 34px;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.symptom-pill {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    background-color: var(--light-green-bg);
    border-radius: 999px;
    padding: 10px 18px;
    text-align: left;
}

.symptom-pill-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(55, 183, 131, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.symptom-pill-icon svg {
    width: 14px;
    height: 14px;
}

.symptom-pill span {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 899px) {
    .who-section {
        padding: 90px 0 0;
    }

    .who-container {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0 24px;
    }

    .who-visual {
        margin-top: 30px;
        width: 100%;
        order: 1;
    }

    .who-image-frame {
        width: 80%;
        max-width: none;
        aspect-ratio: 3 / 2;
        min-height: unset;
        border-radius: 24px;
        margin: 0 auto;
        overflow: hidden;
    }

    .who-content {
        flex: 0 0 auto;
        max-width: 480px;
        text-align: left;
        order: 0;
    }

    .who-content h2 {
        max-width: 480px;
        padding-right: var(--spacing-md);
    }

    .symptom-strip {
        padding: 24px 24px 0;
        margin-top: 50px;
        text-align: left;
    }

    .symptom-strip h2,
    .symptom-strip > p {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .symptom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 550px) {
    .who-section {
        padding: 64px 0 0;
    }

    .who-container {
        padding: 0 20px;
        gap: 16px;
        justify-content: flex-start;
    }

    .who-content {
        flex: 0 0 auto;
        max-width: 100%;
        order: 0;
    }

    .who-visual {
        width: 100%;
        order: 1;
    }

    

    .symptom-strip {
        padding: 34px 20px 0;
        text-align: left;
    }

    .symptom-strip p {
        margin-left: 0;
        margin-right: 0;
    }

    .symptom-strip h3 {
        font-size: 16px;
    }

    .symptom-grid {
        grid-template-columns: 1fr;
    }

    .symptom-pill {
        padding: 10px 16px;
    }

}

/* ========================================
   EVIDENCE SECTION
   ======================================== */

.evidence-section {
    background-color: var(--evidence-bg);
    padding: 110px 0 90px;
    text-align: center;
}

.evidence-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}



.evidence-stat-figure {
    font-family: var(--font-heading);
    font-size: 88px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.evidence-stat-caption {
    font-size: 19px;
    color: var(--text-primary);
    max-width: 460px;
    margin: 0 auto 64px;
    line-height: 1.5;
}

.evidence-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 64px;
}

.evidence-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evidence-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evidence-stat-icon {
    margin-bottom: var(--spacing-lg);
}

.evidence-stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
}

.evidence-stat-divider {
    width: 100%;
    max-width: 140px;
    height: 1px;
    background-color: rgba(28, 37, 73, 0.12);
    margin-bottom: var(--spacing-md);
}

.evidence-stat-label {
    color: var(--text-primary);
    line-height: 1.4;
}

.evidence-quote-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 48px;
    max-width: 920px;
    margin: 0 auto 32px;
    box-shadow: 0 12px 32px rgba(28, 37, 73, 0.06);
}

.evidence-quote-card p {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.evidence-quote-card cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
}

.evidence-container > .btn-text {
    display: block;
    margin-bottom: 32px;
}

.evidence-quote-card cite span {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.65;
    margin-top: 2px;
}

/* ── Evidence quote carousel ──────────────────────────────────
   Structure mirrors .stories-quote-carousel (viewport clips a
   flex track; JS sets translateX). Card visuals reuse the
   existing .evidence-quote-card styling untouched. ── */
.evidence-quote-carousel {
    position: relative;
    max-width: 920px;
    margin: 0 auto 32px;
}

.evidence-quote-viewport {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(28, 37, 73, 0.06);
}

.evidence-quote-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
}

@media (prefers-reduced-motion: reduce) {
    .evidence-quote-track {
        transition: none;
    }
    .evidence-quote-carousel .evidence-quote-card {
        transition: opacity 0.3s ease;
    }
    .evidence-quote-carousel .evidence-quote-card[aria-hidden="true"] {
        opacity: 0;
        pointer-events: none;
    }
    .evidence-quote-carousel .evidence-quote-card[aria-hidden="false"] {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Slides sit edge-to-edge inside the viewport, which already
   provides the shadow/radius — strip the card's own margin/shadow. */
.evidence-quote-carousel .evidence-quote-card {
    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
    box-shadow: none;
}

.evidence-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(28, 37, 73, 0.14);
    box-shadow: 0 4px 12px rgba(28, 37, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.evidence-carousel-arrow:hover {
    background-color: var(--light-green-bg);
    border-color: var(--primary-green);
}

.evidence-carousel-arrow:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.evidence-carousel-arrow svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.evidence-carousel-arrow--prev { left: -20px; }
.evidence-carousel-arrow--next { right: -20px; }

.evidence-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.evidence-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(28, 37, 73, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.evidence-dot::after {
    content: '';
    position: absolute;
    inset: -14px;
}

.evidence-dot:hover {
    background-color: rgba(28, 37, 73, 0.4);
}

.evidence-dot.is-active {
    background-color: var(--text-primary);
    transform: scale(1.2);
}

.evidence-dot:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

@media (max-width: 899px) {
    .evidence-carousel-arrow--prev { left: -12px; }
    .evidence-carousel-arrow--next { right: -12px; }
}

/* ── Mobile nav row: prev arrow · dots · next arrow ── */
.evidence-carousel-mobile-nav {
    display: none;
}

@media (max-width: 550px) {
    .evidence-carousel-arrow {
        display: none;
    }

    .evidence-carousel-dots {
        display: none;
    }

    .evidence-carousel-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }
}

.evidence-carousel-mobile-nav .evidence-mobile-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(28, 37, 73, 0.14);
    box-shadow: 0 2px 8px rgba(28, 37, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    touch-action: manipulation;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.evidence-carousel-mobile-nav .evidence-mobile-arrow:hover {
    background-color: var(--light-green-bg);
    border-color: var(--primary-green);
}

.evidence-carousel-mobile-nav .evidence-mobile-arrow:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.evidence-carousel-mobile-nav .evidence-mobile-arrow svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.evidence-carousel-mobile-nav .evidence-mobile-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 899px) {
    .evidence-section {
        padding: 60px 0 100px;
    }

    

    .evidence-stat-figure {
        font-size: 68px;
    }

    .evidence-stat-caption {
        font-size: 17px;
        margin-bottom: 48px;
    }

    .evidence-quote-card {
        padding: 32px;
    }
}

@media (min-width: 700px) and (max-width: 899px) {
    .evidence-stats-grid {
        grid-template-columns: repeat(6, 1fr);
        row-gap: 40px;
        column-gap: var(--spacing-lg);
        margin: 0 auto 48px;
        max-width: 80%;
    }

    .evidence-stat:nth-child(1) { grid-column: 1 / span 2; }
    .evidence-stat:nth-child(2) { grid-column: 3 / span 2; }
    .evidence-stat:nth-child(3) { grid-column: 5 / span 2; }
    .evidence-stat:nth-child(4) { grid-column: 2 / span 2; }
    .evidence-stat:nth-child(5) { grid-column: 4 / span 2; }

    .evidence-stat-icon {
        width: var(--icon-circle-size);
        height: var(--icon-circle-size);
        margin-bottom: var(--spacing-md);
    }

    .evidence-stat-divider {
        max-width: 110px;
    }

    .evidence-stat-label {
        max-width: 160px;
    }
}

@media (max-width: 699px) {
    .evidence-stats-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        max-width: 420px;
        margin: 0 auto 48px;
    }

    .evidence-stat {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--spacing-lg);
    }

    .evidence-stat-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .evidence-stat-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .evidence-stat-number {
        margin-bottom: var(--spacing-sm);
    }

    .evidence-stat-divider {
        max-width: 100px;
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 550px) {
    .evidence-section {
        padding: 64px 0 56px;
    }

    

    .evidence-stat-figure {
        font-size: 52px;
    }

    .evidence-stat-caption {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .evidence-stats-grid {
        gap: var(--spacing-md);
        margin-bottom: 40px;
    }

    .evidence-stat-number {
        font-size: 22px;
    }

    .evidence-stat-label {
        font-size: 14px;
    }

    .evidence-quote-card {
        padding: 24px;
    }

    .evidence-quote-card p {
        font-size: 15px;
    }
}

/* ========================================
   EXPERTS SECTION
   ======================================== */

.experts-section {
    background-color: var(--white);
    padding: 70px 0 130px;
    text-align: center;
}

.experts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.experts-container h2 {
    max-width: 700px;
    margin: 0 auto 64px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 900px) {
    .experts-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .expert-card:nth-child(1) { grid-column: 1 / span 2; }
    .expert-card:nth-child(2) { grid-column: 3 / span 2; }
    .expert-card:nth-child(3) { grid-column: 5 / span 2; }
    .expert-card:nth-child(4) { grid-column: 2 / span 2; }
    .expert-card:nth-child(5) { grid-column: 4 / span 2; }
}

.expert-card {
    background-color: var(--grey-trust);
    border-radius: 20px;
    padding: 40px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-photo {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    margin-bottom: var(--spacing-lg);
    flex: 0 0 auto;
}

.expert-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.expert-role {
    font-size: 13px;
    color: var(--text-primary);
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.expert-presentation {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

@media (max-width: 899px) {
    .experts-section {
        padding: 70px 0 130px;
    }

    .experts-container h2 {
        margin-bottom: 48px;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .expert-card:nth-child(1),
    .expert-card:nth-child(2),
    .expert-card:nth-child(3),
    .expert-card:nth-child(4) {
        grid-column: auto;
    }

    .expert-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: calc(50% - var(--spacing-lg) / 2);
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .experts-section {
        padding: 64px 0 100px;
    }

    .experts-container h2 {
        margin-bottom: 40px;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .expert-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .expert-card {
        padding: 32px 24px 28px;
    }

    .expert-photo {
        width: 110px;
        height: 110px;
    }

    .expert-name {
        font-size: 17px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-section {
    background-color: var(--light-green-bg);
    padding: 50px 0 130px;
    text-align: center;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.how-container h2 {
    max-width: 640px;
    margin: 0 auto var(--spacing-md);
}

.how-subcopy {
    color: var(--text-primary);
    margin-bottom: 72px;
    margin-left: auto; margin-right: auto;
    width: 80%
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0;
    row-gap: 56px;
    align-items: stretch;
}

.how-item {
    position: relative;
    padding: 0 32px;
}

.how-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(28, 37, 73, 0.12);
}

.how-icon {
    margin: 0 auto var(--spacing-lg);
}

.how-item h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.how-item p {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 230px;
    margin: 0 auto;
}

@media (max-width: 899px) {
    .how-section {
        padding: 70px 0 100px;
    }

    

    .how-subcopy {
        font-size: 15px;
        margin-bottom: 56px;
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }

    .how-item:not(:nth-child(3n))::after {
        content: none;
    }

    .how-item:nth-child(odd)::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background-color: rgba(28, 37, 73, 0.12);
    }
}

@media (max-width: 550px) {
    .how-section {
        padding: 64px 0 72px;
    }

    

    .how-subcopy {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .how-item:not(:nth-child(3n))::after,
    .how-item:nth-child(odd)::after {
        content: none;
    }

    .how-item {
        padding: 0 16px;
    }

    .how-item p {
        max-width: 280px;
    }

    .how-icon.icon-circle {
        width: 72px;
        height: 72px;
    }
}

/* ========================================
   MEMBER STORIES SECTION
   ======================================== */

.stories-section {
    background-color: var(--white);
    padding: 60px 0 130px;
    text-align: center;
}

.stories-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}



.stories-subcopy {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 48px;
}

/* ── Video carousel ─────────────────────────────────────────── */
.stories-video-carousel {
    position: relative;
    margin-bottom: 40px;
    /* Bleed a little past container on both sides so partial cards peek */
    margin-left: -24px;
    margin-right: -24px;
}

@media (min-width: 1280px) {
    .stories-video-carousel {
        /* Break out past the shared section container so only the video
           carousel gets extra width on large screens — the testimonial
           carousel below shares .stories-container and stays unaffected */
        margin-left: -104px;
        margin-right: -104px;
    }
}

.stories-video-track-wrapper {
    overflow: hidden;
    /* Restore side padding so first/last card align with text above */
    padding: 0 24px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.stories-video-track-wrapper.is-dragging {
    cursor: grabbing;
}

.stories-video-track {
    display: flex;
    gap: var(--spacing-lg);
    /* JS will drive translateX; no CSS transition during drag,
       only during snap/settle */
    will-change: transform;
}

.stories-video-track.is-snapping {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-reduced-motion: reduce) {
    .stories-video-track.is-snapping {
        transition: none;
    }
}

.stories-video {
    position: relative;
    /* Desktop: ~20% larger than a strict 3-up grid — shows roughly 2.5 cards with a peek of the next */
    flex: 0 0 calc(((100% - 2 * var(--spacing-lg)) / 3) * 1.2);
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--grey-trust);
    cursor: pointer;
    border: none;
    padding: 0;
    display: block;
}

.stories-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.stories-video-thumb {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.stories-video:hover img,
.stories-video:hover .stories-video-thumb {
    transform: scale(1.04);
}

.stories-video-track-wrapper.is-dragging .stories-video img,
.stories-video-track-wrapper.is-dragging .stories-video .stories-video-thumb {
    transform: none;
}

.stories-video:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.stories-play-icon {
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(28, 37, 73, 0.18);
    transition: background-color 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.stories-video:hover .stories-play-icon {
    background-color: var(--white);
    transform: scale(1.06);
}

.stories-video-track-wrapper.is-dragging .stories-play-icon {
    transform: none;
}

.stories-play-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 3px;
}

.stories-video-credit {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 11px;
    color: var(--white);
    text-align: left;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.stories-video-credit strong {
    display: block;
    font-weight: 600;
    font-size: 12px;
}

/* Carousel navigation row */
.stories-video-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding: 0 24px;
}

.stories-video-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(28, 37, 73, 0.14);
    box-shadow: 0 2px 8px rgba(28, 37, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.stories-video-arrow:hover {
    background-color: var(--light-green-bg);
    border-color: var(--primary-green);
}

.stories-video-arrow:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.stories-video-arrow svg {
    width: 14px;
    height: 14px;
}

.stories-video-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.stories-video-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(28, 37, 73, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.stories-video-dot:hover {
    background-color: rgba(28, 37, 73, 0.4);
}

.stories-video-dot.is-active {
    background-color: var(--primary-green);
    transform: scale(1.25);
}

.stories-video-dot:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* YouTube embed — hidden until card is clicked */
.stories-video .stories-yt-iframe {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    z-index: 2;
}

.stories-video.is-playing .stories-yt-iframe {
    display: block;
}

/* Hide thumbnail + overlay when playing */
.stories-video.is-playing img,
.stories-video.is-playing .stories-video-thumb,
.stories-video.is-playing .stories-play-icon,
.stories-video.is-playing .stories-video-credit {
    display: none;
}

.stories-video.is-playing {
    cursor: default;
}

/* Responsive card widths ───────────────────────────────── */
@media (max-width: 899px) {
    
    /* Tablet: ~2 cards + sliver */
    .stories-video {
        flex: 0 0 calc((100% - var(--spacing-lg)) / 2 + 20px);
    }
}

@media (max-width: 550px) {
    /* Mobile: 1 card + sliver on each side */
    .stories-video {
        flex: 0 0 calc(100% - 36px);
    }
    .stories-video-carousel {
        margin-left: -16px;
        margin-right: -16px;
    }
    .stories-video-track-wrapper {
        padding: 0 16px;
    }
    .stories-video-nav {
        padding: 0 16px;
    }
}

/* ----------------------------------------
   QUOTE CAROUSEL
   ---------------------------------------- */

/*
  Layout:
    .stories-quote-carousel          — outer wrapper; arrows are absolute-
                                        positioned relative to this
      .stories-slides-viewport       — clips the sliding track (overflow:hidden)
        .stories-slides-track        — flex row; all cards side-by-side;
                                        translateX() moves between them
          .stories-quote-card × N    — each card is 100% of viewport width
      .stories-carousel-dots         — sits below the viewport

  Accessibility:
    • .stories-slides-viewport has role="region" + aria-label (set in HTML)
    • aria-live="polite" on the viewport announces the current slide text
    • Each card has aria-hidden="true" when not active (set by JS)
    • prefers-reduced-motion: skip translate, fade instead
*/

.stories-quote-carousel {
    position: relative;
    /* Leave room for the arrow buttons that sit outside the viewport */
    padding: 0;
}

.stories-slides-viewport {
    overflow: hidden;
    border-radius: 20px;
    /* Slight box-shadow on the viewport so arrows overlap cleanly */
    box-shadow: 0 12px 32px rgba(28, 37, 73, 0.06);
}

.stories-slides-track {
    display: flex;
    /* Slide transition — overridden to none when reduced-motion preferred */
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
}

@media (prefers-reduced-motion: reduce) {
    .stories-slides-track {
        transition: none;
    }
    /* Fade the incoming card instead */
    .stories-quote-card {
        transition: opacity 0.3s ease;
    }
    .stories-quote-card[aria-hidden="true"] {
        opacity: 0;
        pointer-events: none;
    }
    .stories-quote-card[aria-hidden="false"] {
        opacity: 1;
        pointer-events: auto;
    }
}

.stories-quote-card {
    /* Each card occupies exactly one viewport-width slot */
    flex: 0 0 100%;
    min-width: 0;

    position: relative;
    background-color: var(--white);
    /* Border-radius on the card itself is hidden by viewport clip;
       keep it for reduced-motion / no-JS fallback */
    border-radius: 20px;
    padding: 40px 88px;
    /* No box-shadow here — it lives on the viewport wrapper */
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    text-align: left;
    box-sizing: border-box;
}

/* Initials avatar: shown when there is no photo */
.stories-quote-avatar {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--light-green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-quote-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Initials variant – no photo available */
.stories-quote-avatar--initials {
    background-color: var(--light-green-bg);
}

.stories-quote-avatar--initials span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.stories-quote-body {
    flex: 1 1 auto;
}

.stories-quote-body p {
    position: relative;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.stories-quote-mark {
    display: block;
    width: 34px;
    height: auto;
    color: var(--light-green-bg);
    margin-bottom: 4px;
}

.stories-quote-cite {
    font-style: normal;
}

.stories-quote-cite strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.stories-quote-cite span {
    font-size: 13px;
    color: var(--text-primary);
    opacity: 0.65;
}

.stories-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(28, 37, 73, 0.14);
    box-shadow: 0 4px 12px rgba(28, 37, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.stories-carousel-arrow:hover {
    background-color: var(--light-green-bg);
    border-color: var(--primary-green);
}

.stories-carousel-arrow:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.stories-carousel-arrow svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.stories-carousel-arrow--prev { left: -20px; }
.stories-carousel-arrow--next { right: -20px; }

.stories-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.stories-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(28, 37, 73, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.stories-dot::after {
    content: '';
    position: absolute;
    inset: -14px;
}

.stories-dot:hover {
    background-color: rgba(28, 37, 73, 0.4);
}

.stories-dot.is-active {
    background-color: var(--text-primary);
    transform: scale(1.2);
}

.stories-dot:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

@media (max-width: 899px) {
    .stories-section {
        padding: 70px 0 100px;
    }

    

    .stories-subcopy {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .stories-quote-card {
        padding: 32px;
        gap: var(--spacing-lg);
    }

    .stories-carousel-arrow--prev { left: -12px; }
    .stories-carousel-arrow--next { right: -12px; }
}

@media (max-width: 550px) {
    .stories-section {
        padding: 64px 0 72px;
    }

    

    .stories-quote-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        text-align: left;
    }

    .stories-quote-avatar {
        width: 64px;
        height: 64px;
    }
}

/* ── Mobile nav row: prev arrow · dots · next arrow (exact clone of the
   working evidence-carousel pattern) ── */
.stories-quote-mobile-nav {
    display: none;
}

@media (max-width: 550px) {
    .stories-carousel-arrow {
        display: none;
    }

    .stories-carousel-dots {
        display: none;
    }

    .stories-quote-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }
}

.stories-quote-mobile-nav .stories-mobile-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(28, 37, 73, 0.14);
    box-shadow: 0 2px 8px rgba(28, 37, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    touch-action: manipulation;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.stories-quote-mobile-nav .stories-mobile-arrow:hover {
    background-color: var(--light-green-bg);
    border-color: var(--primary-green);
}

.stories-quote-mobile-nav .stories-mobile-arrow:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.stories-quote-mobile-nav .stories-mobile-arrow svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.stories-quote-mobile-nav .stories-mobile-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Mobile accessibility: minimum font sizes ── */
@media (max-width: 550px) {
    /* Body copy: 14px → 16px */
    .hero-description,
    .how-subcopy,
    .how-item p,
    .expert-presentation {
        font-size: 16px;
    }

    /* Secondary/label text: bump to 14px minimum */
    .eyebrow {
        font-size: 14px;
    }

    /* Trust text: was 10.4px — too small, bump to 12px */
    .trust-text {
        font-size: 12px;
    }

    /* Buttons and links: minimum legible size on mobile */
    .hero-button {
        font-size: 16px;
    }

    /* Evidence */
    .evidence-stat-caption,
    .evidence-stat-label,
    .evidence-quote-card p {
        font-size: 16px;
    }

    /* Experts */
    .expert-role,
    .status-pill {
        font-size: 16px;
    }

    /* Stories */
    .stories-subcopy,
    .stories-quote-cite strong,
    .stories-quote-cite span {
        font-size: 16px;
    }
}
