/* @font-face Nagoda -> assets/css/fonts.css */
        :root {
            --cream: #F1EADE; --cream-light: #F7F2E9;
            --sand: #EAD2BE; --taupe: #C7A999; --mocha: #9C7558; --sage: #9DB3AC;
            --accent: #47433A; --accent-2: #9DB3AC; --accent-soft: #D6CBBC; --accent-sage: #9DB3AC;
            --ink: #47433A; --text-sec: #6B5644; --text-mut: #9C8670;
            --border: #D6CBBC;
            --accent-light: #6B5644;
            --accent-glow: rgba(71, 67, 58, 0.08);
            --white: #F7F2E9;
            --nagoda: 'Nagoda', Georgia, serif;
            --body: 'Manrope', system-ui, sans-serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--body);
            color: var(--ink);
            background: linear-gradient(to bottom, rgb(230, 222, 208), #f7f2e9);
            background-attachment: fixed;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            /* Effet aimant générique : tous les <a> reçoivent les CSS vars magnet via JS */
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }

        /* Équilibrage automatique des lignes — appliqué partout pour un rendu
           visuel plus harmonieux (le navigateur répartit les mots équitablement). */
        * {
            text-wrap: balance;
        }

        /* ========== REVEAL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            /* On utilise la propriété CSS moderne `translate` (et non `transform`)
               pour que la reveal animation n'entre pas en conflit avec les
               transforms magnet. Les deux composent naturellement et indépendamment. */
            translate: 0 30px;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        translate 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            translate: 0 0;
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ========== HEADER ========== */
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 1rem 2.5rem;
            display: flex; align-items: center; justify-content: space-between;
            transition: all 0.5s;
        }
        .site-header.scrolled {
            background: rgb(230, 222, 208); /* opaque : pas de transparence, pas de blur derrière */
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            box-shadow: none;
            border: none;
            padding: 0.6rem 2.5rem;
        }
        /* Logo : un seul SVG (.logo-full). Au scroll, le groupe .logo-rest (injecté par JS)
           glisse à gauche et s'efface, ne laissant que le groupe coeur. */
        .logo-full {
            display: inline-block; overflow: hidden;
            height: 22px; width: 196px; flex: 0 0 auto;
            transition: width 0.45s cubic-bezier(0.6, 0, 0.35, 1);
        }
        .logo-full svg { height: 100%; width: auto; display: block; }
        .logo-rest { transition: transform 0.45s cubic-bezier(0.6, 0, 0.35, 1), opacity 0.35s ease; }
        .logo-heart { display: none; }
        .site-header.scrolled .logo-full { width: 28px; }
        .site-header.scrolled .logo-rest { transform: translateX(-110%); opacity: 0; }
        .nav-links { display: flex; gap: 1.8rem; align-items: center; font-size: 0.9375rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-sec); }
        .nav-links a { transition: color 0.3s; }
        .nav-links a:not(.nav-cta):hover { color: #000; font-weight: 600; }
        .nav-links > a:not(.nav-cta),
        .nav-dropdown-toggle {
            position: relative;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .nav-links > a:not(.nav-cta)::after,
        .nav-dropdown-toggle::after {
            content: '';
            position: absolute;
            left: 50%; bottom: -6px;
            width: 0; height: 1px;
            background: var(--accent);
            transition: width 0.35s ease, left 0.35s ease;
        }
        .nav-links > a:not(.nav-cta):hover::after,
        .nav-dropdown-toggle:hover::after,
        .nav-item-dropdown:hover .nav-dropdown-toggle::after,
        .nav-item-dropdown:focus-within .nav-dropdown-toggle::after {
            width: 100%; left: 0;
        }
        .nav-cta { padding: 0.5rem 1.4rem; border: 1px solid var(--accent); color: var(--accent) !important; font-weight: 500; position: relative; overflow: hidden; z-index: 1; transition: color 0.5s; transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0); }
        .nav-cta::before { content: ""; position: absolute; z-index: -1; background: var(--accent); height: 250px; width: 400px; border-radius: 50%; top: 100%; left: 100%; transition: all 0.7s; }
        .nav-cta:hover { color: #fff !important; }
        .nav-cta:hover::before { top: -50px; left: -50px; }
        .nav-item-dropdown { position: relative; display: inline-flex; align-items: center; }
        .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; }
        .nav-dropdown-toggle .dropdown-arrow { font-size: 0.85rem; transition: transform 0.3s; line-height: 1; opacity: 0.75; }
        .nav-item-dropdown:hover .nav-dropdown-toggle .dropdown-arrow,
        .nav-item-dropdown:focus-within .nav-dropdown-toggle .dropdown-arrow { transform: rotate(180deg); }
        .nav-dropdown-menu {
            position: absolute; top: 100%; left: 50%;
            transform: translateX(-50%) translateY(-6px);
            min-width: 240px; padding: 0.6rem 0;
            background: rgba(245,239,230,0.96);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border); border-radius: 6px;
            box-shadow: 0 14px 36px rgba(30,26,22,0.10);
            opacity: 0; visibility: hidden; pointer-events: none;
            transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
            display: flex; flex-direction: column;
            margin-top: 0.7rem;
        }
        .nav-dropdown-menu::before { content: ''; position: absolute; top: -0.7rem; left: 0; right: 0; height: 0.7rem; }
        .nav-item-dropdown:hover .nav-dropdown-menu,
        .nav-item-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1; visibility: visible; pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
        .nav-dropdown-menu a {
            padding: 0.6rem 2.4rem 0.6rem 1.2rem;
            display: flex; flex-direction: column; gap: 0;
            white-space: nowrap;
            position: relative;
            transition: background 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .nav-dropdown-menu a::after {
            content: '→';
            position: absolute;
            right: 1.1rem; top: 50%;
            color: var(--accent);
            font-size: 0.95rem; line-height: 1;
            opacity: 0;
            transform: translate(-10px, -50%);
            transition: opacity 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .nav-dropdown-menu .dd-name {
            font-size: 0.875rem; letter-spacing: 0.08em;
            text-transform: uppercase; color: var(--text-sec);
            font-weight: 700;
            transition: color 0.25s;
        }
        .nav-dropdown-menu .dd-desc {
            font-size: 0.875rem; letter-spacing: 0.02em;
            text-transform: none; color: var(--text-mut);
            font-weight: 300;
            transition: color 0.25s;
        }
        .nav-dropdown-menu a:hover { background: rgba(157,181,170,0.10); transform: translateX(5px); font-weight: 600; }
        .nav-dropdown-menu a:hover::after { opacity: 1; transform: translate(0, -50%); }
        .nav-dropdown-menu a:hover .dd-name { color: var(--accent); }
        .nav-dropdown-menu a:hover .dd-desc { color: var(--text-sec); }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
        }
        .hero-label {
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-family: var(--nagoda);
            font-size: clamp(2rem, 6vw, 6rem);
            font-weight: 400;
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--ink);
            margin-bottom: 0.5rem;
        }
        .hero-subtitle {
            font-family: var(--nagoda);
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 400;
            color: var(--text-mut);
            font-style: italic;
            margin-bottom: 2rem;
            letter-spacing: 0.02em;
        }
        .hero-tagline {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-sec);
            max-width: 520px;
            margin: 0 auto 2.5rem;
        }
        .hero-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            column-gap: 0.5rem;
            row-gap: 0.5rem;
            margin: 0 auto 2.5rem;
            padding: 0;
        }
        .hero-badge {
            background-color: rgba(156, 134, 112, 0.19);
            border: none;
            color: #47433a;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.06em;
            padding: 0.35rem 0.9rem;
            text-transform: uppercase;
            margin: 0;
        }
        .hero-badge strong {
            color: var(--accent);
            font-weight: 900;
        }

        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .btn-hero-fill, .btn-hero-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            font-family: var(--body);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
            cursor: pointer;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .btn-hero-fill {
            background: var(--accent);
            color: white;
            border: none;
        }
        .btn-hero-fill:hover {
            background: var(--accent);
            border-color: transparent;
            transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0px) - 2px), 0);
            box-shadow: 0 8px 30px rgba(71, 67, 58, 0.18);
        }
        .btn-hero-ghost {
            background: transparent;
            color: var(--accent);
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.5s, transform 0.3s, box-shadow 0.3s;
        }
        .btn-hero-ghost::before {
            content: "";
            position: absolute;
            z-index: -1;
            background: var(--accent);
            height: 250px;
            width: 400px;
            border-radius: 50%;
            top: 100%;
            left: 100%;
            transition: all 0.7s;
        }
        .btn-hero-ghost:hover {
            color: #fff;
            transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0px) - 2px), 0);
        }
        .btn-hero-ghost:hover::before { top: -50px; left: -50px; }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-mut);
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .hero-scroll-line {
            width: 1px;
            height: 32px;
            background: linear-gradient(to bottom, var(--accent), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.4; transform: scaleY(1); }
            50% { opacity: 1; transform: scaleY(1.2); }
        }

        /* ========== SECTIONS COMMON ========== */
        .section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-family: var(--nagoda);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 400;
            line-height: 1;
            color: var(--ink);
            margin-bottom: 1rem;
            text-wrap: balance;
        }
        .section-title em {
            color: var(--accent);
            font-style: normal;
        }

        /* ========== WHAT IS EPI ========== */
        .what-section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .what-text {
            max-width: 760px;
            margin-top: 3rem;
        }
        .what-text p {
            color: var(--text-sec);
            font-size: 1rem;
            line-height: 1.85;
            margin-bottom: 1.2rem;
        }
        .what-text p:last-child { margin-bottom: 0; }
        .what-text strong {
            color: var(--ink);
            font-weight: 500;
        }

        .what-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
        .what-kw {
            padding: 0.35rem 0.9rem;
            background: var(--accent-glow);
            border: 1px solid rgba(157, 181, 170, 0.12);
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--accent);
            letter-spacing: 0.02em;
        }

        /* ========== DIVIDER ========== */
        .divider {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .divider-line {
            height: 1px;
            background: var(--border);
            position: relative;
        }
        .divider-line::after {
            content: '';
            position: absolute;
            left: 50%;
            top: -3px;
            transform: translateX(-50%);
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.4;
        }

        /* ========== SYMPTOMS GRID ========== */
        .symptoms-section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 3rem;
        }
        .symptom-card {
            padding: 2rem 1.5rem;
            background: var(--white);
            border: 1px solid var(--border);
            text-align: center;
            transition: border-color 0.4s, box-shadow 0.4s;
            cursor: default;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .symptom-card:hover {
            border-color: rgba(71, 67, 58, 0.3);
            box-shadow: 0 12px 40px rgba(71, 67, 58, 0.06);
        }
        .symptom-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--accent-glow);
        }
        .symptom-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .symptom-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--ink);
            line-height: 1.4;
        }

        /* ========== PROCESS TIMELINE ========== */
        .process-section {
            padding: 4rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        /* ===== ACCORDÉONS PROCESS — animation scroll-pin (effet Apple-like) =====
           Au scroll, le .process-accordion-text se rétrécit (height 0 + opacity 0)
           et la card se colle à la suivante via marginBottom négatif.
           Le timeline GSAP est plus bas dans le <script>. */
        /* Wrapper : réserve un grand espace de scroll pendant que les accordions sont sticky.
           Hauteur = espace nécessaire pour que toute l'animation scrub se joue avant que
           le sticky ne se "décolle". 180vh = ~1480px sur viewport 820 = beaucoup de marge. */
        .process-pin-wrapper {
            position: relative;
            margin-top: 3rem;
            height: 180vh;
        }
        .process-accordions {
            position: sticky;
            top: 140px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 3rem;
        }
        /* Header (label + titre) inclus dans le sticky : margin négatif à gauche
           pour ramener le titre à la position normale (sans le padding pour les dots) */
        .process-header {
            margin-left: -3rem;
            margin-bottom: 2rem;
        }
        /* Wrapper de la liste des accordions : porte la ligne timeline (qui démarre
           naturellement après le header). */
        .process-accordion-list {
            position: relative;
        }
        /* Ligne timeline alignée pile sur le centre des cercles : on compense le
           padding-left du parent (.process-accordions a padding-left: 3rem) puis on
           ajoute 11px (= rayon du cercle) pour atteindre le centre. */
        .process-accordion-list::before {
            content: '';
            position: absolute;
            left: calc(-3rem + 11px);
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--accent), var(--border));
        }
        .process-accordion {
            position: relative;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            margin-bottom: 2.2rem;
            transition: none;
        }
        .process-accordion:last-child { margin-bottom: 0; }
        /* Dot extérieur (cercle vide bordé d'accent) */
        .process-accordion::before {
            content: '';
            position: absolute;
            left: -3rem;
            top: 0.15rem;
            width: 23px;
            height: 23px;
            border-radius: 50%;
            background: var(--cream);
            border: 2px solid var(--accent);
            z-index: 1;
            transition: background 0.4s, box-shadow 0.4s;
        }
        /* Dot intérieur (point central, opaque au hover) */
        .process-accordion::after {
            content: '';
            position: absolute;
            left: calc(-3rem + 8px);
            top: calc(0.15rem + 8px);
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0;
            transition: opacity 0.4s, background 0.4s;
            z-index: 2;
        }
        .process-accordion:hover::before {
            background: var(--accent);
            box-shadow: 0 0 0 6px rgba(157, 181, 170, 0.1);
        }
        .process-accordion:hover::after {
            opacity: 1;
            background: white;
        }
        .process-accordion-num {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-mut);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.25rem;
        }
        .process-accordion-title {
            font-family: var(--nagoda);
            font-size: 1.4rem;
            color: var(--ink);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .process-accordion-text {
            color: var(--text-sec);
            font-size: 0.95rem;
            line-height: 1.7;
            overflow: hidden;
            padding-bottom: 0.4rem;
            max-width: 560px;
            transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        padding-bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }
        /* Hover : la card stackée se "déplie" temporairement, override GSAP via !important.
           Quand on quitte le hover, GSAP reprend la main et applique la valeur du scrub. */
        @media (hover: hover) {
            .process-accordion {
                transition: margin-bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .process-accordion:hover .process-accordion-text {
                height: auto !important;
                opacity: 1 !important;
                padding-bottom: 0.4rem !important;
            }
            .process-accordion:hover {
                margin-bottom: 2.2rem !important;
            }
        }
        @media (max-width: 768px) {
            /* Sur mobile : pas de sticky ni de scroll-stack, affichage classique en cascade.
               Le wrapper doit retrouver sa hauteur naturelle. */
            .process-pin-wrapper { height: auto; }
            .process-accordions { position: static; padding-left: 2.5rem; }
            .process-accordion-list::before { left: calc(-2.5rem + 11px); }
            .process-accordion::before { left: -2.5rem; }
            .process-accordion::after { left: calc(-2.5rem + 8px); }
            .process-header { margin-left: -2.5rem; margin-bottom: 1.5rem; }
            .process-accordion { margin-bottom: 1.6rem; }
            .process-accordion-title { font-size: 1.2rem; }
            .process-accordion-text { font-size: 0.9rem; }
        }

        /* ========== PRICING ========== */
        .pricing-section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        /* Layout : 2 colonnes — gauche (prix empilés) | droite (détails + bouton) */
        .pricing-card {
            background: transparent;
            border: none;
            padding: 0;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 1.5rem;
            align-items: stretch;
        }
        .pricing-prices {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .pricing-price-box {
            background: var(--white);
            border: 1px solid var(--border);
            padding: 1.6rem 1.8rem;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: baseline;
            column-gap: 1.2rem;
            row-gap: 0.4rem;
        }
        .pricing-price-box .pricing-label {
            font-size: 1.25rem;
            color: var(--ink);
            font-weight: 800;
            line-height: 1.2;
        }
        .pricing-price-box .pricing-label small {
            display: block;
            font-family: var(--body);
            font-size: 1rem;
            color: var(--text-mut);
            margin-top: 0.35rem;
            font-weight: 400;
            line-height: 1.4;
        }
        .pricing-price-box .pricing-value {
            font-family: var(--nagoda);
            font-size: 1.2rem;
            color: var(--ink);
            line-height: 1;
            white-space: nowrap;
        }
        .pricing-note {
            grid-column: 1 / -1;
            margin-top: 1rem;
            padding: 0.9rem 1.1rem;
            background: var(--accent-glow);
            border-left: 3px solid var(--accent);
            font-size: 0.875rem;
            color: var(--text-sec);
            line-height: 1.6;
        }
        .pricing-details {
            padding: 0 2.2rem;
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }
        .pricing-info {
            font-size: 1rem;
            color: var(--text-mut);
            line-height: 1.4em;
            font-weight: 400;
            margin: 0;
        }
        .pricing-btn-big {
            margin-top: 1rem;
            padding: 1.2rem 2rem !important;
            font-size: 0.98rem !important;
        }
        .pricing-location {
            font-size: 1rem;
            color: var(--text-mut);
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pricing-location svg {
            width: 16px;
            height: 16px;
            stroke: var(--text-mut);
            fill: none;
            stroke-width: 1.5;
            flex-shrink: 0;
        }
        .btn-rdv {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: white;
            font-family: var(--body);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.3s, box-shadow 0.3s;
            text-decoration: none;
            width: fit-content;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .btn-rdv:hover {
            background: var(--accent);
            transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0px) - 1px), 0);
            box-shadow: 0 8px 30px rgba(71, 67, 58, 0.18);
        }
        .btn-rdv svg {
            width: 16px; height: 16px;
            stroke: white; fill: none;
            stroke-width: 2;
        }

        /* ========== BOUTONS PRIMAIRES — Hover lumineux (spotlight curseur + halo) ========== */
        .btn-hero-fill,
        .btn-rdv,
        .btn-primary {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        /* ::before — Gradient mocha→brun foncé qui suit le curseur (background "vivant") */
        .btn-hero-fill::before,
        .btn-rdv::before,
        .btn-primary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle 220px at var(--mx, 50%) var(--my, 50%),
                var(--mocha) 30%,
                #684226 90%
            );
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            mix-blend-mode: lighten;
        }
        /* ::after — Lumière crème mocha-tintée, qui suit aussi le curseur */
        .btn-hero-fill::after,
        .btn-rdv::after,
        .btn-primary::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle 160px at var(--mx, 50%) var(--my, 50%),
                rgb(255 241 214 / 55%) 0%,
                #9c755878 25%,
                #9c755824 95%
            );
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            mix-blend-mode: plus-lighter;
        }
        .btn-hero-fill:hover::before,
        .btn-rdv:hover::before,
        .btn-primary:hover::before,
        .btn-hero-fill:hover::after,
        .btn-rdv:hover::after,
        .btn-primary:hover::after {
            opacity: 1;
        }
        .btn-hero-fill:hover,
        .btn-rdv:hover,
        .btn-primary:hover {
            box-shadow:
                0 6px 22px rgba(255, 200, 130, 0.32),
                0 0 40px rgba(255, 224, 170, 0.25);
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-list {
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            text-wrap: balance;
            font-family: var(--body);
            font-size: 18px;
            font-weight: 500;
            color: var(--ink);
            transition: color 0.3s;
        }
        .faq-question:hover { color: var(--accent); }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 1rem;
            transition: background 0.3s, border-color 0.3s;
        }
        .faq-icon svg {
            width: 14px; height: 14px;
            stroke: var(--text-mut);
            fill: none;
            stroke-width: 2;
            transition: transform 0.3s;
        }
        .faq-question:hover .faq-icon {
            background: var(--accent);
            border-color: var(--accent);
        }
        .faq-question:hover .faq-icon svg {
            stroke: white;
        }
        .faq-item.open .faq-icon {
            background: var(--accent);
            border-color: var(--accent);
        }
        .faq-item.open .faq-icon svg {
            stroke: white;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        padding 0.4s;
        }
        .faq-item.open .faq-answer {
            max-height: 600px;
        }
        .faq-answer-inner {
            padding-bottom: 2.25rem;
            color: var(--text-sec);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ========== CONTACT (rattaché au footer) ========== */
        .contact-section {
            position: relative;
            z-index: 1;
            background: var(--cream, #F1EADE);
            padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 5vw, 4rem);
            margin: 0;
        }
        .contact-section .section-inner { max-width: 1100px; margin: 0 auto; }
        .contact-section .s-overline { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
        .contact-section .s-title { font-family: var(--nagoda); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.1; color: var(--ink); margin-bottom: 2rem; }
        .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
        .contact-method { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); transition: padding-left 0.3s; text-decoration: none; color: inherit; }
        .contact-method:first-of-type { border-top: 1px solid var(--border); }
        .contact-method:hover { padding-left: 0.4rem; }
        .contact-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
        .contact-method-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mut); margin-bottom: 0.15rem; }
        .contact-method-value { font-size: 1rem; color: var(--ink); }
        .contact-method span:not(.contact-icon) { display: flex; flex-direction: column; }
        .contact-address { margin-top: 2rem; }
        .contact-address h4 { font-family: var(--nagoda); font-size: 1.2rem; margin-bottom: 0.5rem; }
        .contact-address p { font-size: 0.95rem; color: var(--text-sec); line-height: 1.7; }
        .calendly-widget { background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
        .calendly-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.8rem; }
        .calendly-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #93AAB8); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--nagoda); font-size: 0.85rem; flex-shrink: 0; }
        .calendly-header-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
        .calendly-header-text p { font-size: 0.78rem; color: var(--text-mut); }
        .calendly-body { padding: 1.2rem 1.5rem; }
        .calendly-month { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .calendly-month span { font-family: var(--nagoda); font-size: 1rem; color: var(--ink); }
        .calendly-month button { background: none; border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.7rem; color: var(--text-sec); }
        .calendly-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; margin-bottom: 0.8rem; }
        .calendly-days .day-label { font-size: 0.6rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: 0.05em; padding: 0.3rem 0; }
        .calendly-days .day { font-size: 0.78rem; padding: 0.5rem 0; color: var(--text-sec); border-radius: 50%; transition: all 0.2s; cursor: default; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
        .calendly-days .day.empty { visibility: hidden; }
        .calendly-days .day.available { color: var(--ink); font-weight: 600; cursor: pointer; }
        .calendly-days .day.available:hover { background: rgba(181,120,78,0.08); color: var(--accent); }
        .calendly-days .day.selected { background: var(--accent); color: white; font-weight: 600; }
        .calendly-days .day.past { color: var(--border); }
        .calendly-slots { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
        .calendly-slots-title { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.4rem; }
        .calendly-slot { padding: 0.65rem 1rem; border: 1px solid var(--accent); border-radius: 0.4rem; text-align: center; font-size: 0.82rem; color: var(--accent); font-weight: 500; cursor: pointer; transition: all 0.2s; }
        .calendly-slot:hover { background: var(--accent); color: white; }
        .calendly-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); text-align: center; }
        .calendly-footer a { font-size: 0.78rem; color: var(--accent); font-weight: 500; letter-spacing: 0.05em; text-decoration: none; }
        .calendly-powered { font-size: 0.6rem; color: var(--text-mut); text-align: center; margin-top: 0.5rem; }
        .contact-section + .site-footer { margin-top: 0; }
        @media (max-width: 768px) {
            .contact-layout { grid-template-columns: 1fr; }
        }

        /* ========== FOOTER ========== */
        .site-footer { background: var(--ink, #2B2420); padding: 3.5rem 0 1.5rem; position: relative; z-index: 10; border-top: none; max-width: none; margin: 0; display: block; }
        /* Lumière curseur sur le fond foncé du footer — même recette que .btn-fill :
           fond mocha "vivant" (::before) + spot crème (::after), révélés au survol. */
        .site-footer { isolation: isolate; }
        /* z-index:-1 : la lumière éclaire le FOND du footer, le texte reste net
           au-dessus (sinon le spot rendait les liens illisibles au survol). */
        .site-footer::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: radial-gradient(circle 280px at var(--mx, 50%) var(--my, 50%),
                var(--mocha, #9C7558) 30%,
                #684226 90%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            mix-blend-mode: lighten;
        }
        .site-footer::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: radial-gradient(circle 190px at var(--mx, 50%) var(--my, 50%),
                rgb(255 241 214 / 45%) 0%,
                #9c755878 25%,
                #9c755824 95%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
            mix-blend-mode: plus-lighter;
        }
        .site-footer:hover::before,
        .site-footer:hover::after { opacity: 1; }
        .site-footer .section-inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
        .footer-brand { font-family: var(--nagoda); font-size: 1.1rem; color: #FFFFFF; letter-spacing: 0.08em; }
        .footer-brand small { display: block; font-family: var(--body); font-size: 0.6rem; color: #EDE3CF; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem; }
        .footer-brand-desc { font-size: 0.82rem; color: #EDE3CF; line-height: 1.6; margin-top: 1rem; max-width: 280px; }
        .footer-col h5 { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: #FFFFFF; margin-bottom: 1rem; font-weight: 500; }
        .footer-col a { display: block; font-size: 0.82rem; color: #EDE3CF; transition: color 0.3s, text-shadow 0.3s; margin-bottom: 0.6rem; text-decoration: none; transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0); }
        .footer-col a:hover { color: #FFFFFF; font-weight: 600; text-shadow: 0 0 1px currentColor, 0 0 14px rgba(255, 255, 255, 0.4); }
        .footer-map-link { line-height: 1.7; transition: color 0.3s, text-shadow 0.3s; }
        .site-footer a.footer-map-link:hover { color: #FFFFFF; font-weight: 600; text-shadow: 0 0 1px currentColor, 0 0 14px rgba(255, 255, 255, 0.4); text-decoration: none; }
        .contact-address a.footer-map-link:hover { color: var(--accent); font-weight: 600; text-decoration: none; text-shadow: none; }
        .footer-col p { font-size: 0.82rem; color: #EDE3CF; line-height: 1.7; }
        .footer-bottom { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #3D3226; display: flex; justify-content: space-between; }
        .footer-bottom p, .footer-bottom a { font-size: 0.7rem; color: #EDE3CF; text-decoration: none; }
        .footer-bottom a { transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0); transition: color 0.3s, text-shadow 0.3s; }
        .footer-bottom a:hover { color: #FFFFFF; font-weight: 600; text-shadow: 0 0 1px currentColor, 0 0 14px rgba(255, 255, 255, 0.4); }

        /* Liens simples : hover unifie (font-weight 600 + contraste fort). Exclut boutons / pill-tags. */
        a:not([class*="btn"]):not(.nav-cta):not(.mandala-tag):not(.mandala-modal-tag):not(.sym):not(.calendly-slot):not(.footer-map-link):hover {
            font-weight: 600;
            color: #000;
        }
        .site-footer a:not([class*="btn"]):not(.nav-cta):not(.mandala-tag):not(.mandala-modal-tag):not(.sym):not(.calendly-slot):not(.footer-map-link):hover { color: #fff !important; }
        /* Mobile : scroll-padding-top = header (~50px) + page-nav (~46px) pour les ancres */
        @media (max-width: 768px) {
            html { scroll-padding-top: 110px; }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .site-header { padding: 0.8rem 1.5rem; }
            .logo-heart { left: 1.5rem; }
            .nav-links { gap: 1rem; font-size: 0.75rem; }

            .hero { min-height: 90vh; padding: 7rem 1.5rem 3rem; }
            .hero-title { font-size: clamp(4rem, 18vw, 6rem); }

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

            .pricing-card {
                grid-template-columns: 1fr;
                padding: 2rem;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-badges { flex-direction: column; align-items: center; }
        }

        /* Dust canvas : poussière émanant de courbes invisibles, en background
           de toute la page. mix-blend-mode: screen → s'additionne au fond crème.
           z-index: -1 → au-dessus du background body, sous tout le contenu. */
        .dust-canvas {
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: -1;
            mix-blend-mode: screen;
        }
        @media (prefers-reduced-motion: reduce) {
            .dust-canvas { display: none; }
        }

        /* ============================================================
           FIX BLOCAGE MOBILE (WebKit iOS) — un canvas position:fixed plein
           écran repeint à chaque frame, SOUS des sections backdrop-filter et
           près de l'iframe Calendly, provoquait un écran blanc + blocage total
           du scroll sur iPhone (tous les navigateurs iOS utilisent WebKit, pas
           seulement Safari, d'où le contournement is-safari insuffisant).
           Sur mobile on supprime le canvas fixe et les backdrop-filter : les
           fonds opaques suffisent à la lisibilité, et le scroll redevient fluide.
           ============================================================ */
        @media (max-width: 768px) {
            .dust-canvas { display: none !important; }
            .what-section,
            .symptoms-section,
            .process-section,
            .pricing-section,
            .faq-section {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(245, 239, 230, 0.92);
            }
            /* ROBUSTESSE iOS : le contenu reste TOUJOURS affiché, sans transform
               d'apparition. Une couche GPU (transform/opacity) sur du contenu déjà
               visible pouvait se « dé-peindre » au redimensionnement de la barre
               d'adresse (scroll haut/bas) → sections qui disparaissent + écran vide.
               On supprime ces couches sur mobile : le contenu apparaît directement. */
            .reveal {
                opacity: 1 !important;
                transform: none !important;
            }
            /* ===== FIX MAJEUR iOS — saturation du compositeur =====
               Chaque `transform: translate3d(var(--magnet-x)…)` force une couche
               GPU séparée. Le magnet ne tourne PAS sur mobile → ces couches sont
               INUTILES, mais s'accumulent (chaque symptôme, chaque lien, chaque
               carte…). Sur iOS, trop de couches → le compositeur abandonne et
               cesse de peindre tout ce qui suit (header transparent + contenu
               blanc à partir de la liste des symptômes). On retire ces couches. */
            .nav-cta, .nav-dropdown-toggle,
            .btn-hero-fill, .btn-hero-ghost, .btn-rdv,
            .indications-cta, .indications-cta-btn,
            .symptom-card, .faq-item, .process-accordion,
            .page-nav a, .indication-list li,
            .footer-col a, .footer-bottom a,
            .cards-grid .card {
                transform: none !important;
            }
            /* Les mix-blend-mode (lueurs de boutons, halos…) créent aussi des
               couches GPU. Inutiles sur mobile (pas de survol) → on les neutralise
               pour TOUS les navigateurs iOS (le contournement is-safari ne couvre
               pas iOS Chrome/Firefox, qui sont aussi du WebKit). */
            *, *::before, *::after { mix-blend-mode: normal !important; }
        }

        /* Frosted glass : toutes les sections (sauf le hero) flouttent le canvas
           dust en arrière-plan. Le hero garde le canvas net pour l'effet d'entrée. */
        .what-section,
        .symptoms-section,
        .process-section,
        .pricing-section,
        .faq-section {
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(245, 239, 230, 0.1);
        }

        /* Halo curseur page-wide (suit la souris, lumière sur tout le site).
           z-index au-dessus de tout (51) pour rester visible sur photos
           et zones foncées. Intensité réduite pour limiter le blanchiment
           du texte au passage. */
        .cursor-halo {
            position: fixed;
            top: 0;
            left: 0;
            width: 340px;
            height: 340px;
            margin-left: -170px;
            margin-top: -170px;
            pointer-events: none;
            z-index: 51;
            /* Halo blanc lumineux dans tous les états. Le morphing vient uniquement
               de l'évolution des arrêts (qui migrent vers l'extérieur), des alphas
               (qui montent), et du scale (qui réduit) — pilotés par --halo-focus.
               focus=0 → grand halo blanc flou (340px)
               focus=1 → petit disque blanc net (~14px) */
            background: radial-gradient(circle closest-side,
                rgba(255, 255, 255, calc(0.70 + 0.25 * var(--halo-focus, 0))) 0%,
                rgba(255, 255, 255, calc(0.42 + 0.53 * var(--halo-focus, 0))) calc(22% + 66% * var(--halo-focus, 0)),
                rgba(255, 255, 255, calc(0.20 + 0.65 * var(--halo-focus, 0))) calc(45% + 45% * var(--halo-focus, 0)),
                rgba(255, 255, 255, calc(0.07 + 0.43 * var(--halo-focus, 0))) calc(70% + 25% * var(--halo-focus, 0)),
                transparent calc(95% + 5% * var(--halo-focus, 0)));
            mix-blend-mode: screen;
            opacity: 0;
            transition: opacity 0.4s ease-out;
            transform: translate3d(var(--halo-x, -9999px), var(--halo-y, -9999px), 0)
                       scale(calc(1 - 0.959 * var(--halo-focus, 0)));
            transform-origin: center center;
            will-change: transform;
        }
        .cursor-halo.is-active { opacity: 1; }
        @media (prefers-reduced-motion: reduce) {
            .cursor-halo { display: none; }
        }

        /* ============================================================
           MOBILE OPTIMIZATION — service-epi.html
           Bloc isolé : ne s'applique qu'à <= 768px, version desktop intacte
           ============================================================ */

        /* Bouton hamburger — invisible par défaut (desktop) */
        .menu-toggle {
            display: none;
            background: transparent;
            border: 0;
            padding: 0.5rem;
            cursor: pointer;
            width: 44px; height: 44px;
            position: relative;
            z-index: 110;
        }
        .menu-toggle span {
            display: block; position: absolute;
            left: 50%; top: 50%;
            width: 22px; height: 2px;
            background: var(--ink, #1e1a16);
            transform: translate(-50%, -50%);
            transition: transform 0.3s, opacity 0.25s, top 0.3s;
        }
        .menu-toggle span:nth-child(1) { top: calc(50% - 7px); }
        .menu-toggle span:nth-child(3) { top: calc(50% + 7px); }
        body.menu-open .menu-toggle span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
        body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
        body.menu-open .menu-toggle span:nth-child(3) { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

        @media (max-width: 768px) {
            /* ----- Header : fond seulement quand scrolled ----- */
            .site-header { padding: 0.75rem 1.25rem; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
            .site-header.scrolled { padding: 0.6rem 1.25rem; }
            .logo-full { height: 18px; }
            .logo-heart { left: 1.25rem; height: 22px; }
            .menu-toggle { display: block; }

            /* Drawer plein écran caché par défaut */
            .nav-links {
                position: fixed;
                top: 0; right: 0; bottom: 0;
                height: 100vh; height: 100dvh;
                width: min(82vw, 340px);
                background: rgba(250,244,234,0.98);
                backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
                box-shadow: -10px 0 40px rgba(43,36,32,0.12);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0;
                padding: 5rem 2rem 2rem;
                transform: translateX(100%);
                transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                z-index: 105;
                font-size: 1rem;
            }
            body.menu-open .nav-links { transform: translateX(0); }

            .nav-links > a:not(.nav-cta),
            .nav-dropdown-toggle {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(43,36,32,0.08);
                display: block;
                width: 100%;
            }
            .nav-links > a:not(.nav-cta)::after,
            .nav-dropdown-toggle::after { display: none; }
            .nav-cta { margin-top: 1.25rem; padding: 0.85rem 1.4rem; white-space: nowrap; display: flex; align-items: center; justify-content: center; line-height: 1.4; min-height: 48px; }

            .nav-item-dropdown { display: block; width: 100%; }
            .nav-dropdown-toggle .dropdown-arrow { display: none; }
            .nav-dropdown-menu {
                position: static;
                transform: none !important;
                opacity: 1; visibility: visible; pointer-events: auto;
                background: transparent;
                box-shadow: none;
                border: 0;
                border-bottom: 1px solid rgba(43,36,32,0.08);
                border-radius: 0;
                margin-top: 0;
                padding: 0.5rem 0 0.5rem 1rem;
                min-width: 0;
            }
            .nav-dropdown-menu a { padding: 0.55rem 0; white-space: normal; }
            .nav-dropdown-menu a::after { display: none; }

            body.menu-open::before {
                content: '';
                position: fixed; inset: 0;
                background: rgba(43,36,32,0.35);
                backdrop-filter: blur(2px);
                z-index: 100;
                animation: backdropFadeIn 0.3s ease;
            }
            body.menu-open { overflow: hidden; }
            @keyframes backdropFadeIn { from { opacity: 0; } to { opacity: 1; } }

            /* ----- Désactivation des effets souris (mobile = pas de hover) ----- */
            :root, body, .btn, .btn-hero-fill, .btn-hero-ghost, .btn-rdv, .nav-cta, .nav-links > a, .nav-dropdown-toggle, .symptom-card, .faq-item, .footer-col a, .footer-bottom a, .magnetic, .page-nav a, .cards-grid .card, .indication-list li {
                --magnet-x: 0px !important;
                --magnet-y: 0px !important;
            }
            .cursor-halo { display: none !important; }
            html, body { overflow-x: clip !important; }

            /* ----- Dust canvas : centré verticalement dans le viewport ----- */
            .dust-canvas {
                width: 100vw !important;
                left: 0 !important;
                top: 50% !important;
                bottom: auto !important;
                height: auto !important;
                transform-origin: center center !important;
                transform: translateY(-50%) scale(1.2) rotate(-15deg) !important;
            }

            /* ----- Hero EPI ----- */
            .hero { padding-top: 5rem !important; padding-bottom: 3rem !important; min-height: auto !important; }
            .hero-content { padding: 0 !important; }
            .hero-title { font-size: 2.5rem !important; line-height: 1 !important; }
            .hero-label { font-size: 14px !important; }
            .hero-subtitle { font-size: 17px !important; }
            .hero-tagline { font-size: 17px !important; line-height: 1.6 !important; }
            .hero-badges { flex-wrap: wrap !important; justify-content: center !important; column-gap: 0.4rem !important; row-gap: 0.4rem !important; margin-bottom: 1rem !important; }
            .hero-badge { font-size: 12px !important; padding: 0.4rem 0.75rem !important; }
            .hero-ctas { flex-direction: column !important; gap: 0.6rem !important; align-items: stretch !important; padding: 0 !important; margin-top: 1rem !important; }
            .hero-ctas .btn-hero-fill,
            .hero-ctas .btn-hero-ghost,
            .hero-ctas .btn { width: 100% !important; justify-content: center !important; padding: 0.9rem 1rem !important; font-size: 14px !important; }
            .scroll-hint, .hero-scroll { display: none !important; }

            /* ----- Sections ----- */
            .section-inner { padding-left: 0 !important; padding-right: 0 !important; }
            .s-title, h3.section-title { font-size: 1.75rem !important; line-height: 1 !important; }
            .s-overline { font-size: 14px !important; }

            /* ----- Tailles minimales : 14px partout, 16px texte principal ----- */
            p, .symptom-card p, .faq-item p, .faq-item .faq-q,
            .footer-brand-desc, .footer-col h5, .footer-col a, .footer-col p,
            .footer-bottom p, .footer-bottom a, .footer-brand small,
            .nav-dropdown-toggle .dropdown-arrow { font-size: 14px !important; }
            .hero-tagline, .symptom-card p, .faq-item p, .footer-col p { font-size: 17px !important; }

            /* ----- Symptom cards / FAQ / contenu sur mobile ----- */
            .symptom-grid, .symptoms-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
            .symptom-card { padding: 1rem 0.5rem !important; }
            .faq-item { padding: 1rem !important; }
            .faq-question { padding: 1.5rem 0 !important; font-size: 17px !important; }
            .faq-answer-inner { font-size: 1rem !important; }
            .process-pin-wrapper { margin-top: 0 !important; }

            /* ----- À propos ----- */
            /* About : photo en haut, texte en bas (column-reverse) */
            .about-curtain { flex-direction: column-reverse !important; height: auto !important; }
            .about-panel { width: 100% !important; height: auto !important; position: relative !important; transform: none !important; opacity: 1 !important; }
            .about-panel-left { padding: 1.5rem 1.25rem 3rem !important; }
            .about-panel-right { padding: 3rem 1.25rem 0 !important; min-height: 280px; }
            .about-photo-curtain { width: 100% !important; height: auto !important; max-height: 380px !important; object-fit: cover !important; }
            .about-title { font-size: 2.5rem; }
            .about-text-desc { font-size: 0.95rem; }
            .about-ctas { flex-direction: column; gap: 0.6rem; align-items: stretch; }
            .about-ctas .btn { width: 100%; justify-content: center; }

            /* ----- Contact section ----- */
            .contact-section { padding: 3rem 1.25rem !important; }

            /* ===== Footer mobile : 1 colonne, espacement généreux, bottom centré ===== */
            .site-footer { padding: 3rem 0 1.5rem !important; }
            .site-footer .section-inner { padding: 0 1.5rem !important; }
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 0 !important;
                margin-bottom: 1.5rem !important;
            }
            .footer-grid > div {
                padding: 1.5rem 0 !important;
                border-top: 1px solid rgba(237, 227, 207, 0.12);
            }
            .footer-grid > div:first-child {
                padding-top: 0 !important;
                border-top: 0 !important;
            }
            .footer-brand { font-size: 1.3rem !important; }
            .footer-brand small { font-size: 14px !important; margin-top: 0.5rem !important; letter-spacing: 0.18em !important; }
            .footer-brand-desc { font-size: 14px !important; max-width: 100% !important; margin-top: 1rem !important; line-height: 1.65 !important; }
            .footer-col h5 { font-size: 14px !important; letter-spacing: 0.18em !important; margin-bottom: 0.85rem !important; }
            .footer-col a { font-size: 14px !important; margin-bottom: 0.55rem !important; padding: 0.2rem 0; transform: none !important; }
            .footer-col p { font-size: 14px !important; line-height: 1.7 !important; }
            .footer-bottom {
                flex-direction: column !important;
                gap: 0.65rem !important;
                align-items: center !important;
                text-align: center !important;
                margin-top: 1rem !important;
                padding-top: 1.25rem !important;
            }
            .footer-bottom p, .footer-bottom a { font-size: 14px !important; transform: none !important; }

            /* ----- Sections services : padding mobile compact ----- */
            .what-section,
            .symptoms-section,
            .process-section,
            .pricing-section,
            .faq-section,
            .cta-band {
                padding: 2.5rem 1.25rem !important;
            }
            .faq-section { padding-top: 2rem !important; padding-bottom: 2rem !important; }
            .faq-list { margin-top: 1rem !important; }

            /* ----- Pricing : padding 0 sur mobile, contenu centré ----- */
            .pricing-card { padding: 0 !important; }
            .pricing-details {
                padding: 0 !important;
                text-align: center;
                align-items: center;
            }
        }

        /* ========== PAGE NAV (sous-nav interne sticky) ========== */
        .page-nav {
            position: sticky;
            top: 63px;
            z-index: 90;
            background: rgba(241, 234, 222, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin-top: -1px;
        }
        .page-nav-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .page-nav-inner::-webkit-scrollbar { display: none; }
        .page-nav a {
            display: inline-flex;
            align-items: center;
            padding: 1rem 1.1rem;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-mut);
            letter-spacing: 0.04em;
            white-space: nowrap;
            position: relative;
            transition: color 0.3s;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .page-nav a::before {
            content: '';
            position: absolute;
            left: 1.1rem;
            right: 1.1rem;
            bottom: 0;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .page-nav a:hover { color: var(--accent); }
        .page-nav a:hover::before,
        .page-nav a.is-active::before {
            transform: scaleX(1);
        }
        .page-nav a.is-active { color: var(--accent); }

        /* ========== INDICATIONS COMPLÈTES ========== */
        .indications-section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .indications-intro {
            max-width: 720px;
            margin-top: 1.5rem;
        }
        .indications-intro p {
            color: var(--text-sec);
            font-size: 1rem;
            line-height: 1.85;
            margin-bottom: 1rem;
        }
        .indications-intro p:last-child { margin-bottom: 0; }
        .indications-intro strong {
            color: var(--ink);
            font-weight: 500;
        }
        .indications-grid {
            margin-top: 3.5rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        /* Bloc minimal : pas de bg, pas de border, pas de padding, pas de hover */
        .indication-block {
            background: transparent;
            border: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        /* Header : juste titre + fine ligne de séparation */
        .indication-head {
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border);
        }
        .indication-title {
            font-family: var(--nagoda);
            font-size: 1.2rem;
            color: var(--ink);
            line-height: 1.2;
        }
        /* Liste à puce minimale */
        .indication-list {
            list-style: disc;
            list-style-position: outside;
            padding-left: 1.1rem;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .indication-list li {
            color: var(--text-sec);
            font-size: 0.92rem;
            line-height: 1.5;
            transition: color 0.25s, font-weight 0.25s;
            cursor: default;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .indication-list li::marker {
            color: var(--accent);
            font-size: 0.85em;
        }
        @media (hover: hover) {
            .indication-list li:hover {
                color: var(--ink);
                font-weight: 700;
            }
        }
        /* Bloc d'appel "Vous reconnaissez vos symptômes ?" — aligné sur .services-light-help (about.html) */
        .indications-cta {
            margin-top: 3rem;
            padding: 2rem 1.5rem;
            background: #f7f2e985;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        .indications-cta-text {
            font-family: var(--nagoda);
            font-size: 1.25rem;
            color: var(--ink);
            line-height: 1.3;
            margin: 0;
        }
        .indications-cta-btn {
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
        }
        @media (max-width: 768px) {
            .indications-cta { margin-top: 2.2rem; }
            .indications-cta-text { font-size: 1.15rem; }
        }
        .indications-footnote {
            margin-top: 2.5rem;
            padding: 1.4rem 1.6rem;
            background: var(--accent-glow);
            border-left: 3px solid var(--accent);
            font-size: 0.85rem;
            color: var(--text-sec);
            line-height: 1.7;
        }
        .indications-footnote strong {
            color: var(--ink);
            font-weight: 500;
        }

        /* ========== SOINS PROCHES — section ========== */
        .related-section {
            padding: 6rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .related-intro {
            color: var(--text-sec);
            max-width: 560px;
            margin-top: 0.5rem;
            font-size: 1rem;
        }
        .related-grid {
            margin-top: 3rem;
        }
        .cards-grid.related-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        /* ========== CARDS — design repris de #services .card (index.html) ========== */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .cards-grid.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .cards-grid .card {
            padding: 1.8rem 1.5rem 1.5rem;
            position: relative;
            background: #FBF5E9;
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
            overflow: visible;
        }
        .cards-grid .card:hover {
            background: #FBF5E9;
            transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) scale(1.01);
        }
        .cards-grid .card-wave-top,
        .cards-grid .card-wave-bottom {
            position: absolute;
            left: 0; right: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .cards-grid .card-wave-top { top: 0; height: 40%; z-index: 1; }
        .cards-grid .card-wave-bottom { bottom: 0; height: 27%; z-index: 4; }
        .cards-grid .card-wave-top svg,
        .cards-grid .card-wave-bottom svg {
            display: block; width: 100%; height: 100%;
        }
        .cards-grid .card-wave-top path,
        .cards-grid .card-wave-bottom path { fill: var(--ink); }
        .cards-grid .card-dust {
            position: absolute;
            top: -30px;
            left: -30px;
            pointer-events: none;
            opacity: 0;
            z-index: 6;
            transition: opacity 0.45s ease;
        }
        .cards-grid .card:hover .card-dust { opacity: 1; }
        @media (prefers-reduced-motion: reduce) {
            .cards-grid .card-dust { display: none; }
        }
        /* Vagues TOP/BOTTOM : interpolation pilotée en JS via setAttribute('d', ...).
           Safari ne supporte ni `transition: d` ni les `@keyframes { d: path(...) }`
           correctement avant la v18. Le tween JS marche partout, contrôle l'ease,
           permet un retour propre au mouseleave. */
        .cards-grid .card > .card-name,
        .cards-grid .card > .card-acronym,
        .cards-grid .card > .card-symptoms {
            position: relative;
            z-index: 3;
        }
        .cards-grid .card > .card-desc {
            position: relative;
            z-index: 0;
            opacity: 0;
            translate: 0 -1.5em;
            text-wrap: balance;
            transform-origin: top left;
            transition: opacity .35s ease;
        }
        .cards-grid .card:hover > .card-desc {
            opacity: 1;
            transition-delay: .18s;
        }
        .cards-grid .card > .card-name {
            transform-origin: left center;
            transition: transform .45s cubic-bezier(.5, 0, .25, 1);
        }
        .cards-grid .card:hover > .card-name { transform: translateY(-7px) scale(0.85); }
        .cards-grid .card:hover > .card-name.is-multiline { transform: translateY(-17px) scale(0.85); }
        .cards-grid .card > .card-acronym {
            text-wrap: balance;
            transition: opacity .3s ease;
        }
        .cards-grid .card:hover > .card-acronym { opacity: 0; }
        .cards-grid .card-footer {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.15rem;
            border-top: 1px solid var(--border);
            padding-top: 1rem;
        }
        .cards-grid .card-price { position: relative; z-index: 5; }
        .cards-grid .card-meta {
            position: relative;
            z-index: 3;
        }
        .cards-grid .card-cta {
            position: absolute;
            bottom: 1.4rem;
            right: 1.5rem;
            transform: translateY(12px);
            opacity: 0;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #FDF9F1;
            pointer-events: none;
            z-index: 5;
            transition: opacity .35s ease, transform .4s cubic-bezier(.5, 0, .25, 1);
        }
        .cards-grid .card-cta::after {
            content: '\00A0\2192';
            display: inline-block;
            transition: transform .3s ease;
        }
        .cards-grid .card:hover .card-cta {
            animation: cta-elastic 1.4s linear forwards;
            animation-delay: .15s;
        }
        .cards-grid .card:hover .card-cta::after { transform: translateX(3px); }
        @media (prefers-reduced-motion: reduce) {
            .cards-grid .card-wave-top path,
            .cards-grid .card-wave-bottom,
            .cards-grid .card-name,
            .cards-grid .card-acronym,
            .cards-grid .card-desc,
            .cards-grid .card-cta,
            .cards-grid .card-cta::after,
            .cards-grid .card-meta { transition: none; }
        }
        .cards-grid .card-name {
            font-family: var(--nagoda);
            font-size: clamp(1.4rem, 2.2vw, 1.7rem);
            color: #FDF9F1; margin-bottom: 0.25rem;
            line-height: 1;
            min-height: 2.3em;
            align-content: end;
        }
        .cards-grid .card-acronym {
            font-size: 0.82rem; font-weight: 500;
            letter-spacing: 0.08em; text-transform: uppercase;
            color: #FDF9F1; margin-bottom: 0;
            line-height: 1.4;
            min-height: 2.8em;
        }
        .cards-grid .card-desc {
            font-size: 1rem; line-height: 1.7;
            color: var(--text-sec); font-weight: 300;
            margin-bottom: 1.2rem;
        }
        .cards-grid .card-symptoms {
            display: flex; flex-wrap: wrap; gap: 0.3rem;
            margin-bottom: 1.5rem;
            flex: 1;
            align-content: flex-end;
        }
        .cards-grid .card-symptom {
            padding: 0.2rem 0.55rem;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0;
            color: var(--ink);
            background: #eae2d5;
            border: none;
            transition: all 0.3s;
        }
        .cards-grid .card-price {
            font-family: var(--nagoda);
            font-size: 1.25rem; color: var(--ink);
        }
        .cards-grid .card-meta {
            font-size: 0.88rem; color: var(--text-mut);
            letter-spacing: 0.04em;
        }

        /* Frosted glass — nouvelles sections aussi */
        .indications-section,
        .related-section {
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(245, 239, 230, 0.1);
        }

        /* ========== RESPONSIVE — nouvelles sections ========== */
        @media (max-width: 900px) {
            .indications-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        }
        @media (max-width: 768px) {
            .page-nav { top: 56px; }
            .page-nav-inner { justify-content: flex-start; padding: 0 1rem; gap: 0; }
            .page-nav a { padding: 0.85rem 0.9rem; font-size: 14px; }
            .page-nav a::before { left: 0.9rem; right: 0.9rem; }

            .indications-section, .related-section { padding: 2.5rem 1.25rem !important; }
            .indications-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .indication-title { font-size: 1.1rem; }
            .indications-footnote { padding: 1.1rem 1.2rem; font-size: 0.82rem; }

            /* Soins-proches : pile verticale comme la page d'accueil (module
               « services » unifié). La mise en page mobile + l'auto-hover
               .is-scroll-active sont gérés par service-cards.css (source unique
               partagée avec la page À propos). Plus de slider horizontal. */
        }

        /* ========== BTN FIXED (toasty jumpy button — repris de fireup) ========== */
        /* État initial : wrapper transparent qui contient juste le .btn-primary visible.
           Les options sont cachées. Le btn vit dans la hero. */
        .btn-fixed {
            position: relative;
            display: inline-flex;
            flex-direction: column;
            justify-content: end;
            align-items: end;
            gap: 0.6em;
            z-index: 95;
        }
        /* État fixed-mode : se transforme en wrapper bottom-right avec padding,
           déclenché par GSAP au scroll après la hero. */
        .btn-fixed.fixed-mode {
            position: fixed;
            bottom: 0;
            right: 0;
            padding: 1.5rem;
            padding-left: 0;
            cursor: pointer;
            align-items: end;
            transition: right 0.3s ease-in;
        }
        .btn-fixed-options {
            display: none;
            justify-content: end;
            align-items: end;
            gap: 0.5em;
        }
        .btn-fixed.fixed-mode .btn-fixed-options {
            display: flex;
            flex-direction: column;
        }
        .btn-fixed-options a {
            /* On utilise la propriété CSS `translate` (pas `transform: translate(...)`)
               pour la position des options. Comme ça, le `transform` magnet hérité de
               la règle générique `a {}` reste libre et compose naturellement. */
            transition: translate 0.3s cubic-bezier(0.3, 1, 0.8, 1),
                        opacity 0.3s cubic-bezier(0.3, 1, 0.8, 1),
                        background 0.3s,
                        color 0.3s,
                        border-color 0.3s;
            opacity: 0;
            position: absolute;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--body);
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            min-height: 2.625em;
            font-size: 18px;
            padding: 0.3em;
            aspect-ratio: 1/1;
            color: var(--cream);
            background: var(--accent);
            border: 2px solid var(--accent);
            text-decoration: none;
        }
        .btn-fixed-options a:nth-child(3) { translate: 0 100%; }
        .btn-fixed-options a:nth-child(2) {
            translate: 0 calc(200% + 0.5em);
            transition-delay: 0.4s;
        }
        .btn-fixed-options a:nth-child(1) {
            translate: 0 calc(300% + 1em);
            transition-delay: 0.8s;
        }
        @media (hover: hover) {
            .btn-fixed:hover .btn-fixed-options a {
                position: relative;
                translate: 0 0;
                opacity: 1;
            }
            .btn-fixed-options a:hover {
                background: var(--cream);
                color: var(--accent);
                box-shadow: 0 0 0 2.5px var(--accent) inset, 0 0 0 5px var(--cream);
            }
        }
        /* Déploiement au tap (mobile) — équivalent du :hover desktop */
        .btn-fixed.is-expanded .btn-fixed-options a {
            position: relative;
            translate: 0 0;
            opacity: 1;
        }
        .btn-fixed-options a svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        /* État initial : le .btn-primary garde 100% le style de .btn-hero-fill cumulé
           (même taille que .btn-hero-ghost à côté de lui dans la hero). */
        .btn-fixed .btn-primary {
            cursor: pointer;
            text-decoration: none;
        }
        /* État fixed-mode : version plus fine du bouton (override .btn-hero-fill) */
        .btn-fixed.fixed-mode .btn-primary {
            padding: 0.65em 1.4em !important;
            font-size: 0.78rem !important;
            min-height: auto !important;
            line-height: 1em !important;
            box-shadow: 0 10px 28px rgba(71, 67, 58, 0.22);
        }
        @media (hover: hover) {
            .btn-fixed.fixed-mode .btn-primary:hover {
                background: var(--cream) !important;
                color: var(--accent) !important;
                box-shadow: 0 0 0 2.5px var(--accent) inset, 0 0 0 5px var(--cream);
            }
        }
        /* Mobile : options déployées au tap via .is-expanded (géré en JS) */
        @media (max-width: 768px) {
            .btn-fixed { padding: 1rem; gap: 0.5em; }
            .btn-fixed .btn-primary { font-size: 0.78rem; padding: 0.55em 1.1em; }
            .btn-fixed-options a { font-size: 16px; }
        }

        /* ========== SCROLL OFFSET — ancres sous la nav sticky ========== */
        #what, #pour-qui, #deroulement, #tarifs, #faq, #soins-proches {
            scroll-margin-top: 140px;
        }
        @media (max-width: 768px) {
            #what, #pour-qui, #deroulement, #tarifs, #faq, #soins-proches {
                scroll-margin-top: 115px;
            }
        }

        /* ========== WHAT — sous-titre + transition ========== */
        .what-subtitle {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-mut);
            letter-spacing: 0.02em;
            font-style: italic;
        }
        .what-transition {
            margin-top: 2.5rem;
            padding: 1.4rem 1.6rem;
            background: var(--accent-glow);
            border-left: 3px solid var(--accent);
            font-size: 0.95rem;
            color: var(--text-sec);
            line-height: 1.7;
        }
        .what-transition strong { color: var(--ink); font-weight: 500; }
        .what-transition-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-left: 0.4rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.02em;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 1px;
            transition: gap 0.3s, opacity 0.3s;
        }
        .what-transition-link:hover { gap: 0.6rem; opacity: 0.8; }
        .what-transition-link svg {
            stroke: currentColor;
            transform: rotate(-45deg);
        }

        @media (max-width: 768px) {
            .what-text { margin-top: 2rem; }
            .what-transition { padding: 1.1rem 1.3rem; font-size: 0.9rem; margin-top: 2rem; }
            .what-transition-link { display: inline-flex; margin-left: 0; margin-top: 0.5rem; }
        }

        /* ============================================================
           SAFARI OVERRIDES — étape 2 : on retire tout ce qui force Safari
           à recompositer en software à chaque frame :
           - tous les backdrop-filter (recalcul plein écran sous le dust)
           - tous les mix-blend-mode (repaint au lieu du compositor GPU)
           Les fonds opaques en place suffisent à la lisibilité.
           Chrome/Firefox/Edge gardent les effets complets.
           ============================================================ */
        .is-safari * {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            mix-blend-mode: normal !important;
        }
        /* On remet le blur sur les menus (dropdown desktop + drawer mobile) :
           le pré-cache des gradients halo a tellement allégé le canvas que
           ces blurs ponctuels passent maintenant. À retirer si Safari relague. */
        .is-safari .nav-dropdown-menu,
        .is-safari .nav-links {
            backdrop-filter: blur(16px) !important;
            -webkit-backdrop-filter: blur(16px) !important;
        }

/* === Cards : tags + footer alignés en bas ===
   margin-top:auto pousse tags+footer au bas de la carte (flex column) :
   tous les symptômes et tarifs sont alignés quelle que soit la desc. */
.card > .card-symptoms,
.cards-grid .card > .card-symptoms { margin-top: auto; }
/* Vague bottom plus fine : démarre plus bas, pour ne plus entrer en collision
   avec le CTA « Découvrir le soin » ni recouvrir le footer. */
.card-wave-bottom,
.cards-grid .card-wave-bottom { height: 21%; }

/* Pages légales en bas du footer (Réglages › Navigation) */
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer-legal a { font-size: 0.7rem; color: #EDE3CF; opacity: 0.8; text-decoration: none; }

/* Élément de navigation actif : page courante en gras */
.nav-links > a[aria-current="page"],
.nav-links .nav-dropdown-toggle[aria-current="page"] { font-weight: 700; }

/* ============================================================
   FIX MOBILE DÉFINITIF — sections blanches au re-scroll
   (#deroulement « Le parcours » + #soins-proches « Pour aller plus loin »)
   sur Android Chrome/Samsung et iOS (Safari + Chrome/WebKit).

   Cause racine (vérifiée) :
   1) Le fond opaque mobile prévu (rgba …,0.92, l.1077) était ÉCRASÉ par les
      règles frosted-glass plus loin dans le fichier (l.1120 et l.1761-1763 →
      rgba …,0.1). Toutes les sections finissaient ~90 % transparentes : quand
      le compositeur évince une tuile au 2e scroll, le contenu n'a aucun fond
      opaque sous lui → blanc.
   2) .indications-section et .related-section gardaient un backdrop-filter
      blur(12px) sur mobile (absentes de la liste de nettoyage l.1070-1078,
      et .is-safari ne s'applique pas à iOS Chrome) : une couche qui re-échantillonne
      tout le fond à chaque frame = la plus fragile à l'éviction.
   3) Couches blur persistantes (page-nav sticky, indications-cta, header
      scrolled) qui taxent le compositeur à chaque frame.

   Ce bloc est EN DERNIER dans le fichier et tout est sous @media 768px :
   desktop et Safari (.is-safari l.1973-1985) restent strictement intacts.
   Le !important garantit qu'il gagne la cascade même face à service-cards.css
   (chargé après).
   ============================================================ */
@media (max-width: 768px) {
    /* 1) Fond VRAIMENT opaque sur TOUTES les sections (modèle : .contact-section,
          la seule qui n'a jamais blanchi car déjà opaque) + plus aucun
          backdrop-filter. Le contenu reste peint même si une tuile est évincée. */
    .what-section,
    .symptoms-section,
    .indications-section,
    .process-section,
    .pricing-section,
    .faq-section,
    .related-section {
        background: var(--cream, #F1EADE) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* 2) On retire les couches blur persistantes restantes (re-échantillonnage
          plein écran à chaque frame) en leur donnant un fond solide. */
    .page-nav {
        background: rgb(241, 234, 222) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .indications-cta {
        background: var(--cream-light, #F7F2E9) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
    }
    .site-header.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* 3) Les canvas .card-dust (dormants au tactile mais chacun une surface de
          compositing) : neutralisés sur mobile. */
    .card-dust { display: none !important; }
}

/* ==============================================================================
   MOBILE — ZÉRO COUCHE GPU (refonte 2.0, moitié CSS du correctif anti-gel).
   Diagnostic : sur mobile il restait ~21 éléments avec `transform: translate3d(0,0,0)`
   (l'« aimant » dont les variables --magnet valent 0 sur tactile) + des backdrop-filter.
   Or translate3d(0,0,0) force UNE COUCHE DE COMPOSITING par élément même à zéro →
   ~20+ couches + backdrop saturent le compositeur GPU mobile → page blanche figée.
   L'aimant / le halo / le dust sont des effets de SOURIS (desktop only, désormais dans
   service-fx.js + service-fx desktop) ; sur mobile on annule TOUTE source de couche.
   Bloc unique en fin de fichier (gagne la cascade). Desktop (≥769px) 100% intact.
   ============================================================================== */
@media (max-width: 768px) {
    *, *::before, *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        will-change: auto !important;
        filter: none !important;
    }
    /* Transforms « aimant » (translate3d via --magnet) : ce sont tous des liens /
       cartes / blocs interactifs. On les remet à plat → plus de couche GPU.
       Les transforms STRUCTURELS (drawer .nav-links translateX, barres du burger
       .menu-toggle span) ne sont PAS listés ici → préservés. */
    a, .nav-cta, .nav-dropdown-toggle,
    .btn, .btn-hero-fill, .btn-hero-ghost, .btn-rdv, .btn-primary,
    .symptom-card, .faq-item, .magnetic, .indication-list li, .indications-cta,
    .process-accordion, .card, .cards-grid .card,
    .page-nav a, .what-transition-link, .footer-col a, .footer-bottom a {
        transform: none !important;
    }
    .dust-canvas, .cursor-halo { display: none !important; }

    /* Bouton flottant : JAMAIS de position:fixed sur mobile. Le toggle fixed-mode au
       scroll sortait le bouton du flux → la hero changeait de hauteur → boucle de
       layout/scroll → gel + écran blanc. Sur mobile le « Réserver » reste dans la
       hero (statique). Le JS mobile du btn-fixed est aussi retiré (service-core.js) ;
       ceci est le filet de sécurité CSS. */
    .btn-fixed.fixed-mode {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        padding: 1rem !important;
        transition: none !important;
    }
    .btn-fixed.fixed-mode .btn-fixed-options { display: none !important; }
}
