
        /* Variables CSS */
        :root {
            --primary: #ff6b35;
            --secondary: #1a1a2e;
            --accent: #0fb8ff;
            --success: #00d4aa;
            --warning: #ffd700;
            --bg-dark: #0a0a0f;
            --bg-light: #f8f9fa;
            --text-light: #ffffff;
            --text-dark: #2c2c54;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }
        
        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            overflow-x: hidden;
            background-color: var(--bg-dark);
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8c5a;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes countUp {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .animate-in {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Header/footer shell styles are centralized in /assets/css/shell-shared.css */
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(120deg, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.65)), url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698cc70_Sectionheader.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 35%),
                        radial-gradient(circle at 80% 0%, rgba(255, 107, 53, 0.2), transparent 40%),
                        linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(15, 184, 255, 0.2));
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            z-index: 2;
        }
        
        .hero-badge {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 30px;
            display: inline-block;
            color: var(--warning);
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .cta-primary {
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }
        
        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }
        
        .urgency-text {
            font-size: 0.9rem;
            opacity: 0.8;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .social-proof {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .stars {
            color: var(--warning);
        }
        
        /* Sections */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-dark {
            background: var(--bg-dark);
        }
        
        .section-light {
            background: var(--bg-light);
            color: var(--text-dark);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .problem-section {
            background: linear-gradient(120deg, rgba(10, 10, 15, 0.78), rgba(10, 10, 15, 0.45)), url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef56990534_Section2prob.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-blend-mode: overlay;
        }

        .method-section {
            background: linear-gradient(120deg, rgba(248, 249, 250, 0.82), rgba(248, 249, 250, 0.6)), url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698cc70_Sectionmamethode.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-blend-mode: screen;
            color: var(--text-dark);
        }

        .method-section .section-title,
        .method-section .section-subtitle {
            color: var(--text-dark);
        }
        
        /* Problem-Solution Section */
        .problem-solution {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .problem-card, .solution-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }
        
        .problem-card:hover, .solution-card:hover {
            transform: translateY(-10px);
        }
        
        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .problem-card .card-icon {
            color: #ff4757;
        }

        .solution-card .card-icon {
            color: var(--success);
        }

        .feature-list {
            text-align: left;
            margin-top: 20px;
        }

        .card-icon--primary {
            color: var(--primary);
        }

        .card-icon--accent {
            color: var(--accent);
        }

        .card-icon--success {
            color: var(--success);
        }

        .card-icon--warning {
            color: var(--warning);
        }
        
        /* Method Section */
        .method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        @media (min-width: 768px) {
            .method-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .method-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .method-step {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .method-step:hover {
            transform: translateY(-10px);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }
        
        .method-step h3 {
            margin: 20px 0 15px;
            font-size: 1.3rem;
        }
        
        /* Testimonials */
        .testimonials-container {
            position: relative;
            margin-top: 60px;
        }

        .senja-container {
            margin-top: 60px;
        }
        
        .senja-embed {
            border-radius: 15px;
            overflow: hidden;
        }

        .senja-embed--full {
            display: block;
            width: 100%;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }
        
        /* Carousel */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
        }
        
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-prev {
            left: 10px;
        }
        
        .carousel-next {
            right: 10px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .indicator.active {
            background: white;
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-heading {
            color: var(--text-dark);
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 30px 20px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* Pricing Section */
        .pricing-section {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            margin-top: 40px;
            text-align: center;
        }
        
        .pricing-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 300px;
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .price-suffix {
            font-size: 1rem;
        }
        
        .pricing-card .price-description {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 12px;
        }
        
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .pricing-card ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .pricing-card ul li i {
            color: var(--success);
            margin-top: 5px;
        }

        .engagement-selector {
            margin-top: 10px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .engagement-selector .selector-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .engagement-dropdown {
            width: 100%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            color: var(--text-light);
            padding: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .engagement-dropdown:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .engagement-note {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }
        
        /* CTA Section */
        .final-cta {
            background: linear-gradient(125deg, rgba(10, 10, 15, 0.9), rgba(255, 107, 53, 0.7)), url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698dfaa_Sectioncontact.webp');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .bilan-lead-card {
            text-align: left;
            background: rgba(8, 9, 14, 0.56);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            backdrop-filter: blur(16px);
            box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
            overflow: hidden;
        }

        .bilan-lead-head {
            padding: 30px 32px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.14), rgba(15, 184, 255, 0.08));
        }

        .bilan-lead-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.24);
            color: #ffd8ca;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .bilan-lead-points {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin: 8px 0 0;
            padding: 0;
        }

        .bilan-lead-points li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            list-style: none !important;
            list-style-type: none !important;
        }

        .bilan-lead-points li::marker {
            content: "" !important;
        }

        .bilan-lead-points i {
            color: var(--success);
            font-size: 0.95rem;
        }

        .bilan-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 24px 32px 30px;
        }

        .bilan-cta-row .booking-button {
            margin-top: 0;
            flex: 1 1 300px;
            justify-content: center;
        }

        .bilan-secondary-button {
            flex: 1 1 260px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 50px;
            padding: 18px 28px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .bilan-secondary-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .contact-panel[hidden] {
            display: none !important;
        }

        .contact-panel {
            margin-top: 18px;
            background: rgba(8, 9, 14, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(16px);
            text-align: left;
            animation: fadeInUp 0.35s ease;
        }

        .contact-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .contact-panel-header h3 {
            margin: 0;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .contact-panel-close {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .contact-panel-close:hover {
            background: rgba(255, 255, 255, 0.18);
        }
        
        .cta-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.15;
            max-width: 12ch;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-title span {
            display: block;
        }

        .cta-title-mobile-break {
            display: none;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            text-align: center;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background: white;
            color: var(--primary);
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .guarantee {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: inline-block;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
        }

        .compact-contact-form {
            max-width: none;
            margin: 0;
            background: transparent;
            border: none;
            backdrop-filter: none;
            padding: 20px;
            border-radius: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0 16px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-submit {
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
        }
        
        .form-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 10px;
            display: none;
        }
        
        .form-message.success {
            background: rgba(0, 212, 170, 0.2);
            border: 1px solid var(--success);
            color: var(--success);
        }
        
        .form-message.error {
            background: rgba(255, 71, 87, 0.2);
            border: 1px solid #ff4757;
            color: #ff4757;
        }

        .optional-message-toggle {
            margin: 6px 0 12px;
        }

        .message-toggle-btn {
            border: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .form-group-message.is-hidden {
            display: none;
        }
        
        /* Booking Button */
        .booking-button {
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            margin-top: 30px;
        }
        
        .booking-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }
        
        /* Header/footer shell styles are centralized in /assets/css/shell-shared.css */
        
        /* Newsletter Bar */
        .newsletter-bar {
            background: var(--glass-bg);
            border-top: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }
        
        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .newsletter-title {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .newsletter-form {
            width: 100%;
            max-width: 500px;
        }
        
        .newsletter-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-light);
            padding: 12px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
            min-width: 0;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-button {
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .newsletter-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        
        .newsletter-checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 12px;
        }

        .newsletter-checkbox input {
            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;
            flex-shrink: 0;
            accent-color: var(--primary);
            border-radius: 8px;
        }
        
        .newsletter-checkbox label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            line-height: 1.4;
        }
        
        .newsletter-checkbox a {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .newsletter-message {
            padding: 10px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 14px;
            display: none;
            text-align: center;
        }
        
        .newsletter-message.success {
            background: rgba(0, 212, 170, 0.2);
            border: 1px solid var(--success);
            color: var(--success);
        }
        
        .newsletter-message.error {
            background: rgba(255, 71, 87, 0.2);
            border: 1px solid #ff4757;
            color: #ff4757;
        }

        .input-hidden {
            display: none;
        }
        
        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 600px;
            margin: 0 auto;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            padding: 20px;
            border-radius: 15px;
            z-index: 1000;
            display: none;
        }
        
        .cookie-consent.show {
            display: block;
        }
        
        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .cookie-text {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cookie-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: var(--primary);
            color: white;
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--glass-border);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            background-attachment: scroll;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        @media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
            .parallax {
                background-attachment: fixed;
            }
        }
        
        /* Pricing Card Styles */
        .pricing-card {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-card.popular {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
            border: 2px solid var(--primary);
            z-index: 2;
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
        }
        
        .pricing-card.premium {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
            border: 2px solid var(--primary);
        }
        
        .pricing-card.premium:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
        }
        
        .popular-badge, .premium-badge {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .premium-badge {
            background: linear-gradient(45deg, var(--primary), #ff8c5a);
        }
        
        .pricing-card.premium .price {
            color: var(--primary);
            font-weight: 800;
        }
        
        .pricing-card.premium ul li strong {
            color: var(--primary);
            font-weight: 700;
        }
        
        .pricing-cards .pricing-card {
            margin-top: 50px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .problem-solution {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .method-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .social-proof {
                flex-direction: column;
                gap: 10px;
            }
            
            .newsletter-input-group {
                flex-direction: column;
            }
            
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-cards .pricing-card {
                max-width: 100%;
                width: 100%;
                margin-bottom: 60px;
                margin-top: 50px;
            }

            .bilan-lead-head {
                padding: 24px 20px 18px;
            }

            .cta-title {
                max-width: 10ch;
            }

            .cta-title-mobile-break {
                display: block;
            }

            .bilan-lead-points {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .bilan-cta-row {
                padding: 18px 20px 22px;
            }

            .bilan-cta-row .booking-button,
            .bilan-secondary-button {
                width: 100%;
                flex: 1 1 100%;
            }

            .contact-panel-header {
                padding: 14px 16px;
            }

            .compact-contact-form {
                padding: 16px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .pricing-card.popular, .pricing-card.premium {
                transform: none;
            }
            
            .pricing-card:hover {
                transform: translateY(-10px);
            }
            
            .popular-badge, .premium-badge {
                top: -35px;
                padding: 8px 20px;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero-badge {
                font-size: 12px;
                padding: 6px 15px;
                margin-bottom: 20px;
                display: inline-block;
                max-width: 90%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .cta-primary, .cta-button, .booking-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cookie-consent {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
            
            .carousel-btn {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            
            .newsletter-form {
                max-width: 100%;
            }
        }
        
        /* Accessibility Improvements */
        
        .popular-badge, .premium-badge {
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        
        .cta-primary, .cta-button, .booking-button, .form-submit {
            color: white;
            font-weight: 700;
        }
        
        .pricing-card h3 {
            color: var(--text-light);
            font-weight: 700;
        }
        
        .pricing-card .price {
            font-weight: 800;
        }
        
        .pricing-card .price-description {
            font-weight: 600;
        }
        
        .pricing-card ul li {
            font-weight: 500;
        }
        
        .cookie-btn.cookie-accept {
            background: #d54f1f;
            color: white;
            font-weight: 700;
            padding: 10px 25px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .cookie-btn.cookie-accept:hover {
            background: #c44a1a;
            border-color: rgba(0, 0, 0, 0.3);
        }
