/* ==========================================================================
   DEMO 4 EXTRA — Text-heavy version
   Additional styles for new sections (philosophy, how it works, community, FAQ)
   Base styles come from style-demo3.css
   ========================================================================== */

/* ===========================
   HEADER — Glassmorphism (transparent + blur)
   =========================== */
.header.scrolled {
    background: rgba(250, 247, 240, 0.55) !important;
    backdrop-filter: blur(20px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

/* Subtle hairline separator */
.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 113, 0, 0.15) 50%,
        transparent 100%);
    pointer-events: none;
}

/* ===========================
   POPUP — Welcome offer
   =========================== */
.popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup.popup--open {
    opacity: 1;
    pointer-events: auto;
}

.popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.popup__card {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px 40px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.popup.popup--open .popup__card {
    transform: translateY(0) scale(1);
}

/* Gradient top border */
.popup__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-cta);
}

/* Dot pattern decorative — top right */
.popup__card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
}

/* Glow effect behind card */
.popup__glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: var(--gradient-cta);
    filter: blur(40px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.popup__content {
    position: relative;
    z-index: 2;
}

.popup__close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
}

.popup__close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.popup__close svg {
    width: 18px;
    height: 18px;
}

.popup__badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gradient-cta);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 113, 0, 0.3);
}

.popup__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup__title-accent {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.popup__deposit {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 113, 0, 0.1);
    border: 1px solid rgba(255, 113, 0, 0.2);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    text-align: left;
}

.popup__deposit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.popup__deposit-icon svg {
    width: 20px;
    height: 20px;
}

.popup__deposit-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.popup__deposit-text strong {
    color: var(--peach);
    font-weight: 700;
}

.popup__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup__dismiss {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.popup__dismiss:hover {
    color: var(--white);
}

/* No scroll on body when popup open */
body.popup-open {
    overflow: hidden;
}

@media (max-width: 500px) {
    .popup__card {
        padding: 40px 24px 28px;
    }

    .popup__title {
        font-size: 1.7rem;
    }

    .popup__subtitle {
        font-size: 0.88rem;
    }

    .popup__deposit {
        padding: 12px 14px;
        gap: 12px;
    }

    .popup__deposit-text {
        font-size: 0.8rem;
    }
}

/* ===========================
   HERO OBJECTIVES (clickable buttons)
   =========================== */

/* Ensure hero has room for the objectives block below the split */
.hero {
    padding-bottom: 50px !important;
}

.hero__objectives-block {
    margin: 36px auto 0;
    max-width: var(--container-width);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero__objectives-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.hero__objectives {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .hero__objectives-block {
        padding: 0 16px;
        margin-top: 18px;
    }

    .hero__objectives-label {
        margin-bottom: 10px;
    }

    /* 2-line grid on mobile: Perte + Gain on row 1, Prise de masse (full) on row 2 */
    .hero__objectives {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        grid-auto-flow: dense;
    }

    .hero__objectives .objective-btn {
        justify-content: center;
        padding: 9px 12px;
        font-size: 0.82rem;
    }

    .hero__objectives .objective-btn:nth-child(2) {
        grid-column: 1 / -1;
    }

    /* Reduce hero bottom padding on mobile */
    .hero {
        padding-bottom: 20px !important;
    }

    /* Mobile hero: text + stats FIRST, then video, then objectives */
    .hero__left { order: 0 !important; }
    .hero__right { order: 1 !important; }

    /* Center stats block on mobile */
    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero__stat {
        align-items: center;
        text-align: center;
    }
}

.objective-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    background: var(--white);
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.objective-btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.objective-btn:hover {
    transform: translateY(-3px);
}

.objective-btn:hover .objective-btn__icon {
    transform: scale(1.15) rotate(8deg);
}

.objective-btn--orange {
    color: var(--orange);
    border-color: rgba(255, 113, 0, 0.25);
}

.objective-btn--orange:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 113, 0, 0.3);
}

.objective-btn--pink {
    color: var(--pink);
    border-color: rgba(255, 0, 122, 0.25);
}

.objective-btn--pink:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 8px 20px rgba(255, 0, 122, 0.3);
}

.objective-btn--green {
    color: var(--green);
    border-color: rgba(135, 157, 130, 0.4);
}

.objective-btn--green:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(135, 157, 130, 0.35);
}

/* Active state - when selected */
.objective-btn--orange.objective-btn--active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 113, 0, 0.3);
}

.objective-btn--pink.objective-btn--active {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 8px 20px rgba(255, 0, 122, 0.3);
}

