    /* ═══════════════════════════════════════════════════ */
    /* BUTTONS                                             */
    /* ═══════════════════════════════════════════════════ */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 32px;
        font-family: var(--font-body);
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        border-radius: var(--radius-pill);
        cursor: pointer;
        transition: var(--trans-smooth);
        border: 1px solid transparent;
        text-decoration: none;
        line-height: 1;
        position: relative;
        overflow: hidden;
    }

    .btn-sm {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-primary {
        background-color: var(--clr-primary);
        color: #fff;
        box-shadow: 0 4px 20px rgba(var(--clr-primary-rgb), 0.2);
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 110%;
        height: 110%;
        transform: translate(-50%, -50%);
        border-radius: inherit;
        background: transparent;
        border: 2px solid rgba(var(--clr-primary-rgb), 0.3);
        opacity: 0;
        transition: all 0.5s ease;
        pointer-events: none;
    }

    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.25) 50%,
                transparent 100%);
        transform: skewX(-20deg);
        transition: none;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow:
            0 12px 32px rgba(var(--clr-primary-rgb), 0.3),
            0 0 0 4px rgba(var(--clr-primary-rgb), 0.1);
        color: #fff;
        background-color: var(--clr-primary);
    }

    .btn-primary:hover::before {
        opacity: 1;
        width: 130%;
        height: 130%;
        border-color: rgba(var(--clr-primary-rgb), 0.15);
        animation: btn-pulse-ring 2s ease-out infinite;
    }

    .btn-primary:hover::after {
        animation: btn-shimmer 1.4s ease-in-out 0.2s;
    }

    .btn-primary:active {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 6px 16px rgba(var(--clr-primary-rgb), 0.25);
        transition: all 0.15s ease;
    }

    @keyframes btn-pulse-ring {
        0% {
            opacity: 1;
            width: 110%;
            height: 110%;
        }

        100% {
            opacity: 0;
            width: 150%;
            height: 150%;
        }
    }

    @keyframes btn-shimmer {
        0% {
            left: -100%;
        }

        100% {
            left: 120%;
        }
    }

    .btn-outline {
        background-color: transparent;
        color: var(--clr-text-main);
        border-color: var(--clr-border);
    }

    .btn-outline:hover {
        border-color: var(--clr-text-main);
        color: var(--clr-text-main);
        background: var(--clr-surface);
    }

    .btn-text {
        padding: 0;
        background: transparent;
        color: var(--clr-text-main);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 0;
        gap: 12px;
        font-weight: 600;
        position: relative;
    }

    .btn-text::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 1px;
        background-color: var(--clr-text-main);
        transition: var(--trans-smooth);
    }

    .btn-text:hover {
        color: var(--clr-primary);
    }

    .btn-text:hover::after {
        width: 100%;
        background-color: var(--clr-primary);
    }

    /* ═══════════════════════════════════════════════════ */
    /* BADGES / TAGS                                       */
    /* ═══════════════════════════════════════════════════ */
    .badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 12px;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        border-radius: var(--radius-pill);
        background: var(--clr-surface);
        border: 1px solid var(--clr-border);
        color: var(--clr-text-main);
    }

    .badge-rose {
        background: var(--clr-primary-light);
        color: var(--clr-primary);
        border-color: transparent;
    }

    /* ═══════════════════════════════════════════════════ */
    /* CARDS                                               */
    /* ═══════════════════════════════════════════════════ */
    .card {
        background: var(--clr-surface);
        border-radius: var(--radius-md);
        transition: var(--trans-smooth);
        border: 1px solid var(--clr-border);
        box-shadow: var(--shadow-sm);
        position: relative;
        padding: 48px 40px;
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(var(--clr-text-main-rgb), 0.08);
    }

    /* ═══════════════════════════════════════════════════ */
    /* ICON CIRCLES                                        */
    /* ═══════════════════════════════════════════════════ */
    .icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--clr-primary-light);
        color: var(--clr-primary);
        margin-bottom: 32px;
        transition: var(--trans-smooth);
    }

    .card:hover .icon-circle {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 24px rgba(var(--clr-primary-rgb), 0.2);
    }

    /* ═══════════════════════════════════════════════════ */
    /* FLOATING RDV CTA                                    */
    /* ═══════════════════════════════════════════════════ */
    .floating-widget {
        position: fixed;
        bottom: 32px;
        right: 32px;
        z-index: 1000;
        background: var(--clr-surface-dark);
        color: var(--clr-surface);
        padding: 16px 32px;
        border-radius: var(--radius-pill);
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: var(--shadow-lg);
        animation: widget-attention 3s ease-in-out 5s infinite;
        overflow: hidden;
    }

    .floating-widget::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transform: skewX(-20deg);
        transition: none;
    }

    .floating-widget .rating {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-left: 16px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        opacity: 0.9;
        font-family: var(--font-body);
    }

    .floating-widget:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 24px 48px rgba(var(--clr-text-main-rgb), 0.3);
        background: var(--clr-primary);
        animation: none;
    }

    .floating-widget:hover::after {
        animation: btn-shimmer 1.2s ease-in-out;
    }

    @keyframes widget-attention {

        0%,
        100% {
            transform: translateY(0);
            box-shadow: var(--shadow-lg);
        }

        50% {
            transform: translateY(-4px);
            box-shadow: 0 24px 48px rgba(var(--clr-text-main-rgb), 0.15);
        }
    }

    @media (max-width: 768px) {
        .floating-widget {
            bottom: 16px;
            right: 16px;
            padding: 16px;
            border-radius: 50%;
        }

        .floating-widget span,
        .floating-widget .rating {
            display: none;
        }
    }

    /* ═══════════════════════════════════════════════════ */
    /* HANDWRITE EFFECT (SVG animation)                    */
    /* ═══════════════════════════════════════════════════ */
    @keyframes drawContour {
        to {
            stroke-dashoffset: 0;
        }
    }

    @keyframes hwFillColor {
        to {
            fill: var(--hw-color, currentColor);
            stroke-width: 0;
        }
    }

    .handwrite-svg {
        overflow: visible;
    }

    .hw-char {
        fill: transparent;
        stroke: var(--hw-color, currentColor);
        stroke-width: 0.8px;
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        --delay: calc(var(--char-idx) * var(--hw-speed, 0.08s));

        animation:
            drawContour 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
            hwFillColor 0.6s ease-out forwards;
        animation-delay: var(--delay), calc(var(--delay) + 0.5s);
    }

    .hw-waiting {
        fill: transparent;
        stroke: transparent;
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
    }

    @media (prefers-reduced-motion: reduce) {

        .hw-waiting,
        .hw-char {
            opacity: 1 !important;
            fill: var(--hw-color, currentColor) !important;
            stroke: none !important;
            animation: none !important;
        }
    }

    /* ═══════════════════════════════════════════════════ */
    /* HIGHLIGHT BRUSH (SVG underline effect)              */
    /* ═══════════════════════════════════════════════════ */
    .highlight-wrapper {
        position: relative;
        display: inline-block;
        z-index: 1;
    }

    .highlight-text {
        position: relative;
        z-index: 2;
    }

    .highlight-brush {
        position: absolute;
        bottom: -5px;
        left: -5%;
        width: 110%;
        height: 30px;
        z-index: 0;
        pointer-events: none;
        overflow: visible;
    }

    .brush-stroke {
        fill: none;
        stroke: var(--clr-primary-light);
        stroke-width: 12;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        animation: brush-reveal 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        animation-delay: 0.5s;
    }

    @keyframes brush-reveal {
        to {
            stroke-dashoffset: 0;
        }
    }

    /* ═══════════════════════════════════════════════════ */
    /* SECTION HEADER — Split (content + actions)          */
    /* ═══════════════════════════════════════════════════ */
    .section-header-split {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    @media (min-width: 768px) {
        .section-header-split {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }
    }

    /* ═══════════════════════════════════════════════════ */
    /* CAROUSEL — Generic horizontal scroll               */
    /* ═══════════════════════════════════════════════════ */
    .carousel-wrap {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .carousel-track {
        display: flex;
        gap: 32px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 48px 0 64px;
    }

    .carousel-track>* {
        flex: 0 0 85%;
    }

    .carousel-track::before,
    .carousel-track::after {
        content: "";
        flex: 0 0 var(--px-mobile);
    }

    .carousel-track::before {
        margin-left: auto;
    }

    .carousel-track::after {
        margin-right: auto;
    }

    @media (min-width: 768px) {

        .carousel-track::before,
        .carousel-track::after {
            flex: 0 0 var(--px-desktop);
        }
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    /* Carousel Navigation Buttons */
    .carousel-nav {
        display: none;
        gap: 16px;
    }

    .carousel-nav-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--clr-surface);
        border: 1px solid var(--clr-border);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--clr-text-main);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 12px rgba(var(--clr-text-main-rgb), 0.05);
    }

    .carousel-nav-btn:hover {
        background: var(--clr-primary);
        color: #fff;
        border-color: var(--clr-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(var(--clr-primary-rgb), 0.2);
    }

    @media (max-width: 767px) {
        .section-header-split {
            text-align: center;
            align-items: center;
        }

        .carousel-track {
            padding-top: 16px;
            padding-bottom: 40px;
            scroll-snap-type: x mandatory;
            scroll-padding-left: var(--px-mobile);
            gap: 16px;
        }

        .carousel-track>* {
            flex: 0 0 80%;
            scroll-snap-align: start;
        }
    }

    @media (min-width: 768px) {
        .carousel-track {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 32px;
            overflow-x: visible;
            padding: 48px var(--px-desktop) 64px;
        }

        .carousel-track::before,
        .carousel-track::after {
            display: none;
        }

        .carousel-nav {
            display: none;
        }
    }

    /* ═══════════════════════════════════════════════════ */
    /* VIDEO PLAYER (thumbnail + overlay)                  */
    /* ═══════════════════════════════════════════════════ */
    .video-wrapper {
        position: relative;
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        aspect-ratio: 16/9;
        display: block;
    }

    .video-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease;
    }

    .video-wrapper:hover img {
        transform: scale(1.05);
    }

    .video-overlay {
        position: absolute;
        inset: 0;
        background: rgba(var(--clr-text-main-rgb), 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--trans-smooth);
    }

    .video-wrapper:hover .video-overlay {
        background: rgba(var(--clr-text-main-rgb), 0.3);
    }

    .play-circle {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--trans-smooth);
        box-shadow: 0 8px 32px rgba(var(--clr-text-main-rgb), 0.1);
    }

    @media (min-width: 1024px) {
        .play-circle {
            width: 100px;
            height: 100px;
        }
    }

    .video-wrapper:hover .play-circle {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(255, 255, 255, 1);
    }

    .play-circle svg {
        margin-left: 6px;
        color: var(--clr-primary);
    }

    /* ═══════════════════════════════════════════════════ */
    /* YOUTUBE CONSENT WALL (RGPD two-click pattern)      */
    /* ═══════════════════════════════════════════════════ */
    .yt-consent-wall {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .yt-consent-thumb {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
        transition: filter 0.4s ease;
    }

    .yt-consent-wall:hover .yt-consent-thumb {
        filter: brightness(0.35);
    }

    .yt-consent-overlay {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 24px;
        text-align: center;
    }

    .yt-consent-play {
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.9;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    }

    .yt-consent-play:hover {
        transform: scale(1.15);
        opacity: 1;
    }

    .yt-consent-text {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.8rem;
        max-width: 320px;
        line-height: 1.5;
        margin: 0;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .yt-consent-text a {
        color: #fff;
        text-decoration: underline;
        font-weight: 600;
    }

    .yt-consent-text a:hover {
        opacity: 0.8;
    }

    /* YouTube iframe loaded after consent */
    .yt-consent-wall.yt-accepted {
        display: none;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* ═══════════════════════════════════════════════════ */
    /* FORMS                                               */
    /* ═══════════════════════════════════════════════════ */
    .lead-form {
        background: var(--clr-surface);
        border-radius: var(--radius-md);
        padding: 36px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-group label {
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--clr-text-muted);
    }

    .form-group input,
    .form-group select {
        font-family: var(--font-body);
        font-size: 1rem;
        padding: 12px 16px;
        border: 1px solid var(--clr-border);
        border-radius: var(--radius-sm);
        background: var(--clr-bg);
        color: var(--clr-text-main);
        transition: var(--trans-fast);
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--clr-primary);
        box-shadow: 0 0 0 3px rgba(var(--clr-primary-rgb), 0.1);
    }

    .form-group input::placeholder {
        color: var(--clr-text-muted);
        opacity: 0.6;
    }

    .lead-form .btn-primary {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .form-note {
        font-size: 0.8rem;
        color: var(--clr-text-muted);
        text-align: center;
        margin: 0;
    }

    /* ─── RGPD consent checkbox ─── */
    .form-consent {
        flex-direction: row !important;
        align-items: flex-start;
        gap: 10px;
    }

    .form-consent input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-top: 2px;
        accent-color: var(--clr-primary);
        cursor: pointer;
    }

    .form-consent .consent-text {
        font-size: 0.82rem;
        line-height: 1.5;
        color: var(--clr-text-soft);
        text-transform: none;
        letter-spacing: 0;
        font-weight: 400;
    }

    .form-consent .consent-text a {
        color: var(--clr-primary);
        text-decoration: underline;
        font-weight: 600;
    }

    .form-consent .consent-text a:hover {
        opacity: 0.7;
    }

    /* ═══════════════════════════════════════════════════ */
    /* MOBILE CENTERING & CAROUSELS                        */
    /* ═══════════════════════════════════════════════════ */
    @media (max-width: 767px) {

        /* Safe text centering for common elements */
        h1,
        h2,
        .section-intro {
            text-align: center;
        }

        /* Specific section headers to center */
        .section-header,
        .hero-content,
        .footer-content,
        .card-content,
        .premium-card,
        .premium-card-content,
        .consulter-info-card,
        .vision-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Target specifically the lists in cards that should be left-aligned but centered as blocks */
        .service-list,
        .methode-list,
        .approche-list,
        .premium-card ul,
        .consulter-list {
            text-align: left;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        /* Force center for icons, buttons */
        .icon-circle,
        .premium-card>i {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 16px;
        }

        .btn:not(.carousel-nav-btn) {
            justify-content: center;
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Make grids into carousels on mobile */
        .problematiques-grid,
        .modalites-grid,
        .benefices-grid,
        .partenariats-grid,
        .domaines-grid,
        .methodologie-grid,
        .domaines-cards,
        .blog-grid,
        .services-grid,
        .premium-cards-wrapper {
            display: flex !important;
            flex-wrap: nowrap !important;
            justify-content: flex-start !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            scroll-snap-type: x mandatory !important;
            scroll-padding-left: var(--px-mobile) !important;
            scroll-padding-right: var(--px-mobile) !important;
            padding-bottom: 2rem !important;
            margin-left: calc(var(--px-mobile) * -1) !important;
            margin-right: calc(var(--px-mobile) * -1) !important;
            padding-left: var(--px-mobile) !important;
            padding-right: var(--px-mobile) !important;
            width: calc(100% + (var(--px-mobile) * 2)) !important;
            max-width: none !important;
            gap: 1rem !important;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
            scroll-behavior: smooth;
            align-items: stretch !important;
        }

        /* Hide scrollbars for the carousels */
        .problematiques-grid::-webkit-scrollbar,
        .modalites-grid::-webkit-scrollbar,
        .benefices-grid::-webkit-scrollbar,
        .partenariats-grid::-webkit-scrollbar,
        .domaines-grid::-webkit-scrollbar,
        .methodologie-grid::-webkit-scrollbar,
        .domaines-cards::-webkit-scrollbar,
        .blog-grid::-webkit-scrollbar,
        .services-grid::-webkit-scrollbar,
        .premium-cards-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* Set widths and snapping for carousel items */
        .problematiques-grid>*,
        .modalites-grid>*,
        .benefices-grid>*,
        .partenariats-grid>*,
        .domaines-grid>*,
        .methodologie-grid>*,
        .domaines-cards>*,
        .blog-grid>*,
        .services-grid>*,
        .premium-cards-wrapper>* {
            flex: 0 0 85% !important;
            max-width: 85% !important;
            scroll-snap-align: start !important;
            margin: 0 !important;
            height: auto !important;
        }
    }