
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --royal-blue: #1e40af;
            --cyan: #06b6d4;
            --emerald: #10b981;
            --dark-navy: #0f172a;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #64748b;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark-navy);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== NAVIGATION ========== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 64, 175, 0.08);
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 50%, var(--emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-navy);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: var(--royal-blue);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.35);
        }

        /* Mobile */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--dark-navy);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            margin-top: 80px;
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .pre-launch-badge {
            display: inline-block;
            background: rgba(16, 185, 129, 0.15);
            color: var(--emerald);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero-tagline {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        /* ========== SECTION CONTAINER ========== */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== DUAL CTA SECTION ========== */
        .dual-cta-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
            padding: 5rem 2rem;
        }

        .dual-cta-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .cta-card {
            background: white;
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
            text-align: center;
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .cta-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
            border-color: var(--cyan);
        }

        .cta-card-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-card h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-navy);
        }

        .cta-card p {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-card-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-card-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
        }

        .cta-card.secondary .cta-card-btn {
            background: linear-gradient(135deg, var(--emerald) 0%, var(--cyan) 100%);
        }

        /* ========== PRATICIEN SECTION ========== */
        .praticien-section {
            background: white;
        }

        .praticien-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
            border-radius: 24px;
            padding: 3rem;
            margin-top: 2rem;
            text-align: center;
        }

        .praticien-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 800;
        }

        .praticien-name {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
        }

        .praticien-title {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .praticien-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .badge {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark-navy);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        /* ========== BENEFITS GRID ========== */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-navy);
        }

        .benefit-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ========== ZONE INTERVENTION ========== */
        .zone-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }

        .zone-section .section-title {
            color: white;
            background: none;
            -webkit-text-fill-color: white;
        }

        .zone-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .zone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .zone-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            font-weight: 600;
            font-size: 1.125rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .zone-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .zone-note {
            margin-top: 2rem;
            text-align: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
        }

        /* ========== ACCOMPAGNEMENTS ========== */
        .accompagnements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .accompagnement-item {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.125rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
            transition: all 0.3s;
        }

        .accompagnement-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.3);
        }

        /* ========== TARIFS ========== */
        .tarifs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .tarif-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
            border: 2px solid transparent;
            transition: all 0.4s;
            text-align: center;
        }

        .tarif-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
            border-color: var(--cyan);
        }

        .tarif-card.featured {
            border-color: var(--cyan);
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        }

        .tarif-name {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
        }

        .tarif-price {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .tarif-duration {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .tarif-description {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .tarif-note {
            text-align: center;
            margin-top: 2rem;
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* ========== PROCESS ========== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            font-size: 1.75rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-navy);
        }

        .process-step p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ========== FORM SECTION ========== */
        .form-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-navy);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 1.25rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
        }

        .form-note {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: var(--text-gray);
            text-align: center;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--dark-navy);
            color: white;
            padding: 3rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.3s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .dual-cta-container {
                grid-template-columns: 1fr;
            }

            .praticien-badges {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }
    
/* === UTILITY CLASSES FOR CITY PAGES === */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

.max-w-800 { max-width: 800px; }

.text-gray { color: var(--text-gray); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-sm { font-size: 0.8rem; }

.bg-gradient-blue { background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%); }