.objective-btn--green.objective-btn--active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(135, 157, 130, 0.35);
}

/* ===========================
   BOOKING — Objective display
   =========================== */
.booking__objective {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--orange);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin: 12px auto 8px;
    box-shadow: 0 4px 20px rgba(255, 113, 0, 0.15);
    animation: fadeInUp 0.5s ease;
}

.booking__objective[hidden] {
    display: none;
}

.booking__objective-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking__objective-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   HERO STATS
   =========================== */
.hero__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   PHILOSOPHY SECTION
   =========================== */
.section--philosophy {
    background: var(--cream);
    position: relative;
}

/* Decorative: dot grid bridging philosophy → concept */
.section--philosophy::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 60px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--green) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

.philosophy {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 16px;
}

.philosophy__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===========================
   CONCEPT EXTRA (header desc + block desc)
   =========================== */
.concept__header-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 700px;
}

.concept__block-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.section--howitworks {
    background: var(--cream);
    position: relative;
}

/* Decorative: orange circle bridging howitworks → services */
.section--howitworks::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 100px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
}

.section__subtitle--center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section__subtitle--light {
    color: var(--gray-400);
    max-width: 700px;
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
}

.step-card:nth-child(1) { border-top-color: var(--orange); }
.step-card:nth-child(2) { border-top-color: var(--pink); }
.step-card:nth-child(3) { border-top-color: var(--green); }
.step-card:nth-child(4) { border-top-color: var(--peach); }

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    margin-bottom: 16px;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.step-card__desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===========================
   COMMUNITY SECTION
   =========================== */
.section--community {
    background: var(--cream);
    position: relative;
}

/* Decorative: large pink circle overlapping community text block (right side) */
.community {
    position: relative;
}

.community::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.community {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.community__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.community__text {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 14px;
}

/* ===========================
   RESULTS EXTRA TEXT
   =========================== */
.results__text {
    margin-top: 40px;
    max-width: 800px;
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ===========================
   CONTACT INTRO
   =========================== */
.contact__intro {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===========================
   FAQ SECTION
   =========================== */
.section--faq {
    background: var(--white);
    position: relative;
}

/* Decorative: gradient line left */
.section--faq::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 2px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    transition: var(--transition-base);
    border-left: 4px solid transparent;
}

.faq-item:nth-child(1) { border-left-color: var(--orange); }
.faq-item:nth-child(2) { border-left-color: var(--pink); }
.faq-item:nth-child(3) { border-left-color: var(--green); }
.faq-item:nth-child(4) { border-left-color: var(--peach); }
.faq-item:nth-child(5) { border-left-color: var(--yellow); }
.faq-item:nth-child(6) { border-left-color: var(--orange); }

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.faq-item__answer {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===========================
   DECO-BEHIND — Depth circles behind images/blocks
   =========================== */

/* Parent containers need position:relative */
.philosophy__image,
.community__image,
.pricing__card-wrapper {
    position: relative;
}

.deco-behind {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.deco-behind--circle {
    border-radius: 50%;
    width: 75%;
    height: 75%;
}

/* Philosophy image: green circle, décalé en haut à gauche */
.philosophy__image .deco-behind--green {
    top: -30px;
    left: -30px;
    background: var(--green);
    opacity: 0.18;
}

.philosophy__image img {
    position: relative;
    z-index: 1;
}

/* Community image: peach circle, décalé en bas à droite */
.community__image .deco-behind--peach {
    bottom: -20px;
    right: -20px;
    background: var(--peach);
    opacity: 0.18;
}

/* ===========================
   RESULTS / BEFORE-AFTER — Carousel (horizontal scroll)
   =========================== */
.results__grid {
    display: none !important;
}

/* Subtitle full-width in results section */
.section--results .section__subtitle {
    max-width: none;
    margin-top: 16px;
}

.results__carousel {
    position: relative;
    margin-top: 48px;
}

.results__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar — Firefox + IE/Edge */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar — Chrome, Safari, Opera */
.results__track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.results__track .result-card {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    max-width: calc((100% - 40px) / 3);
}

.results__track .result-card__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Arrow navigation */
.results__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cta);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-base);
    box-shadow: 0 6px 20px rgba(255, 113, 0, 0.35);
}

.results__arrow:hover {
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 10px 28px rgba(255, 0, 122, 0.45);
    filter: brightness(1.08);
}

.results__arrow svg {
    width: 22px;
    height: 22px;
}

.results__arrow--prev {
    left: -10px;
}

.results__arrow--next {
    right: -10px;
}

@media (max-width: 1024px) {
    .results__track .result-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .results__track .result-card__img {
        height: 340px;
    }

    .results__arrow--prev { left: 4px; }
    .results__arrow--next { right: 4px; }
}

@media (max-width: 640px) {
    .results__track .result-card {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .results__track .result-card__img {
        height: 320px;
    }

    .results__arrow {
        width: 40px;
        height: 40px;
    }
}

/* ===========================
   BOOKING — Cal.com inline embed (split layout)
   =========================== */
.section--booking {
    background: var(--cream) !important;
}

/* Override base .booking { max-width: 700px; text-align: center; margin: 0 auto } */
.booking.booking--split {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: stretch;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
}

/* Wider container for booking section */
.section--booking .container {
    max-width: 1400px;
    width: 100%;
}

/* Force left column children to fill width */
.booking__left > * {
    max-width: 100%;
    width: 100%;
}

.booking__left .tag {
    width: auto;
    align-self: flex-start;
}

.booking__left {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking__right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.booking__perks {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking__perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
}

.booking__perks li::before {
    content: '';
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-cta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8 14.5l-3.5-3.5 1.4-1.4L8 11.7l5.6-5.6 1.4 1.4L8 14.5z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
}

.booking__calendar {
    width: 100%;
    min-height: 720px;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.booking__calendar #my-cal-inline-rdv-evaluation-bien-etre-body-scan {
    height: auto !important;
    min-height: 720px !important;
    overflow: visible !important;
}

.booking__alt {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-top: 20px;
}

.booking__alt a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking__alt a:hover {
    color: var(--pink);
}

@media (max-width: 1024px) {
    .booking--split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking__left {
        text-align: center;
    }
    .booking__perks {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .booking__calendar {
        min-height: 640px;
    }
    .booking__calendar #my-cal-inline-rdv-evaluation-bien-etre-body-scan {
        height: 640px !important;
    }
    .booking__perks li {
        font-size: 0.9rem;
    }
}

/* ===========================
   PRICING — 2 cards layout (redesigned)
   =========================== */
.pricing {
    display: block;
}

.pricing__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: stretch;
}

.pricing__cards--three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.pricing__cards--three .pricing__card {
    padding: 40px 28px;
}

.pricing__cards--three .pricing__amount {
    font-size: 3.8rem;
}

.pricing__cards--three .pricing__plan {
    font-size: 1.4rem;
}

.pricing__card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing__card-wrapper .pricing__card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing__card-wrapper .pricing__features {
    flex: 1;
}

/* --- Standard card (Carte 10) --- */
.pricing__card-wrapper:nth-child(2) .pricing__card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pricing__card-wrapper:nth-child(2) .pricing__card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 113, 0, 0.12);
}

