
        /* Variables CSS */
        :root {
            --primary: var(--brand-signal, #e63946);
            --primary-on-light: var(--brand-signal-on-light, #b8222d);
            --primary-on-dark: var(--brand-signal-on-dark, #ff4d5c);
            --primary-cta: var(--brand-signal-cta, #c72532);
            --primary-cta-hover: var(--brand-signal-cta-hover, #a91624);
            --secondary: var(--brand-graphite, #2a2d34);
            --accent: var(--brand-signal, #e63946);
            --success: var(--brand-off-white, #f5f4f0);
            --warning: var(--brand-signal, #e63946);
            --bg-dark: var(--brand-obsidian, #0b0b0d);
            --bg-light: var(--brand-off-white, #f5f4f0);
            --text-light: var(--brand-off-white, #f5f4f0);
            --text-dark: var(--brand-obsidian, #0b0b0d);
            --glass-bg: rgba(245, 244, 240, 0.06);
            --glass-border: rgba(245, 244, 240, 0.16);
        }
        
        /* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body, '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: var(--primary-cta);
        }
        
        /* 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; }
        }

        @keyframes caretBlink {
            0%, 45% { opacity: 1; }
            46%, 100% { opacity: 0; }
        }
        
        .animate-in {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }

        .hl-icon {
            width: 1em;
            height: 1em;
            display: inline-block;
            flex-shrink: 0;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            vertical-align: -0.125em;
        }
        
        /* Header/footer shell styles are centralized in /assets/css/shell-shared.css */
        
        /* Hero Section */
        .hero {
            min-height: 94vh;
            background: url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698cc70_Sectionheader.webp');
            background-color: var(--brand-obsidian);
            background-blend-mode: multiply;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 11, 13, 0.46);
            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: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 30px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--warning);
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 24px;
            color: var(--brand-off-white);
            display: inline-block;
            line-height: 1.15;
            padding-bottom: 0.08em;
            max-width: 980px;
            margin-left: auto;
            margin-right: auto;
            text-wrap: balance;
        }

        .hero-title__lead {
            display: block;
        }

        .hero-typewriter {
            display: flex;
            align-items: baseline;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.16em 0.28em;
            min-height: 1.15em;
            margin-top: 0.1em;
            font-size: 0.52em;
            line-height: 1.08;
            color: var(--brand-off-white);
        }

        .hero-typewriter__prefix {
            color: var(--text-soft);
        }

        .hero-typewriter__slot {
            display: inline-flex;
            align-items: baseline;
            justify-content: flex-start;
            min-width: 16ch;
            color: var(--primary-on-dark);
            white-space: nowrap;
        }

        .hero-typewriter__text {
            display: inline;
            color: inherit;
        }

        .hero-typewriter__caret {
            width: 0.08em;
            height: 0.78em;
            display: inline-block;
            flex: 0 0 auto;
            margin-left: 0.04em;
            background: var(--primary-on-dark);
            animation: caretBlink 1s steps(1) infinite;
            transform: translateY(0.08em);
        }
        
        .hero-subtitle {
            font-size: 1.35rem;
            font-weight: 300;
            margin-bottom: 22px;
            opacity: 0.9;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 10px;
        }
        
        .cta-primary {
            background: var(--primary-cta);
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 8px;
            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(230, 57, 70, 0.4);
        }
        
        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
        }
        
        .urgency-text {
            font-size: 0.9rem;
            opacity: 0.8;
            font-weight: 500;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .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: url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef56990534_Section2prob.webp');
            background-color: rgba(11, 11, 13, 0.86);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-blend-mode: overlay;
        }

        .method-section {
            background: url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698cc70_Sectionmamethode.webp');
            background-color: rgba(245, 244, 240, 0.9);
            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: none;
            padding: 40px;
            border-radius: 8px;
            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: #E63946;
        }

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

        /* Problem Quotes */
        .problem-quotes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .problem-quote {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-left: 3px solid var(--primary);
            backdrop-filter: none;
            border-radius: 8px;
            padding: 24px 28px;
            font-size: 1.05rem;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-light);
            margin: 0;
        }

        .problem-transition {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .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);
            }
        }

        /* Article Discovery Section */
        .article-discovery {
            background: var(--brand-off-white);
        }

        .article-discovery__intro {
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 46px;
        }

        .article-discovery__eyebrow {
            color: var(--primary-on-light);
            font-size: 0.86rem;
            font-weight: 800;
            letter-spacing: 0;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .article-discovery__actions {
            display: flex;
            justify-content: center;
            margin-top: 24px;
        }

        .article-discovery__hub-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 12px 22px;
            border: 1px solid rgba(230, 57, 70, 0.34);
            border-radius: 8px;
            background: rgba(230, 57, 70, 0.08);
            color: var(--primary-on-light);
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .article-discovery__hub-link:hover {
            transform: translateY(-2px);
            border-color: rgba(230, 57, 70, 0.62);
            background: rgba(230, 57, 70, 0.13);
        }

        .article-discovery__grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
            align-items: stretch;
        }

        .article-discovery__card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 22px;
            border: 1px solid rgba(26, 26, 46, 0.12);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--text-dark);
            text-decoration: none;
            box-shadow: 0 14px 34px rgba(26, 26, 46, 0.08);
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .article-discovery__card:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 57, 70, 0.34);
            box-shadow: 0 18px 38px rgba(26, 26, 46, 0.12);
        }

        .article-discovery__label {
            color: var(--primary-on-light);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .article-discovery__title {
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.28;
            margin-bottom: 12px;
        }

        .article-discovery__summary {
            color: rgba(44, 44, 84, 0.78);
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .article-discovery__meta {
            color: var(--primary-on-light);
            font-size: 0.86rem;
            font-weight: 800;
            margin-top: auto;
            padding-top: 18px;
        }

        @media (max-width: 960px) {
            .article-discovery__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .article-discovery__grid {
                grid-template-columns: 1fr;
            }

            .article-discovery__card {
                padding: 20px;
            }
        }
        
        .method-step {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: none;
            padding: 40px;
            border-radius: 8px;
            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: var(--primary-cta);
            border-radius: 8px;
            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-shell {
            position: relative;
        }
        
        .senja-embed {
            border-radius: 8px;
            overflow: hidden;
        }

        .senja-embed--full {
            display: block;
            width: 100%;
        }

        .senja-shell:not(.senja-ready) .senja-embed--full {
            max-height: 0;
            min-height: 0 !important;
            opacity: 0;
            overflow: hidden;
        }

        .senja-shell.senja-ready .senja-embed--full {
            max-height: none;
            opacity: 1;
        }

        .senja-shell.senja-ready .senja-fallback {
            display: none;
        }

        .senja-fallback {
            display: grid;
            gap: 20px;
            padding: 28px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: none;
        }

        .senja-fallback__notice {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .senja-fallback__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .senja-fallback__card {
            padding: 22px;
            border-radius: 8px;
            background: rgba(10, 10, 15, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .senja-fallback__eyebrow {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.66);
            margin-bottom: 10px;
        }

        .senja-fallback__card h3 {
            font-size: 1.35rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .senja-fallback__card p {
            color: rgba(255, 255, 255, 0.84);
            line-height: 1.6;
        }

        .senja-fallback__cta {
            justify-self: start;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 22px;
            border-radius: 8px;
            background: var(--primary-cta);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 12px 28px rgba(230, 57, 70, 0.28);
        }

        .senja-fallback__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(230, 57, 70, 0.34);
        }
        
        /* About Section */
        .about-section {
            overflow: hidden;
            scroll-margin-top: calc(var(--nav-height, 78px) + 28px);
            background: #101012;
            color: var(--text-light);
        }

        .about-section::before {
            content: '';
            position: absolute;
            inset: 0;
            border-top: 1px solid rgba(245, 244, 240, 0.08);
            border-bottom: 1px solid rgba(245, 244, 240, 0.08);
            background: rgba(245, 244, 240, 0.018);
            pointer-events: none;
        }

        .about-section .container {
            position: relative;
            z-index: 1;
        }

        .about-spotlight {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            gap: clamp(36px, 6vw, 76px);
            align-items: center;
        }

        .about-copy {
            max-width: 650px;
        }

        .about-eyebrow {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            margin-bottom: 18px;
            padding: 8px 14px;
            border: 1px solid rgba(230, 57, 70, 0.42);
            border-radius: 8px;
            background: rgba(230, 57, 70, 0.09);
            color: var(--primary-on-dark);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .about-heading {
            max-width: 12ch;
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 5rem;
            letter-spacing: 0;
            line-height: 0.92;
            text-wrap: balance;
        }

        .about-subtitle {
            max-width: 600px;
            margin-bottom: 28px;
            color: var(--text-soft);
            font-size: 1.22rem;
            line-height: 1.65;
        }

        .about-story {
            display: grid;
            gap: 16px;
            max-width: 640px;
            color: rgba(245, 244, 240, 0.84);
            font-size: 1.02rem;
            line-height: 1.75;
        }

        .about-cta-row + .about-story {
            margin-top: 30px;
        }

        .about-cta-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px 18px;
            margin-top: 32px;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 14px 22px;
            border-radius: 8px;
            background: var(--primary-cta);
            color: #fff;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 14px 34px rgba(230, 57, 70, 0.28);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            gap: 10px;
        }

        .about-cta:hover {
            transform: translateY(-3px);
            background: var(--primary-cta-hover);
            box-shadow: 0 18px 38px rgba(230, 57, 70, 0.38);
        }

        .about-cta-note {
            color: rgba(245, 244, 240, 0.68);
            font-size: 0.95rem;
            font-weight: 700;
        }

        .about-visual {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            min-width: 0;
            padding: 22px 0 0;
        }

        .about-media-card {
            position: relative;
            grid-column: 1 / -1;
            overflow: hidden;
            border: 1px solid rgba(245, 244, 240, 0.15);
            border-radius: 8px;
            background: rgba(245, 244, 240, 0.055);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
        }

        .about-media-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            pointer-events: none;
            z-index: 3;
        }

        .about-media-topline,
        .about-media-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 16px;
            color: rgba(245, 244, 240, 0.7);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: uppercase;
        }

        .about-media-footer {
            border-top: 1px solid rgba(245, 244, 240, 0.1);
            background: rgba(11, 11, 13, 0.72);
        }

        .about-media-footer strong {
            color: var(--primary-on-dark);
            font-size: 0.9rem;
            letter-spacing: 0;
        }

        /* Carousel */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #080809;
        }

        .about-carousel {
            aspect-ratio: 4 / 5;
        }

        .carousel-slide {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide img {
            width: 100%;
            min-width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            flex-shrink: 0;
        }

        .carousel-slide img:nth-child(2),
        .carousel-slide img:nth-child(3) {
            object-position: center top;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(245, 244, 240, 0.22);
            border-radius: 8px;
            background: rgba(11, 11, 13, 0.58);
            color: white;
            cursor: pointer;
            transform: translateY(-50%);
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .carousel-btn:hover {
            background: rgba(230, 57, 70, 0.82);
            border-color: rgba(230, 57, 70, 0.9);
        }

        .carousel-btn .hl-icon {
            width: 22px;
            height: 22px;
        }

        .carousel-prev {
            left: 14px;
        }

        .carousel-next {
            right: 14px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            z-index: 10;
            display: flex;
            gap: 8px;
            transform: translateX(-50%);
        }

        .indicator {
            width: 26px;
            height: 6px;
            padding: 0;
            border: 0;
            border-radius: 8px;
            background: rgba(245, 244, 240, 0.42);
            cursor: pointer;
            transition: width 0.2s ease, background 0.2s ease;
        }

        .indicator.active {
            width: 42px;
            background: var(--primary-on-dark);
        }

        .about-floating-proof {
            position: relative;
            z-index: 1;
            display: grid;
            align-content: start;
            gap: 6px;
            width: 100%;
            min-width: 0;
            min-height: 124px;
            padding: 16px;
            border: 1px solid rgba(245, 244, 240, 0.15);
            border-radius: 8px;
            background: rgba(11, 11, 13, 0.88);
            color: rgba(245, 244, 240, 0.78);
            box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
        }

        .about-floating-proof--primary,
        .about-floating-proof--secondary {
            inset: auto;
        }

        .about-proof-number {
            color: var(--text-light);
            font-family: var(--font-display);
            font-size: 2.2rem;
            letter-spacing: 0;
            line-height: 0.98;
            text-transform: uppercase;
        }

        .about-floating-proof span:last-child {
            font-size: 0.86rem;
            line-height: 1.45;
        }

        .about-proof-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 64px;
        }

        .about-proof-card {
            min-height: 100%;
            padding: 24px;
            border: 1px solid rgba(245, 244, 240, 0.12);
            border-radius: 8px;
            background: rgba(245, 244, 240, 0.055);
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .about-proof-card:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 57, 70, 0.38);
            background: rgba(245, 244, 240, 0.075);
        }

        .about-proof-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin-bottom: 18px;
            border: 1px solid rgba(230, 57, 70, 0.35);
            border-radius: 8px;
            color: var(--primary-on-dark);
            background: rgba(230, 57, 70, 0.08);
        }

        .about-proof-card h3 {
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .about-proof-card p {
            color: rgba(245, 244, 240, 0.72);
            font-size: 0.95rem;
            line-height: 1.62;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1px;
            margin-top: 20px;
            overflow: hidden;
            border: 1px solid rgba(245, 244, 240, 0.12);
            border-radius: 8px;
            background: rgba(245, 244, 240, 0.12);
        }

        .stat {
            min-width: 0;
            padding: 24px 18px;
            background: rgba(11, 11, 13, 0.78);
            text-align: left;
        }

        .stat-number {
            display: block;
            color: var(--primary-on-dark);
            font-family: var(--font-display);
            font-size: 2.6rem;
            letter-spacing: 0;
            line-height: 0.98;
            text-transform: uppercase;
        }

        .stat-label {
            display: block;
            margin-top: 10px;
            color: rgba(245, 244, 240, 0.68);
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: none;
            border-radius: 8px;
            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;
            width: 1rem;
            height: 1rem;
        }
        
        .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: none;
            padding: 40px;
            border-radius: 8px;
            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: 8px;
            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;
            color: #e8e8e8;
            opacity: 1;
            margin-bottom: 12px;
        }
        
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .pricing-card ul li {
            color: #f0f0f0;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .pricing-card ul li .hl-icon {
            color: var(--success);
            margin-top: 4px;
        }

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

        .engagement-selector .selector-label {
            font-size: 0.9rem;
            color: #e8e8e8;
        }

        .engagement-dropdown {
            width: 100%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            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: #e8e8e8;
            line-height: 1.4;
        }
        
        /* CTA Section */
        .final-cta {
            background: url('https://d1yei2z3i6k35z.cloudfront.net/589139/692ef5698dfaa_Sectioncontact.webp');
            background-color: rgba(11, 11, 13, 0.88);
            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: 8px;
            backdrop-filter: none;
            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: rgba(230, 57, 70, 0.1);
        }

        .bilan-lead-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 8px;
            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 .hl-icon {
            color: var(--success);
            width: 1rem;
            height: 1rem;
        }

        .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: 8px;
            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: 8px;
            overflow: hidden;
            backdrop-filter: none;
            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-context {
            margin: 6px 0 0;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .blog-booking-recovery {
            margin-top: 16px;
            padding: 16px 18px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
        }

        .blog-booking-recovery[hidden] {
            display: none !important;
        }

        .blog-booking-recovery__title {
            margin: 0 0 6px;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }

        .blog-booking-recovery__body {
            margin: 0 0 12px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.5;
        }

        .blog-booking-recovery__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            font-weight: 700;
            text-decoration: none;
        }

        .blog-booking-recovery__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .blog-booking-recovery__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
        }

        .blog-booking-recovery__button--ghost {
            background: transparent;
        }

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

        .contact-panel-close {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            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 .hl-icon {
            width: 0.95rem;
            height: 0.95rem;
        }

        .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-on-light);
            padding: 20px 50px;
            border: none;
            border-radius: 8px;
            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: 8px;
            display: inline-block;
        }

        .guarantee p {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: none;
            padding: 40px;
            border-radius: 8px;
        }

        .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: 8px;
            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(230, 57, 70, 0.2);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-submit {
            background: var(--primary-cta);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
        }
        
        .form-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            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 var(--primary-on-dark);
            color: var(--primary-on-dark);
        }

        .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: var(--primary-cta);
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 8px;
            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(230, 57, 70, 0.4);
            margin-top: 30px;
        }
        
        .booking-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 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: none;
            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;
            margin: 0;
        }
        
        .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: 8px;
            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(230, 57, 70, 0.2);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-button {
            background: var(--primary-cta);
            color: white;
            border: none;
            border-radius: 8px;
            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(230, 57, 70, 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-on-dark);
            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 var(--primary-on-dark);
            color: var(--primary-on-dark);
        }

        .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: none;
            padding: 20px;
            border-radius: 8px;
            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: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: var(--primary-cta);
            color: white;
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--glass-border);
        }
        
        /* Animations */
        .fade-in {
            opacity: 1;
            transform: translateY(16px);
            transition: transform 0.35s ease-out;
        }
        
        .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(230, 57, 70, 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(230, 57, 70, 0.5);
        }
        
        .pricing-card.premium {
            background: rgba(230, 57, 70, 0.1);
            border: 2px solid var(--primary);
        }
        
        .pricing-card.premium:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
        }
        
        .popular-badge, .premium-badge {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-cta);
            color: white;
            padding: 10px 25px;
            border-radius: 8px;
            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: var(--primary-cta);
        }
        
        .pricing-card.premium .price {
            color: var(--primary-on-dark);
            font-weight: 800;
        }
        
        .pricing-card.premium ul li strong {
            color: var(--primary-on-dark);
            font-weight: 700;
        }
        
        .pricing-cards .pricing-card {
            margin-top: 50px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-spotlight {
                grid-template-columns: 1fr;
                gap: 42px;
            }

            .about-copy {
                max-width: 760px;
            }

            .about-heading {
                max-width: 14ch;
                font-size: 4.2rem;
            }

            .about-visual {
                max-width: 560px;
                margin: 0 auto;
                width: 100%;
            }

            .about-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 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;
            }

            .senja-fallback__grid {
                grid-template-columns: 1fr;
            }
            
            .method-grid {
                grid-template-columns: 1fr;
            }

            .about-heading {
                font-size: 3.4rem;
            }

            .about-visual {
                grid-template-columns: 1fr;
                gap: 10px;
                padding-top: 14px;
            }

            .about-media-topline,
            .about-media-footer {
                align-items: flex-start;
                flex-direction: column;
                gap: 6px;
            }

            .about-floating-proof {
                position: relative;
                inset: auto;
                width: 100%;
                min-height: auto;
                margin-top: 0;
            }

            .about-floating-proof--primary,
            .about-floating-proof--secondary {
                right: auto;
                bottom: auto;
                left: auto;
            }
            
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .social-proof {
                flex-direction: column;
                gap: 10px;
            }

            .social-proof > div:nth-child(2),
            .social-proof > div:nth-child(4) {
                display: none;
            }
            
            .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 {
                min-height: auto;
                padding: 88px 0 36px;
            }
            
            .hero-badge {
                font-size: 12px;
                padding: 6px 15px;
                margin-bottom: 20px;
                display: inline-flex;
                max-width: 90%;
                justify-content: center;
                white-space: normal;
                line-height: 1.35;
            }
            
            .hero-title {
                font-size: 2rem;
                max-width: 18ch;
                margin-bottom: 16px;
            }

            .hero-typewriter {
                font-size: 0.74em;
                gap: 0.08em 0.22em;
            }

            .hero-typewriter__slot {
                min-width: 15ch;
            }

            .hero-subtitle {
                font-size: 1.02rem;
                margin-bottom: 16px;
            }

            .cta-container {
                gap: 12px;
                margin-top: 4px;
            }

            .social-proof {
                margin-top: 20px;
                gap: 6px;
            }

            .urgency-text {
                max-width: 28ch;
                white-space: normal;
                justify-content: center;
                text-align: center;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .cta-primary, .cta-button, .booking-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }

            .about-proof-grid {
                grid-template-columns: 1fr;
                margin-top: 42px;
            }

            .about-proof-card,
            .stat {
                padding: 20px;
            }

            .about-heading {
                font-size: 2.7rem;
            }

            .about-subtitle {
                font-size: 1.08rem;
            }

            .about-proof-number {
                font-size: 1.85rem;
            }

            .stat-number {
                font-size: 2.25rem;
            }

            .about-cta {
                width: 100%;
                padding-left: 18px;
                padding-right: 18px;
            }

            .about-cta-note {
                width: 100%;
                text-align: center;
            }

            .about-carousel {
                aspect-ratio: 3 / 4;
            }
            
            .cookie-consent {
                left: 10px;
                right: 10px;
                bottom: calc(86px + env(safe-area-inset-bottom, 0px));
            }

            body:has([data-netlify-deploy-id]) .cookie-consent {
                bottom: calc(144px + env(safe-area-inset-bottom, 0px));
            }
            
            .carousel-btn {
                width: 44px;
                height: 44px;
            }
            
            .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;
        }

        @media (prefers-reduced-motion: reduce) {
            html:focus-within {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .fade-in {
                opacity: 1 !important;
                transform: none !important;
            }

            .pulse {
                animation: none !important;
            }

            .hero-typewriter__caret {
                animation: none !important;
            }
        }
        
        .cookie-btn.cookie-accept {
            background: var(--primary-cta);
            color: white;
            font-weight: 700;
            padding: 10px 25px;
            border: 1px solid rgba(230, 57, 70, 0.56);
            box-shadow: 0 10px 24px rgba(230, 57, 70, 0.24);
        }
        
        .cookie-btn.cookie-accept:hover {
            background: var(--primary-cta-hover);
            border-color: rgba(230, 57, 70, 0.78);
        }
