        :root {
            --primary: #0066CC;
            --primary-dark: #004C99;
            --primary-light: #3399FF;
            --menu: #16a34a;
            --menu-dark: #0ea45a;
            --accent: #00D4AA;
            --white: #FFFFFF;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-600: #475569;
            --gray-900: #0F172A;
        }

        .dark {
            --primary: #3399FF;
            --primary-dark: #0066CC;
            --primary-light: #66B3FF;
            --menu: #66ffb3;
            --menu-dark: #2ee08a;
            --accent: #00FFCC;
            --white: #0F172A;
            --gray-50: #1E293B;
            --gray-100: #334155;
            --gray-600: #CBD5E1;
            --gray-900: #F8FAFC;
        }

        * {
            font-family: 'Plus Jakarta Sans', sans-serif;
            -webkit-tap-highlight-color: transparent;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background: var(--gray-50);
            color: var(--gray-900);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .dark body {
            background: #0F172A;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--gray-100);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        /* Hero Gradient Animation */
        .hero-gradient {
            background: linear-gradient(135deg, #0066CC 0%, #004C99 50%, #003366 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-gradient::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: pulse-glow 8s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            50% { transform: translate(25%, 25%) scale(1.2); opacity: 0.8; }
        }

        /* Floating Elements */
        .float-element {
            animation: float 6s ease-in-out infinite;
        }

        .float-element:nth-child(2) { animation-delay: -2s; }
        .float-element:nth-child(3) { animation-delay: -4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Slide In Animations */
        .slide-up {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Scale Animation */
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background: var(--gray-50);
        }

        /* Card Styles */
        .service-card {
            background: white;
            border-radius: 24px;
            padding: 32px 24px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .dark .service-card {
            background: #1E293B;
            border-color: rgba(51, 153, 255, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            transform: rotate(-5deg) scale(1.1);
        }

        .service-card:hover .service-icon i {
            color: white;
        }

        /* Cartes Dispositif (image en tête, comme Services + visuel) */
        .dispositif-card {
            background: white;
            border-radius: 24px;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .dark .dispositif-card {
            background: #1E293B;
            border-color: rgba(51, 153, 255, 0.2);
        }

        .dispositif-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2;
        }

        .dispositif-card:hover::before {
            transform: scaleX(1);
        }

        .dispositif-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
        }

        .dispositif-card__media {
            height: 11rem;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
        }

        .dispositif-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dispositif-card:hover .dispositif-card__img {
            transform: scale(1.06);
        }

        .dispositif-card__body {
            padding: 1.25rem 1.5rem 1.5rem;
        }
        .why-card {
            background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
            border-radius: 24px;
            padding: 0;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 420px;
        }

        .dark .why-card {
            background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .why-card:hover::after {
            opacity: 1;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 102, 204, 0.12);
        }

        .why-photo {
            width: 100%;
            flex: 0 0 auto;
            min-height: 220px;
            height: min(42vw, 280px);
            max-height: 300px;
            background: linear-gradient(180deg, #e8eef5 0%, #dbe4f0 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark .why-photo {
            background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
        }

        @media (min-width: 640px) {
            .why-photo {
                min-height: 240px;
                height: min(36vw, 300px);
                max-height: 320px;
            }
        }

        @media (min-width: 1024px) {
            .why-photo {
                min-height: 248px;
                height: 256px;
                max-height: none;
            }

            .why-card {
                min-height: 480px;
            }
        }

        .why-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .why-card:hover .why-photo img {
            transform: scale(1.06);
        }

        .why-card-body {
            padding: 1.5rem 1.5rem 2rem;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        @media (min-width: 1024px) {
            .why-card-body {
                padding: 1.5rem 1.35rem 2rem;
            }
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            position: relative;
            transition: all 0.4s;
        }

        .dark .testimonial-card {
            background: #1E293B;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 120px;
            color: var(--primary);
            opacity: 0.1;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.1);
        }

        /* Stats Counter */
        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        /* Barre de navigation fixe en bas (mobile) */
        .mobile-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 0;
            padding-bottom: max(12px, env(safe-area-inset-bottom));
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
        }

        .dark .mobile-nav {
            background: #1E293B;
        }

        @media (max-width: 768px) {
            .mobile-nav {
                display: block;
            }
            body {
                padding-bottom: 80px;
            }
        }

        /* Menu mobile (hamburger) — panneau plein écran + tiroir */
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.75rem;
            height: 2.75rem;
            padding: 0;
            border: 2px solid transparent;
            border-radius: 0.75rem;
            background: transparent;
            cursor: pointer;
            flex-shrink: 0;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .mobile-menu-toggle:focus-visible {
            outline: 2px solid var(--primary, #0066cc);
            outline-offset: 2px;
        }

        .mobile-menu-toggle-bars {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 22px;
        }

        .mobile-menu-bar {
            display: block;
            height: 2px;
            width: 100%;
            border-radius: 1px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.2s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.is-open .mobile-menu-bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .page-home .header:not(.scrolled) .mobile-menu-toggle {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.35);
        }

        .page-home .header:not(.scrolled) .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .header.scrolled .mobile-menu-toggle,
        body:not(.page-home) .mobile-menu-toggle {
            color: var(--menu);
            border-color: rgba(15, 23, 42, 0.12);
        }

        .header.scrolled .mobile-menu-toggle:hover,
        body:not(.page-home) .mobile-menu-toggle:hover {
            background: rgba(0, 102, 204, 0.08);
        }

        .dark .header.scrolled .mobile-menu-toggle,
        .dark body:not(.page-home) .mobile-menu-toggle {
            color: #e2e8f0;
            border-color: rgba(148, 163, 184, 0.25);
        }

        .mobile-menu-panel {
            position: fixed;
            inset: 0;
            z-index: 1100;
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease, visibility 0.28s ease;
        }

        .mobile-menu-panel.is-open {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-panel__inner {
            display: flex;
            height: 100%;
            width: 100%;
        }

        .mobile-menu-panel__backdrop {
            flex: 1;
            min-width: 0;
            border: none;
            padding: 0;
            margin: 0;
            cursor: pointer;
            background: rgba(15, 23, 42, 0.45);
        }

        .mobile-menu-panel__sheet {
            width: min(100%, 320px);
            max-width: 100%;
            height: 100%;
            background: #fff;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .dark .mobile-menu-panel__sheet {
            background: #1e293b;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
        }

        .mobile-menu-panel.is-open .mobile-menu-panel__sheet {
            transform: translateX(0);
        }

        .mobile-menu-panel__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            flex-shrink: 0;
        }

        .dark .mobile-menu-panel__head {
            border-bottom-color: rgba(148, 163, 184, 0.2);
        }

        .mobile-menu-panel__title {
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--primary);
        }

        .dark .mobile-menu-panel__title {
            color: #93c5fd;
        }

        .mobile-menu-panel__close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border: none;
            border-radius: 0.75rem;
            background: rgba(0, 102, 204, 0.08);
            color: var(--menu);
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .mobile-menu-panel__close:hover {
            background: rgba(0, 102, 204, 0.15);
        }

        .dark .mobile-menu-panel__close {
            background: rgba(59, 130, 246, 0.15);
            color: #e2e8f0;
        }

        .mobile-menu-panel__nav {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding: 1rem 1.25rem 1.5rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu-label {
            margin: 0.75rem 0 0.25rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #64748b;
        }

        .dark .mobile-menu-label {
            color: #94a3b8;
        }

        .mobile-menu-link {
            display: block;
            padding: 0.65rem 0.75rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            color: #0f172a !important;
            text-decoration: none !important;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .dark .mobile-menu-link {
            color: #f1f5f9 !important;
        }

        .mobile-menu-link:hover {
            background: rgba(0, 102, 204, 0.08);
            color: var(--primary) !important;
        }

        .mobile-menu-link--sub {
            padding-left: 1.25rem;
            font-size: 0.9375rem;
            font-weight: 500;
        }

        .mobile-menu-link--cta {
            margin-top: 0.5rem;
            text-align: center;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #fff !important;
        }

        .mobile-menu-link--cta:hover {
            filter: brightness(1.05);
            color: #fff !important;
        }

        body.mobile-menu-open {
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .mobile-menu-panel {
                display: none !important;
            }
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--menu);
            transition: all 0.3s;
            padding: 8px 12px;
            border-radius: 12px;
        }

        .nav-item.active {
            color: var(--menu-dark);
        }

        .nav-item.active i {
            transform: scale(1.2);
        }

        .nav-item:active {
            transform: scale(0.95);
            background: rgba(16, 163, 74, 0.08);
        }

        /* Navigation desktop — même taille lisible sur toutes les pages */
        .site-nav {
            font-size: 1rem;
            line-height: 1.5rem;
            max-width: 100%;
            overflow: visible;
        }

        .site-nav-inner {
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }

        .site-nav-inner::-webkit-scrollbar {
            height: 4px;
        }

        .site-nav-inner > .site-nav-link,
        .site-nav-inner > .nav-dropdown,
        .site-nav-inner > .btn-primary {
            flex-shrink: 0;
        }

        .header-nav-scroll {
            min-width: 0;
            overflow: visible;
        }

        .header .max-w-7xl {
            overflow: visible;
        }

        .header .btn-primary {
            padding: 12px 22px;
            font-size: 1rem;
            border-radius: 9999px;
        }

        .site-nav-link,
        .nav-dropdown-toggle {
            font-size: inherit;
            font-weight: 600;
            line-height: inherit;
        }

        .nav-dropdown-toggle {
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: inherit;
            margin: 0;
            -webkit-appearance: none;
            appearance: none;
        }

        .page-home .header:not(.scrolled) .site-nav-link,
        .page-home .header:not(.scrolled) .nav-dropdown-toggle {
            color: white;
        }

        .page-home .header:not(.scrolled) .site-nav-link:hover,
        .page-home .header:not(.scrolled) .nav-dropdown-toggle:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .header.scrolled .site-nav-link,
        .header.scrolled .nav-dropdown-toggle,
        body:not(.page-home) .site-nav-link,
        body:not(.page-home) .nav-dropdown-toggle {
            color: var(--menu);
        }

        .header.scrolled .site-nav-link:hover,
        .header.scrolled .nav-dropdown-toggle:hover,
        body:not(.page-home) .site-nav-link:hover,
        body:not(.page-home) .nav-dropdown-toggle:hover {
            color: var(--menu-dark);
        }

        /* Brand/title colors */
        .header .brand-name,
        .header .brand-sub {
            color: white;
        }

        .header.scrolled .brand-name,
        .header.scrolled .brand-sub,
        body:not(.page-home) .header .brand-name,
        body:not(.page-home) .header .brand-sub {
            color: var(--primary);
        }

        .header .btn-primary,
        .header.scrolled .btn-primary {
            color: white !important;
        }

        /* Dropdown Présentation (hors zone overflow-x pour rester visible) */
        .nav-dropdown {
            position: relative;
            z-index: 1200;
        }

        .nav-dropdown-toggle .fa-chevron-down {
            transition: transform 0.2s ease;
        }

        .nav-dropdown.is-open .nav-dropdown-toggle .fa-chevron-down {
            transform: rotate(180deg);
        }

        .nav-dropdown-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 220px;
            padding: 8px 0;
            background: white;
            border-radius: 14px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 102, 204, 0.08);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-6px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 1210;
        }

        .dark .nav-dropdown-panel {
            background: #1E293B;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(51, 153, 255, 0.15);
        }

        .nav-dropdown-panel a {
            display: block;
            padding: 10px 18px;
            font-size: 1rem;
            font-weight: 600;
            color: #0F172A !important;
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }

        .dark .nav-dropdown-panel a {
            color: #F8FAFC !important;
        }

        .nav-dropdown-panel a:hover {
            background: rgba(0, 102, 204, 0.08);
            color: var(--primary) !important;
        }

        .nav-dropdown:hover .nav-dropdown-panel,
        .nav-dropdown:focus-within .nav-dropdown-panel,
        .nav-dropdown.is-open .nav-dropdown-panel {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }



        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 12px 20px;
            transition: all 0.3s;
            overflow: visible;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 12px 20px;
        }

        .dark .header.scrolled {
            background: rgba(15, 23, 42, 0.95);
        }

        body:not(.page-home) .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            padding: 12px 20px;
        }

        .dark body:not(.page-home) .header {
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        /* Pharmacy Section */
        .pharmacy-bg {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            position: relative;
            overflow: hidden;
        }

        .dark .pharmacy-bg {
            background: linear-gradient(135deg, #1E3A2F 0%, #0F2A1F 100%);
        }

        .pharmacy-bg::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Team Card */
        .team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
        }

        .dark .team-card {
            background: #1E293B;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            font-size: 48px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        }

        /* Map Container */
        .map-container {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        /* Pulse Animation for Emergency */
        .pulse-ring {
            position: relative;
        }

        .pulse-ring::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.3;
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
        }

        /* Stagger Animation Delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }
        .stagger-7 { transition-delay: 0.7s; }
        .stagger-8 { transition-delay: 0.8s; }
        .stagger-9 { transition-delay: 0.9s; }
        .stagger-10 { transition-delay: 1s; }
        .stagger-11 { transition-delay: 1.1s; }
        .stagger-12 { transition-delay: 1.2s; }
        .stagger-13 { transition-delay: 1.3s; }

        /* Swiper/Carousel */
        .testimonial-container {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 20px 0;
        }

        .testimonial-container::-webkit-scrollbar {
            display: none;
        }

        .testimonial-container > div {
            scroll-snap-align: start;
        }

        /* Ripple Effect */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Section Title */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 6vw, 42px);
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .dark .section-title {
            color: #F8FAFC;
        }

        .section-subtitle {
            color: var(--gray-600);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Badge */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 204, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--gray-100);
            border-radius: 16px;
            font-size: 16px;
            transition: all 0.3s;
            background: white;
            color: var(--gray-900);
        }

        .dark .contact-input {
            background: #1E293B;
            border-color: #334155;
            color: #F8FAFC;
        }

        .contact-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .rdv-phone-wrap {
            display: flex;
            align-items: stretch;
            border: 2px solid var(--gray-100);
            border-radius: 16px;
            overflow: hidden;
            background: white;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .dark .rdv-phone-wrap {
            background: #1E293B;
            border-color: #334155;
        }

        .rdv-phone-wrap:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .rdv-phone-prefix {
            flex-shrink: 0;
            padding: 16px 14px;
            background: var(--gray-100);
            font-weight: 600;
            font-size: 16px;
            color: var(--gray-900);
            display: flex;
            align-items: center;
        }

        .dark .rdv-phone-prefix {
            background: #334155;
            color: #F8FAFC;
        }

        .rdv-phone-input {
            border: none !important;
            border-radius: 0 !important;
            flex: 1;
            min-width: 0;
        }

        .rdv-phone-input:focus {
            outline: none;
            box-shadow: none !important;
        }

        .rdv-form-error {
            display: none;
            padding: 12px 16px;
            border-radius: 12px;
            background: rgba(220, 38, 38, 0.1);
            color: #B91C1C;
            font-size: 14px;
            font-weight: 500;
        }

        .dark .rdv-form-error {
            background: rgba(248, 113, 113, 0.15);
            color: #FCA5A5;
        }

        .rdv-form-error.is-visible {
            display: block;
        }

        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-weight: 600;
        }

        /* Hours Badge */
        .hours-badge {
            background: linear-gradient(135deg, var(--accent) 0%, #00B894 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Loading Skeleton */
        .skeleton {
            background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
            background-size: 200% 100%;
            animation: skeleton 1.5s ease-in-out infinite;
        }

        @keyframes skeleton {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Custom Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            padding: 32px;
            max-width: 500px;
            width: 100%;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s;
        }

        .dark .modal-content {
            background: #1E293B;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }

        /* Touch feedback */
        @media (hover: none) {
            .service-card:active,
            .dispositif-card:active,
            .why-card:active,
            .team-card:active {
                transform: scale(0.98);
            }
        }

        /* Testimonial Pagination */
        .testimonial-page {
            display: none;
        }

        .testimonial-page.active {
            display: grid;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .pagination-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pagination-btn:hover {
            background: var(--primary);
            color: white;
        }

        .pagination-btn.active {
            background: var(--primary);
            color: white;
        }

        .dark .pagination-btn {
            background: #1E293B;
            border-color: var(--primary);
        }

        .dark .pagination-btn:hover,
        .dark .pagination-btn.active {
            background: var(--primary);
            color: white;
        }

        /* Carrousel hero (accueil) */
        .hero-slider-viewport {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 25px 50px -12px rgba(0, 0, 0, 0.35);
        }

        .hero-slider-track {
            display: flex;
            width: 400%;
            align-items: stretch;
            transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-slider-track {
                transition-duration: 0.01ms;
            }
        }

        .hero-slider-slide {
            flex: 0 0 25%;
            margin: 0;
            position: relative;
            aspect-ratio: 4 / 3;
            max-height: min(70vh, 620px);
            background: rgba(15, 23, 42, 0.22);
        }

        .hero-slider-slide figure {
            position: absolute;
            inset: 0;
            margin: 0;
        }

        .hero-slider-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            border: none;
            background: rgba(255, 255, 255, 0.92);
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            transition: background 0.2s, transform 0.15s;
        }

        .hero-slider-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.05);
        }

        .hero-slider-btn:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .hero-slider-prev {
            left: 0.75rem;
        }

        .hero-slider-next {
            right: 0.75rem;
        }

        .hero-slider-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 9999px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            background: transparent;
            padding: 0;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-slider-dot:hover {
            border-color: white;
        }

        .hero-slider-dot--active,
        .hero-slider-dot[aria-selected="true"] {
            background: white;
            border-color: white;
            transform: scale(1.15);
        }

        .hero-slider-dot:focus-visible {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            .mobile-nav,
            .mobile-menu-panel,
            .floating-cta,
            .header {
                display: none !important;
            }
        }