/* --- Featured card wrapper --- */
.pricing__card-wrapper--featured {
    position: relative;
    z-index: 1;
}

/* Glow effect behind featured card */
.pricing__card-wrapper--featured::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: var(--gradient-cta);
    border-radius: calc(var(--radius-lg) + 8px);
    opacity: 0.15;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.pricing__card-wrapper--featured:hover::before {
    opacity: 0.25;
}

/* Dot pattern decorative — top right of featured card */
.pricing__card-wrapper--featured::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -15px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--pink) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 5;
}

/* --- Featured card (Carte 30) — Dark mode --- */
.pricing__card--featured {
    background: var(--dark) !important;
    border: 2px solid rgba(255, 255, 255, 0.08) !important;
    border-top: none !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.03);
}

.pricing__card--featured:hover {
    border-color: var(--pink) !important;
    border-top: none !important;
    box-shadow: 0 16px 50px rgba(255, 0, 122, 0.2) !important;
    transform: scale(1.03) translateY(-4px);
}

.pricing__card--featured::before {
    background: var(--gradient-cta);
    height: 5px;
}

.pricing__card--featured .pricing__plan {
    color: var(--white);
}

.pricing__card--featured .pricing__per {
    color: rgba(255, 255, 255, 0.5);
}

.pricing__card--featured .pricing__features li {
    color: rgba(255, 255, 255, 0.75);
}

.pricing__card--featured .pricing__features li::before {
    background: var(--gradient-cta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8 14.5l-3.5-3.5 1.4-1.4L8 11.7l5.6-5.6 1.4 1.4L8 14.5z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
}

/* --- Ribbon "Recommandé" --- */
.pricing__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 24px;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 113, 0, 0.3);
}

/* --- Per visit & saving --- */
.pricing__per {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: -20px;
    margin-bottom: 28px;
}

