    /* ─────────────────────────────────────────────
SKIP LINK (accessibility — keyboard users)
───────────────────────────────────────────── */
.skip-link {
    position: fixed;
    top: var(--space-4);
    left: var(--space-4);
    z-index: calc(var(--z-modal) + 10);
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform var(--transition-base);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ─────────────────────────────────────────────
HERO
───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    display: grid;
    grid-template-columns: 52% 1fr;
    overflow: hidden;
    background: var(--color-dark);
}

/* White content pane with subtle diagonal right edge */
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-20) var(--space-16) var(--space-20) var(--container-pad);
    background: var(--color-white);
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

/* Right photo pane */
.hero__visual {
    position: relative;
    overflow: hidden;
}

.hero__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% center;
    display: block;
}

/* Vignette so the dark featured card reads clearly */
.hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg,
            transparent 35%,
            rgba(8, 8, 8, 0.68) 100%);
    pointer-events: none;
}

/* Headline */
.hero__headline {
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    font-weight: var(--fw-black);
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--color-dark);
    margin-bottom: var(--space-6);
}

.hero__headline .accent {
    color: var(--color-primary);
}

/* Body copy */
.hero__desc {
    max-width: 420px;
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: var(--color-gray-2);
    margin-bottom: var(--space-8);
}

/* CTA row */
.hero__ctas {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

/* Featured card: absolute on desktop, static on mobile */
.hero__card-wrap {
    position: absolute;
    bottom: var(--space-10);
    right: var(--space-8);
    /* width: clamp(295px, 33%, 375px); */
    z-index: var(--z-raised);
}

/* Staggered load animations on hero children */
.hero__eyebrow {
    animation: cfc-fade-up 0.50s 0.05s ease both;
}

.hero__headline {
    animation: cfc-fade-up 0.55s 0.15s ease both;
}

.hero__desc {
    animation: cfc-fade-up 0.55s 0.25s ease both;
}

.hero__ctas {
    animation: cfc-fade-up 0.55s 0.35s ease both;
}

.hero__partners {
    animation: cfc-fade-up 0.55s 0.44s ease both;
}

.hero__card-wrap {
    animation: cfc-fade-up 0.65s 0.50s ease both;
}

/* ─────────────────────────────────────────────
PARTNER LOGO PILLS
Unique to hero — pill-shaped brand badges
───────────────────────────────────────────── */
.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-light-bg);
    border: 1px solid var(--color-gray-5);
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-dark);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-spring);
}

.partner-pill:hover {
    border-color: var(--color-gray-3);
    box-shadow: var(--shadow-xs);
    transform: translateY(-1px);
    color: var(--color-dark);
}

.partner-pill__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─────────────────────────────────────────────
STATS STRIP
───────────────────────────────────────────── */
.stats-strip {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-5);
}

/* ─────────────────────────────────────────────
CHALLENGES SECTION
───────────────────────────────────────────── */
.section-challenges {
    background: var(--color-light-bg);
    position: relative;
}

.section-challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 55%);
}

.section-challenges__footer {
    margin-top: var(--space-12);
    text-align: center;
}

/* ─────────────────────────────────────────────
HOW IT WORKS
───────────────────────────────────────────── */
.section-how {
    background: var(--color-white);
}

/* ─────────────────────────────────────────────
WHY CREWFITCLUB
───────────────────────────────────────────── */
.section-why {
    background: var(--color-light-bg);
    overflow: hidden;
}

/* Layered phone + watch mockup */
.mockup-stage {
    position: relative;
    height: 540px;
}

/* Decorative large circle behind the phones */
.mockup-stage::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: var(--radius-circle);
    background: var(--color-primary-muted);
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.mockup-stage__phone-back {
    position: absolute;
    left: 0;
    top: 30px;
    width: 215px;
    border-radius: 26px;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: cfc-fade-up 0.6s 0.3s ease both;
}

.mockup-stage__phone-front {
    position: absolute;
    left: 130px;
    top: 70px;
    width: 215px;
    border-radius: 26px;
    box-shadow: var(--shadow-dark);
    z-index: 2;
    animation: cfc-fade-up 0.6s 0.45s ease both;
}

.mockup-stage__watch {
    position: absolute;
    right: 10px;
    bottom: 50px;
    width: 130px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: cfc-fade-up 0.6s 0.6s ease both;
}

/* ─────────────────────────────────────────────
TESTIMONIALS
───────────────────────────────────────────── */
.section-testimonials {
    background: var(--color-white);
}

/* Carousel track lives inside this clipping wrapper */
.carousel-viewport {
    overflow: hidden;
}

.carousel-cfc__track {
    display: flex;
    transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-cfc__slide {
    min-width: 100%;
}

/* Three-column grid inside each slide */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* ─────────────────────────────────────────────
RESPONSIVE — page-scoped only
(global responsive already handled in style.css)
───────────────────────────────────────────── */

@media (max-width: 1280px) {
    .hero__content {
        padding-left: var(--space-10);
        padding-right: var(--space-10);
    }

    .hero__card-wrap {
        right: var(--space-6);
        bottom: var(--space-6);
    }
}

@media (max-width: 991px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__visual {
        height: 420px;
        order: 1;
    }

    .hero__content {
        clip-path: none;
        padding: var(--space-12) var(--container-pad);
        order: 2;
    }

    .hero__card-wrap {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 440px;
        margin: var(--space-8) auto 0;
        order: 3;
    }

    .hero__desc {
        max-width: none;
    }

    .mockup-stage {
        height: 400px;
    }

    .mockup-stage__phone-back {
        width: 175px;
    }

    .mockup-stage__phone-front {
        left: 105px;
        width: 175px;
    }

    .mockup-stage__watch {
        width: 105px;
        right: 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero__visual {
        height: 300px;
    }

    .hero__headline {
        font-size: clamp(2.1rem, 9vw, 2.7rem);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__ctas .btn-cfc {
        justify-content: center;
    }

    .hero__card-wrap {
        max-width: none;
    }

    .mockup-stage {
        height: 320px;
    }

    .mockup-stage__phone-back {
        width: 140px;
        top: 15px;
    }

    .mockup-stage__phone-front {
        left: 88px;
        width: 140px;
        top: 50px;
    }

    .mockup-stage__watch {
        width: 88px;
        bottom: 30px;
    }
}

@media (max-width: 479px) {
    .hero__card-wrap .featured-card {
        padding: var(--space-4);
    }
}