        :root {
            --bg-deep: #030303;
            --bg-card: #0a0a0a;
            --bg-glass: rgba(10, 10, 10, 0.75);
            --accent-primary: #7a2edd;
            /* Requested Purple Accent */
            --accent-hover: #9145f5;
            --accent-ghost: rgba(122, 46, 221, 0.1);
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --text-dim: #606060;
            --border-white: rgba(255, 255, 255, 0.08);
            --border-accent: rgba(122, 46, 221, 0.3);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px rgba(122, 46, 221, 0.3);
        }

        /* --- PRE-LOADER --- */
        #loader {
            position: fixed;
            inset: 0;
            background: #030303;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
        }

        #loader.fade-out {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
            position: relative;
        }

        .loader-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: loaderTextIn 0.8s forwards ease-out;
        }

        .loader-logo span {
            color: #7a2edd;
        }

        .loader-bar-bg {
            width: 240px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-bar-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #7a2edd, #9145f5);
            box-shadow: 0 0 15px rgba(122, 46, 221, 0.5);
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .loader-pct {
            margin-top: 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.75rem;
            color: #606060;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        @keyframes loaderTextIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- CSS Reset & Base --- */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.is-loading {
            overflow: hidden !important;
        }

        /* Accessibility: Focus Visible */
        :focus-visible {
            outline: 2px solid var(--accent-primary);
            outline-offset: 4px;
        }

        /* --- Typography --- */
        h1,
        h2,
        h3,
        h4,
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        /* --- Layout Utilities --- */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-padding {
            padding: 120px 0;
        }

        .glass {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-white);
        }

        /* --- Lustre Text Effect --- */
        .lustre-text {
            position: relative;
            display: inline-block;
            color: var(--text-white);
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            animation: lustreSweep 6s infinite linear;
        }

        @keyframes lustreSweep {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }


        /* --- Animation Utilities --- */
        .reveal {
            opacity: 1;
            /* Safety: 1 by default, GSAP will animate from 0 if it loads */
            transform: none;
            /* No CSS transition here as it interferes with GSAP ScrollTrigger precision */
        }

        .reveal.active {
            opacity: 1;
            transform: none;
        }

        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            /* [T16] will-change removed */
        }

        .active .stagger-item {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slide-in from left animation */
        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide-in from right animation */
        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Zoom-in animation */
        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .zoom-in.active {
            opacity: 1;
            transform: scale(1);
        }

        /* delay classes for stagger */
        .d-1 {
            transition-delay: 0.1s;
        }

        .d-2 {
            transition-delay: 0.2s;
        }

        .d-3 {
            transition-delay: 0.3s;
        }

        .d-4 {
            transition-delay: 0.4s;
        }

        /* --- Icons --- */
        .icon-svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: var(--text-white);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s ease;
        }

        /* --- Header / Navigation --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            min-height: 80px;
            z-index: 3000;
            /* CRITICAL: Must be higher than #mobile-menu (2000) for toggle to show */
            /* Ensure it stays above mobile-nav (2000) */
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: env(safe-area-inset-top, 0) 5% 0;
            background: transparent;
            transition: all 0.3s ease;
        }

        header.scrolled {
            min-height: 70px;
            padding-top: env(safe-area-inset-top, 0);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid rgba(122, 46, 221, 0.3);
            backdrop-filter: blur(20px);
            background: rgba(3, 3, 3, 0.98);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 45px;
            width: auto;
            display: block;
            transition: height 0.3s ease;
        }

        header.scrolled .logo-img {
            height: 38px;
        }

        .loader-logo-img {
            height: 55px;
            width: auto;
            display: inline-block;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* --- Mobile Nav / Hamburger --- */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 3001;
            /* Top tier within header context */
        }

        .menu-toggle .bar {
            width: 100%;
            height: 2px;
            background-color: var(--text-white);
            border-radius: 10px;
            transition: var(--transition-bounce);
        }

        /* Hamburger active state (X) */
        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: var(--accent-primary);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-9.5px) rotate(-45deg);
            background-color: var(--accent-primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            /* Better mobile support */
            background: rgba(3, 3, 3, 0.98);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            touch-action: none;
            /* Help prevent scroll-through */
            padding-top: env(safe-area-inset-top, 20px);
            padding-bottom: env(safe-area-inset-bottom, 20px);
            padding-left: env(safe-area-inset-left, 0);
            padding-right: env(safe-area-inset-right, 0);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            text-align: center;
        }

        .mobile-link {
            font-size: 2rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-gray);
            transition: color 0.3s ease, transform 0.3s ease;
            opacity: 0;
            /* Default for animation */
        }

        .mobile-nav.active .mobile-link {
            animation: mobileLinkIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .mobile-nav-inner a:nth-child(1) {
            animation-delay: 0.1s;
        }

        .mobile-nav-inner a:nth-child(2) {
            animation-delay: 0.15s;
        }

        .mobile-nav-inner a:nth-child(3) {
            animation-delay: 0.2s;
        }

        .mobile-nav-inner a:nth-child(4) {
            animation-delay: 0.25s;
        }

        .mobile-nav-inner a:nth-child(5) {
            animation-delay: 0.3s;
        }

        .mobile-nav-inner a:nth-child(6) {
            animation-delay: 0.35s;
        }

        @keyframes mobileLinkIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-link:hover,
        .mobile-link:active {
            color: var(--text-white);
            transform: scale(1.05);
        }

        .mobile-social {
            margin-top: 20px;
            display: flex;
            gap: 20px;
        }

        /* --- Buttons --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-fill {
            background: var(--accent-primary);
            color: white;
        }

        .btn-fill:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid var(--border-white);
            color: var(--text-white);
        }

        .btn-ghost:hover {
            border-color: var(--accent-primary);
            background: var(--accent-ghost);
            transform: translateY(-3px);
        }

        /* --- Hero Section --- */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: var(--bg-deep);
        }

        /* Background image with overlay */
        .hero-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 1;
        }

        .hero-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            mix-blend-mode: multiply;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-top: 50px;
            text-align: center;
            /* Offset for header */
        }

        .tag-pill {
            display: inline-block;
            padding: 6px 16px;
            background: var(--accent-ghost);
            border: 1px solid var(--border-accent);
            border-radius: 20px;
            color: var(--accent-primary);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 5px;
            margin-top: 30px;
            backdrop-filter: blur(20px);
        }

        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero-content h1 span {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.753);
            display: block;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            margin-left: auto;
            margin-right: auto;
            max-width: 600px;
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* --- Global Headings --- */
        .section-header {
            margin-bottom: 70px;
        }

        .section-header.center {
            text-align: center;
        }

        .section-header .tag {
            color: var(--accent-primary);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            margin-bottom: 15px;
            display: block;
        }

        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
        }

        /* --- BRANDS TICKER --- */
        .brands-ticker {
            width: 100%;
            background: #050505;
            padding: 30px 0;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .brands-ticker::before,
        .brands-ticker::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .brands-ticker::before {
            left: 0;
            background: linear-gradient(to right, #050505 0%, transparent 100%);
        }

        .brands-ticker::after {
            right: 0;
            background: linear-gradient(to left, #050505 0%, transparent 100%);
        }

        .brands-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: tickerScroll 30s linear infinite;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .brand-item {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.322);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin: 0 40px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .brand-item:hover {
            color: var(--accent-primary);
        }

        /* --- Conseil / Treatment Advice --- */
        .conseil-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .conseil-card {
            background: var(--bg-card);
            border: 1px solid var(--border-white);
            padding: 40px;
            border-radius: 12px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .conseil-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-5px);
            background: #0d0d0d;
        }

        /* --- Service Detail Overlays --- */
        .service-overlay {
            position: fixed;
            inset: 0;
            z-index: 5000;
            background: rgba(3, 3, 3, 0.85);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px;
        }

        .service-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .overlay-card {
            background: var(--bg-card);
            border: 1px solid var(--border-accent);
            border-radius: 20px;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            overflow: hidden;
            transform: scale(0.95);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (max-width: 900px) {
            .overlay-card {
                grid-template-columns: 1fr;
                max-height: 90vh;
                overflow-y: auto;
            }
        }

        .service-overlay.active .overlay-card {
            transform: scale(1);
        }

        .overlay-visual {
            position: relative;
            min-height: 400px;
        }

        .overlay-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 600px) {
            .overlay-content {
                padding: 30px;
            }
        }

        .overlay-content .tag {
            color: var(--accent-primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.8rem;
            margin-bottom: 15px;
            display: block;
        }

        .overlay-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .tech-specs {
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 25px;
        }

        .tech-specs h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            color: var(--text-white);
        }

        .spec-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        @media (max-width: 500px) {
            .spec-list {
                grid-template-columns: 1fr;
            }
        }

        .spec-list li {
            font-size: 0.85rem;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .spec-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-primary);
            border-radius: 50%;
        }

        .overlay-close {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .overlay-close:hover {
            background: var(--accent-primary);
            transform: rotate(90deg);
        }

        .conseil-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .conseil-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .method-box {
            background: var(--accent-ghost);
            border: 1px solid var(--border-accent);
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .method-box {
                grid-template-columns: 1fr;
            }
        }

        .method-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }

        .method-steps {
            list-style: none;
            padding: 0;
        }

        .method-steps li {
            margin-bottom: 15px;
            display: flex;
            gap: 15px;
            color: var(--text-gray);
        }

        .step-number {
            background: var(--accent-primary);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .parallax-target {
            will-change: transform;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-white);
            padding: 50px 40px;
            transition: var(--transition-smooth);
            position: relative;
            border-radius: 4px;
        }

        .service-card:hover {
            background: #0f0f0f;
            border-color: var(--accent-primary);
            transform: translateY(-8px);
        }

        .service-card:hover .icon-svg {
            stroke: var(--accent-primary);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent-primary);
            transition: height 0.4s ease;
        }

        .service-card:hover::after {
            height: 100%;
        }

        .icon-wrap {
            margin-bottom: 25px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .service-price {
            font-weight: 600;
            color: var(--text-white);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
        }

        .service-price::before {
            content: '';
            display: block;
            width: 15px;
            height: 1px;
            background: var(--accent-primary);
            margin-right: 10px;
        }

        /* --- Pricing --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .pricing-box {
            background: var(--bg-card);
            padding: 60px 40px;
            border: 1px solid var(--border-white);
            border-radius: 8px;
            transition: var(--transition-smooth);
            position: relative;
        }

        .pricing-box.popular {
            border-color: var(--accent-primary);
            background: #080808;
            padding: 80px 40px;
            z-index: 2;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .pricing-box h3 {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .pricing-box .cost {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text-white);
            display: flex;
            align-items: flex-start;
        }

        .pricing-box .cost span {
            font-size: 1rem;
            color: var(--text-dim);
            margin-top: 10px;
            margin-left: 5px;
        }

        .price-features {
            margin: 40px 0;
        }

        .price-features li {
            margin-bottom: 15px;
            color: var(--text-gray);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .price-features li svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-primary);
            flex-shrink: 0;
        }

        /* --- Gallery with Real Images --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            background: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 10, 10, 0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }

        .overlay-text {
            color: white;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transform: translateY(15px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay-text {
            transform: translateY(0);
        }

        /* Label for Avant/Après */
        .status-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* --- Gallery Modal --- */
        .gallery-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 4000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            backdrop-filter: blur(5px);
            padding: 20px;
        }

        .gallery-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-card);
            border: 1px solid var(--border-accent);
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (min-width: 768px) {
            .modal-content {
                flex-direction: row;
            }
        }

        .gallery-modal.active .modal-content {
            transform: scale(1);
        }

        .modal-body {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-image-container {
            flex: 1.5;
            min-height: 300px;
        }

        .modal-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--accent-primary);
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-white);
        }

        .modal-status {
            color: var(--accent-primary);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .modal-desc {
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .gallery-modal {
                padding: env(safe-area-inset-top, 10px) env(safe-area-inset-right, 10px) env(safe-area-inset-bottom, 10px) env(safe-area-inset-left, 10px);
                align-items: flex-start;
                /* Allow scrolling from top */
                overflow-y: auto;
            }

            .modal-content {
                margin: 40px auto;
                /* Space for close button if needed */
                max-height: none;
                /* Let it grow and scroll within the modal overlay */
            }

            .modal-image-container {
                flex: none;
                height: 40vh;
                /* Cap image height on mobile */
                min-height: 250px;
            }

            .modal-body {
                padding: 30px 20px;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 20px;
                background: rgba(0, 0, 0, 0.7);
                /* Darker for better contrast on mobile */
            }
        }

        /* --- Contact --- */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            grid-template-areas:
                "details form"
                "map form";
            gap: 40px 80px;
            align-items: start;
        }

        .contact-details {
            grid-area: details;
        }

        .contact-form-wrapper {
            grid-area: form;
        }

        .map-wrapper {
            grid-area: map;
            margin-top: 0;
            /* Handled by grid gap */
        }

        .contact-details .info-block {
            margin-bottom: 40px;
        }

        .info-block label {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-primary);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .info-block p,
        .info-block a {
            font-size: 1.25rem;
            color: var(--text-white);
            font-weight: 500;
            line-height: 1.4;
        }

        .info-block a:hover {
            color: var(--accent-hover);
        }

        .contact-form-wrapper {
            padding: 50px;
            border-radius: 12px;
        }

        .form-row {
            margin-bottom: 30px;
        }

        .form-row label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-white);
            border-radius: 4px;
            color: white;
            padding: 15px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-primary);
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23b0b0b0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat, repeat;
            background-position: right .7em top 50%, 0 0;
            background-size: .65em auto, 100%;
            color-scheme: dark;
            /* Forces browser internal UI to dark mode */
        }

        select.form-control option {
            background-color: #111;
            color: white;
        }

        .form-feedback {
            margin-top: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 4px;
            display: none;
            padding: 10px;
            text-align: center;
        }

        .form-feedback.success {
            display: block;
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.2);
        }

        /* --- Testimonials --- */
        .testimonials-wrapper {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
            width: 100%;
            /* [T BUGFIX] Safari-friendly fade using mask-image */
            mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 150px, black calc(100% - 150px), transparent);
            z-index: -1;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: scroll-v2 60s linear infinite;
            padding: 20px 0;
            will-change: transform;
        }

        @keyframes scroll-v2 {
            0% {
                transform: translate3d(0, 0, 0);
            }

            100% {
                transform: translate3d(calc(-100% / 3), 0, 0);
            }
        }

        .testimonials-wrapper:hover .testimonials-track {
            animation-play-state: paused;
        }

        /* --- PROCESS --- */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .process-card {
            background: var(--bg-deep);
            border: 1px solid var(--border-white);
            border-radius: 12px;
            padding: 40px 30px;
            position: relative;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow: hidden;
            z-index: 1;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(122, 46, 221, 0.05) 0%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .process-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
            box-shadow: 0 15px 40px rgba(122, 46, 221, 0.15);
        }

        .process-card:hover::before {
            opacity: 1;
        }

        .process-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition-smooth);
        }

        .process-card:hover .process-number {
            color: rgba(122, 46, 221, 0.1);
            transform: scale(1.1);
        }

        .process-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-ghost);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
            border: 1px solid var(--border-accent);
            margin-bottom: 10px;
        }

        .process-icon svg {
            width: 30px;
            height: 30px;
        }

        .process-card h4 {
            color: var(--text-white);
            font-size: 1.25rem;
            font-weight: 600;
        }

        .process-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .process-grid {
                grid-template-columns: 1fr;
            }
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-white);
            border-radius: 8px;
            padding: 35px;
            width: 400px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: var(--transition-smooth);
            user-select: none;
        }

        @media (max-width: 600px) {
            .testimonial-card {
                width: 300px;
                /* Better mobile fit */
                padding: 25px;
            }

            .testimonials-wrapper::before,
            .testimonials-wrapper::after {
                width: 70px;
                /* Smaller fades on mobile */
            }
        }

        .stars {
            display: flex;
            gap: 5px;
            color: #7a2edd;
            /* Matched User's Purple Upgrade */
        }

        .stars svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .testimonial-text {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-ghost);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
            font-weight: 700;
            font-size: 1.2rem;
            border: 1px solid var(--border-accent);
        }

        .author-info h4 {
            color: var(--text-white);
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .author-info span {
            color: var(--text-dim);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* --- FAQ --- */
        .faq-layout {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-white);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-item.is-open {
            border-color: var(--accent-primary);
            background: #080808;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--text-white);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--accent-primary);
            transition: var(--transition-smooth);
        }

        .faq-icon::before {
            top: 11px;
            left: 0;
            width: 100%;
            height: 2px;
        }

        .faq-icon::after {
            top: 0;
            left: 11px;
            width: 2px;
            height: 100%;
        }

        .faq-item.is-open .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-item.is-open .faq-icon::before {
            background: var(--text-white);
        }

        .faq-answer {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        }

        .faq-item.is-open .faq-answer {
            opacity: 1;
        }

        .faq-answer-inner {
            padding: 0 30px 25px;
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.95rem;
            display: block;
            /* ensure block layout for text */
        }

        @media (max-width: 768px) {
            .testimonial-card {
                width: 300px;
                padding: 30px 20px;
            }

            .faq-question {
                font-size: 1rem;
                padding: 20px;
            }

            .faq-answer-inner {
                padding: 0 20px 20px;
            }
        }

        /* --- Footer --- */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-white);
            background: #020202;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }

        .footer-nav {
            display: flex;
            gap: 30px;
        }

        .footer-nav a {
            color: var(--text-gray);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-nav a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-dim);
            font-size: 0.8rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .pricing-box.popular {
                padding: 60px 40px;
                transform: none;
            }

            .contact-layout {
                grid-template-columns: 1fr;
                grid-template-areas:
                    "details"
                    "form"
                    "map";
                gap: 50px;
            }

            .contact-details {
                text-align: center;
            }

            .contact-details .section-header {
                align-items: center;
            }

        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }

            .section-padding {
                padding: 80px 0;
            }

            /* Header adjustments for mobile */
            .nav-links {
                display: none;
            }

            .btn.btn-fill[href="#contact"] {
                display: none;
            }

            /* Hide book button on very small screens to fit logo and menu */
            header {
                width: 100%;
                padding: 0 20px;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content h1 {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }

            /* [T6] inner @media extracted — see standalone @media (max-width:380px) below */

            .hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            /* Ensure cards fit screen on mobile */
            .service-card {
                padding: 40px 30px;
            }

            .pricing-box {
                padding: 40px 30px;
            }

            /* Animations adjust for mobile */
            .slide-left,
            .slide-right {
                transform: translateY(30px);
            }

            .slide-left.active,
            .slide-right.active {
                transform: translateY(0);
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }
        }

        /* --- Price Toggle --- */
        .price-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .toggle-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-gray);
            transition: var(--transition-smooth);
        }

        .toggle-label.active {
            color: white;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.1);
            transition: .4s;
            border-radius: 34px;
            border: 1px solid var(--border-white);
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-primary);
        }

        input:checked+.slider {
            background-color: var(--accent-primary);
        }

        input:checked+.slider:before {
            transform: translateX(28px);
        }

        /* --- Detailing Timeline --- */
        .timeline-section {
            background: var(--bg-deep);
            padding: 100px 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease, padding 0.5s ease;
            width: 100%;
        }

        .timeline-container.active {
            max-height: 5000px;
            opacity: 1;
            padding-top: 60px;
        }

        .timeline-reveal-wrapper {
            margin-top: 40px;
            text-align: center;
            z-index: 5;
        }

        .btn-reveal {
            background: transparent;
            border: 2px solid var(--accent-primary);
            color: var(--text-white);
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Outfit', sans-serif;
        }

        .btn-reveal:hover {
            background: var(--accent-primary);
            box-shadow: 0 0 20px rgba(122, 46, 221, 0.4);
            transform: translateY(-2px);
        }

        .btn-reveal svg {
            transition: transform 0.3s ease;
        }

        .btn-reveal.active svg {
            transform: rotate(180deg);
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(122, 46, 221, 0.1);
            transform: translateX(-50%);
        }

        .timeline-progress {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent-primary), #bc13fe);
            transform: translateX(-50%);
            transition: height 0.1s linear;
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 30px 40px;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .timeline-item.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-dot {
            position: absolute;
            top: 40px;
            width: 16px;
            height: 16px;
            background: var(--bg-deep);
            border: 3px solid var(--accent-primary);
            border-radius: 50%;
            z-index: 10;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .timeline-item.revealed .timeline-dot {
            background: var(--accent-primary);
            box-shadow: 0 0 15px var(--accent-primary);
            transform: scale(1.2);
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -8px;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -8px;
        }

        .timeline-content {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border-white);
            position: relative;
            transition: transform 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            border-color: var(--accent-primary);
        }

        .timeline-step-num {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            color: var(--accent-primary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .timeline-content h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .timeline-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        @media (max-width: 768px) {

            .timeline-line,
            .timeline-progress {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 70px;
                padding-right: 20px;
                text-align: left !important;
            }

            .timeline-dot {
                left: 22px !important;
            }
        }

        /* --- Map Card --- */
        .map-wrapper {
            margin-top: 60px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-white);
            height: 450px;
            position: relative;
        }

        .map-wrapper iframe {
            filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-white);
            z-index: 5;
            max-width: 250px;
        }

        /* =====================================================
           TOUCH DEVICE — DISABLE ALL HOVER EFFECTS
           @media (hover: none) targets real touchscreens.
           Without this, tapping a card "activates" the hover
           state and it gets visually stuck until the next tap.
           ===================================================== */
        @media (hover: none) {

            /* --- Navigation --- */
            .nav-links a:hover {
                color: var(--text-gray);
            }

            .nav-links a:hover::after {
                width: 0;
            }

            .footer-nav a:hover {
                color: var(--text-gray);
            }

            .info-block a:hover {
                color: var(--text-white);
            }

            .mobile-link:hover {
                color: var(--text-gray);
                transform: none;
            }

            /* --- Service Cards --- */
            .service-card:hover {
                background: var(--bg-card);
                border-color: var(--border-white);
                transform: none;
            }

            .service-card:hover .icon-svg {
                stroke: var(--text-white);
            }

            .service-card:hover::after {
                height: 0;
            }

            /* --- Conseil Cards --- */
            .conseil-card:hover {
                transform: none;
                border-color: var(--border-white);
                background: var(--bg-card);
            }

            /* --- Process Cards --- */
            .process-card:hover {
                transform: none;
                border-color: var(--border-white);
                box-shadow: none;
            }

            .process-card:hover::before {
                opacity: 0;
            }

            .process-card:hover .process-number {
                color: rgba(255, 255, 255, 0.03);
                transform: none;
            }

            /* --- Gallery --- */
            .gallery-item:hover .gallery-overlay {
                opacity: 0;
            }

            .gallery-item:hover .gallery-img {
                transform: none;
            }

            .gallery-item:hover .overlay-text {
                transform: translateY(15px);
            }

            /* --- Timeline --- */
            .timeline-content:hover {
                transform: none;
                border-color: var(--border-white);
            }

            /* --- Buttons --- */
            .btn-fill:hover,
            .btn-ghost:hover,
            .btn-reveal:hover {
                transform: none;
            }

            .btn-fill:hover {
                background: var(--accent-primary);
            }

            .btn-ghost:hover {
                border-color: var(--border-white);
                background: transparent;
            }

            .btn-reveal:hover {
                background: transparent;
                box-shadow: none;
            }

            /* --- Modal / Overlay close buttons --- */
            .modal-close:hover,
            .overlay-close:hover {
                transform: none;
                background: rgba(255, 255, 255, 0.1);
            }

            /* --- Brand ticker --- */
            .brand-item:hover {
                color: rgba(255, 255, 255, 0.322);
            }
        }

        /* [T6] Standalone extracted small-phone query */
        @media (max-width: 380px) {
            .mobile-link {
                font-size: 1.6rem;
            }

            .mobile-nav-inner {
                gap: 30px;
            }
        }

        /* [T25] Hero overflow on 320px screens */
        .hero-content h1 {
            max-width: 100%;
            overflow-wrap: break-word;
        }

        /* [T26] Modal close button minimum tap size 44x44 */
        .modal-close,
        .overlay-close {
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* [T23] Tap target min-size for FAQ buttons and nav links */
        .faq-question {
            min-height: 44px;
        }

        .nav-links a {
            padding: 10px 0;
        }

        /* [T24] iOS scroll chaining fix for horizontal containers */
        .testimonials-wrapper,
        .brands-ticker {
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        /* [T18] Social proof micro-banner */
        .social-proof-banner {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            border: 1px solid #7a2edd;
            border-radius: 30px;
            background: rgba(61, 60, 56, 0.07);
            margin-bottom: 28px;
            opacity: 0;
            transform: translateY(14px);
            animation: socialProofIn 0.6s 1.4s forwards ease-out;
        }

        .social-proof-banner .stars-gold {
            color: #7a2edd;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .social-proof-banner span {
            font-size: 0.8rem;
            color: var(--text-gray);
            font-family: 'Poppins', sans-serif;
        }

        @keyframes socialProofIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* [T21] Trust badges row */
        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin: 20px 0 26px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        .trust-badge svg {
            width: 14px;
            height: 14px;
            stroke: var(--text-white);
            flex-shrink: 0;
        }

        @media (max-width: 600px) {
            .trust-badges {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }
        }

        /* [T LIGHTWEIGHT] Pure CSS Hero Animation - 0 JS Overhead */
        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-anime {
            opacity: 0;
            animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .ha-1 {
            animation-delay: 0.2s;
        }

        .ha-2 {
            animation-delay: 0.4s;
        }

        .ha-3 {
            animation-delay: 0.6s;
        }

        .field-error {
            display: block;
            color: #f87171;
            font-size: 0.78rem;
            margin-top: 5px;
            font-family: 'Poppins', sans-serif;
        }

        .form-control.invalid {
            border-color: #f87171 !important;
        }

        /* --- Skip Navigation Link --- */
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 99999;
            background: var(--accent-primary);
            color: white;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 0 0 4px 4px;
            text-decoration: none;
        }

        .skip-link:focus {
            left: 0;
            position: fixed;
        }

        /* --- Language Switcher --- */
        .language-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: 15px;
        }

        .lang-btn {
            background: transparent;
            border: 1px solid var(--border-white);
            color: var(--text-gray);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition-smooth);
            min-height: 30px;
        }

        .lang-btn.active,
        .lang-btn:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            background: var(--accent-ghost);
        }

        /* --- RTL Support for Arabic --- */
        html[lang="ar"] {
            direction: rtl;
            text-align: right;
        }

        html[lang="ar"] body {
            direction: rtl;
        }

        html[lang="ar"] header {
            flex-direction: row-reverse;
        }

        html[lang="ar"] .nav-links {
            flex-direction: row-reverse;
        }

        html[lang="ar"] .hero-content {
            text-align: right;
        }

        html[lang="ar"] .hero-btns {
            justify-content: flex-end;
        }

        html[lang="ar"] .mobile-nav-inner {
            direction: rtl;
        }

        html[lang="ar"] .gallery-grid {
            direction: rtl;
        }

        html[lang="ar"] .testimonials-track {
            direction: rtl;
        }

        html[lang="ar"] footer {
            direction: rtl;
        }

        html[lang="ar"] .footer-content {
            flex-direction: row-reverse;
        }

        html[lang="ar"] .service-price::before {
            margin-right: 0;
            margin-left: 10px;
        }

        html[lang="ar"] .contact-layout {
            direction: rtl;
        }

        html[lang="ar"] .form-row label {
            text-align: right;
        }

        html[lang="ar"] .section-header.center {
            direction: rtl;
        }

        html[lang="ar"] .faq-question {
            text-align: right;
            flex-direction: row-reverse;
        }

        html[lang="ar"] .faq-icon {
            margin-left: 0;
            margin-right: 20px;
        }

        html[lang="ar"] .conseil-card h3 {
            flex-direction: row-reverse;
        }

        html[lang="ar"] .process-number {
            right: auto;
            left: 20px;
        }

        html[lang="ar"] .language-switcher {
            margin-left: 0;
            margin-right: 15px;
        }

        html[lang="ar"] .info-block {
            direction: rtl;
        }

        html[lang="ar"] .footer-nav {
            flex-direction: row-reverse;
        }

        /* --- Additional Breakpoints --- */
        /* Mobile Small: 320px */
        @media (max-width: 320px) {
            body {
                font-size: 14px;
            }

            .container {
                padding: 0 12px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .service-card {
                padding: 30px 20px;
            }

            .pricing-box {
                padding: 30px 20px;
            }

            .btn {
                padding: 14px 20px;
                font-size: 0.8rem;
            }

            .overlay-content {
                padding: 20px;
            }

            .overlay-content h2 {
                font-size: 1.6rem;
            }
        }

        /* Mobile: 375px (iPhone SE) */
        @media (max-width: 375px) {

            input.form-control,
            select.form-control,
            textarea.form-control {
                min-height: 44px;
            }

            button.btn,
            a.btn {
                min-height: 44px;
            }

            .form-row[style*="grid-template-columns"] {
                display: block !important;
            }

            .form-row[style*="grid"]>div+div {
                margin-top: 20px;
            }
        }

        /* Touch targets 44x44px minimum */
        @media (max-width: 768px) {
            .btn {
                min-height: 44px;
            }

            .faq-question {
                padding: 15px 20px;
            }

            .gallery-item {
                min-height: 200px;
            }
        }

        /* Large: 1200px+ */
        @media (min-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Submission cooldown visual */
        #submit-btn:disabled {
            cursor: not-allowed;
            opacity: 0.6;
        }

        .cooldown-msg {
            display: block;
            font-size: 0.8rem;
            color: var(--text-dim);
            margin-top: 8px;
            text-align: center;
        }

        /* Conditional Detailing Field Animation */
        @keyframes fadeInSlideDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated-field {
            animation: fadeInSlideDown 0.3s ease-out forwards;
        }
    