/* Reduce bottom margin when saving tag follows */
.pricing__per + .pricing__saving {
    margin-top: -20px;
}

.pricing__saving {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255, 113, 0, 0.1);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.pricing__card--featured .pricing__saving {
    background: rgba(255, 113, 0, 0.15);
    color: var(--peach);
}

.pricing__desc--highlight {
    font-weight: 600;
    color: var(--green);
    font-size: 1.1rem;
}

/* --- Discovery card (1st, cream/green intro offer) --- */
.pricing__card-wrapper--discovery .pricing__card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pricing__card-wrapper--discovery .pricing__card:hover {
    border-color: var(--green);
    box-shadow: 0 12px 35px rgba(135, 157, 130, 0.2);
}

.pricing__card--discovery::before {
    background: linear-gradient(135deg, var(--green), #5a7a55) !important;
    height: 4px;
}

.pricing__card--discovery .pricing__amount {
    background: linear-gradient(135deg, var(--green), #5a7a55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing__card--discovery .pricing__currency {
    color: var(--green);
}

.pricing__card--discovery .pricing__features li::before {
    background: linear-gradient(135deg, var(--green), #5a7a55);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8 14.5l-3.5-3.5 1.4-1.4L8 11.7l5.6-5.6 1.4 1.4L8 14.5z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Green badge */
.pricing__badge--green {
    background: linear-gradient(135deg, var(--green), #5a7a55) !important;
}

/* Green saving tag */
.pricing__saving--green {
    background: rgba(135, 157, 130, 0.18) !important;
    color: #5a7a55 !important;
}

/* --- Outline green button --- */
.btn--outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    cursor: pointer;
}

.btn--outline-green:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(135, 157, 130, 0.3);
}

/* --- White button variant for dark card --- */
.btn--white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    background: var(--white);
    color: var(--dark);
    border: none;
    cursor: pointer;
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .pricing__cards--three {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing__cards--three .pricing__card--featured {
        transform: scale(1);
    }

    .pricing__cards--three .pricing__card--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing__cards {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing__card--featured {
        transform: scale(1);
    }

    .pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing__card-wrapper--featured::after {
        display: none;
    }
}

/* Hide decos on small screens */
@media (max-width: 768px) {
    .deco-behind { display: none; }
}

/* ===========================
   DECORATIVE ELEMENTS — Cohérent & Artistique
   =========================== */

/* Bridging circle: philosophy → concept (vert, droite) */
.section--philosophy::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 100px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.12;
    pointer-events: none;
    z-index: 2;
}

/* Bridging circle: howitworks → services (orange, gauche) */
.section--howitworks::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 120px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.12;
    pointer-events: none;
    z-index: 2;
}

/* Bridging circle: FAQ → booking (peach, droite) */
.section--faq::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: 140px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--peach);
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

/* Gradient accent line — pricing section (gauche) */
.section--pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 2px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Gradient accent line — FAQ section (droite) */
.section--faq::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* ===========================
   TESTIMONIALS — Video + 3 stacked cards
   =========================== */
.testimonials__grid {
    display: none;
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    margin-top: 32px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    max-height: 600px;
}

.testimonials__video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
}

.testimonials__video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials__stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: stretch;
}

.testimonials__stack .testimonial {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials__stack .testimonial {
    background: #f5f1eb;
    padding: 20px 22px;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-bottom: none;
}

.testimonials__stack .testimonial:hover {
    transform: none;
    box-shadow: none;
}

.testimonials__stack .testimonial--pink { border-left-color: var(--pink); }
.testimonials__stack .testimonial--orange { border-left-color: var(--orange); }
.testimonials__stack .testimonial--green { border-left-color: var(--green); }

.testimonials__stack .testimonial__text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonials__stack .testimonial__footer {
    gap: 10px;
}

.testimonials__stack .testimonial__author {
    font-size: 0.82rem;
}

.testimonials__stack .testimonial__avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.testimonials__arrow {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--dark);
}

.testimonials__arrow:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: scale(1.08);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonials__dot--active {
    background: var(--orange);
    transform: scale(1.3);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .philosophy {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .philosophy__img {
        height: 300px;
    }

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

    .community {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .community__img {
        height: 300px;
    }

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

    .testimonials__layout {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials__layout {
        grid-template-columns: 1fr;
    }

    .testimonials__video {
        height: 350px;
    }

    .hero__stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero__stat-number {
        font-size: 1.3rem;
    }

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

    .philosophy__img,
    .community__img {
        height: 240px;
    }
}