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

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

        html {
            scroll-behavior: smooth;
        }

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

        /* ========== STICKY CTA ========== */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sticky-cta.show {
            opacity: 1;
            transform: translateY(0);
        }

        .sticky-cta-btn {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .sticky-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(30, 64, 175, 0.5);
        }

        .sticky-cta-btn::before {
            content: "📅";
            font-size: 1.2rem;
        }

        /* ========== NAVIGATION ========== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 64, 175, 0.08);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 50%, var(--emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 1002;
            text-decoration: none;
            position: relative;
        }

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

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

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

        /* ========== DROPDOWN MENU ========== */
        .nav-item {
            position: relative;
        }

        .dropdown {
            position: relative;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.15);
            border-radius: 16px;
            padding: 1rem 0;
            margin-top: 0.5rem;
            z-index: 1001;
            border: 1px solid rgba(30, 64, 175, 0.1);
        }

        /* Zone invisible pour maintenir le menu ouvert */
        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 20px;
            z-index: 1000;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid white;
        }

        .dropdown:hover .dropdown-content,
        .dropdown-content:hover {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            color: var(--dark-navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .dropdown-content a:hover {
            background: var(--light-gray);
            color: var(--royal-blue);
        }

        .dropdown-content a .icon {
            font-size: 1.3rem;
            min-width: 24px;
            text-align: center;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--dark-navy);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
        }

        .dropdown-toggle:hover {
            color: var(--royal-blue);
        }

        .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

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

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

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

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

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            margin-top: 85px;
            position: relative;
            overflow: hidden;
            min-height: 95vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        }

        .hero-background {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .hero-background video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            min-width: 100%;
            min-height: 100%;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: var(--royal-blue);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--cyan);
            bottom: -150px;
            left: -150px;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: var(--emerald);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, 50px) scale(1.1); }
            50% { transform: translate(-30px, 80px) scale(0.9); }
            75% { transform: translate(30px, -50px) scale(1.05); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1100px;
            padding: 8rem 2rem 0;
        }

        /* ANIMATED LOGO */
        .animated-logo-container {
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .animated-logo {
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 800;
            letter-spacing: 0.05em;
            color: white;
            display: inline-block;
            position: relative;
        }

        .animated-logo .letter {
            display: inline-block;
            opacity: 0;
            animation: letterGlow 3.8s ease-out forwards;
            text-shadow: 
                0 0 20px rgba(6, 182, 212, 0.8),
                0 0 40px rgba(30, 64, 175, 0.6),
                0 0 60px rgba(16, 185, 129, 0.4);
        }

        .animated-logo .letter:nth-child(1) { animation-delay: 1.2s; }
        .animated-logo .letter:nth-child(2) { animation-delay: 2.3s; }
        .animated-logo .letter:nth-child(3) { animation-delay: 3.4s; }
        .animated-logo .letter:nth-child(4) { animation-delay: 4.5s; }
        .animated-logo .letter:nth-child(5) { animation-delay: 5.6s; }

        .animated-logo .registered {
            font-size: 0.4em;
            vertical-align: super;
            opacity: 0;
            animation: fadeIn 6.5s ease-out 6.8s forwards;
        }

        @keyframes letterGlow {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.8);
                filter: blur(10px);
            }
            50% {
                opacity: 1;
                filter: blur(0px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0px);
            }
        }

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

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            letter-spacing: 0.15em;
            color: var(--cyan);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.5s forwards;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.7s forwards;
        }

        .hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.9s forwards;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease-out 2.1s forwards;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(30, 64, 175, 0.5);
        }

        .btn-secondary-hero {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1.25rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .btn-secondary-hero:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeInUp 1s ease-out 2.5s forwards, bounce 2s infinite 3.5s;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            stroke: rgba(255, 255, 255, 0.6);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ========== TRUST BADGES ========== */
        .trust-section {
            background: white;
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(30, 64, 175, 0.08);
        }

        .trust-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
        }

        .trust-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1rem;
            color: var(--text-gray);
        }

        .google-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 2px solid #e8eaed;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .google-star {
            color: #fbbc04;
            font-size: 1.5rem;
        }

        .stars {
            color: #fbbc04;
            font-size: 1.3rem;
            letter-spacing: 0.1rem;
        }

        /* Press logos section */
        .press-section {
            padding-top: 1rem;
        }

        .press-title {
            font-size: 1rem;
            color: #1a73e8;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        .press-logos {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .press-logo {
            height: 40px;
            object-fit: contain;
            opacity: 0.7;
            transition: opacity 0.3s;
            filter: grayscale(0.3);
        }

        .press-logo:hover {
            opacity: 1;
            filter: grayscale(0);
        }

        /* Logo styles matching the screenshot */
        .logo-tf1 { 
            background: #0051a3;
            color: white;
            padding: 8px 16px;
            font-weight: 800;
            font-size: 1.8rem;
            border-radius: 4px;
            font-family: Arial, sans-serif;
        }

        .logo-c8 {
            background: black;
            color: white;
            padding: 8px 16px;
            font-weight: 800;
            font-size: 1.6rem;
            border-radius: 4px;
        }

        .logo-cstar {
            color: black;
            font-weight: 800;
            font-size: 1.6rem;
        }

        .logo-cstar .yellow {
            background: #ffd700;
            padding: 2px 8px;
        }

        .logo-cnews {
            color: black;
            font-weight: 800;
            font-size: 1.6rem;
        }

        .logo-cnews .red {
            color: #e74c3c;
        }

        .logo-bfmtv {
            background: #0066cc;
            color: white;
            padding: 8px 16px;
            font-weight: 800;
            font-size: 1.4rem;
            border-radius: 4px;
        }

        .logo-tmc {
            background: black;
            color: white;
            padding: 8px 20px;
            font-weight: 800;
            font-size: 1.6rem;
            border-radius: 4px;
        }

        .logo-rmc {
            font-size: 1.6rem;
            font-weight: 800;
        }

        .logo-rmc .blue {
            color: #0099cc;
        }

        .logo-rmc .orange {
            color: #ff6600;
        }

        .logo-nrj {
            color: #e74c3c;
            font-weight: 800;
            font-size: 2rem;
            font-style: italic;
        }

        .logo-provence {
            color: #0066cc;
            font-family: Georgia, serif;
            font-size: 1.3rem;
            font-style: italic;
        }

        /* ========== POURQUOI VIRAA ========== */
        .why-section {
            padding: 6rem 2rem;
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .why-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .why-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(30, 64, 175, 0.08);
        }

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

        .why-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
        }

        .why-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 1rem;
        }

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

        /* ========== 6 AXES ========== */
        .axes-section {
            padding: 6rem 2rem;
            background: white;
        }

        .axes-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .axe-card {
            background: var(--light-gray);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(30, 64, 175, 0.08);
        }

        .axe-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.12);
            border-color: rgba(30, 64, 175, 0.15);
            background: white;
        }

        .axe-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
        }

        .axe-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 1rem;
        }

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

        /* ========== HOW IT WORKS ========== */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--light-gray);
        }

        .steps-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25);
        }

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

        .step p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: 6rem 2rem;
            background: white;
        }

        /* ========== DEPLOYMENT PHASE SECTION ========== */
        .deployment-phase {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
            text-align: center;
        }

        .deployment-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid rgba(30, 64, 175, 0.1);
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
        }

        .deployment-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .deployment-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .deployment-content p {
            font-size: 1.15rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 0;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--light-gray);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            border: 1px solid rgba(30, 64, 175, 0.08);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--cyan);
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

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

        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .testimonial-stars {
            color: #fbbc04;
            font-size: 1rem;
            letter-spacing: 0.1rem;
            margin-bottom: 1rem;
        }

        /* ========== PRICING ========== */
        .pricing-teaser {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--royal-blue) 100%);
            color: white;
            text-align: center;
        }

        .pricing-teaser h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .pricing-teaser p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-cards {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            background: rgba(6, 182, 212, 0.15);
            border-color: var(--cyan);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--cyan);
            color: var(--dark-navy);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .price span {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.8;
        }

        .pricing-card ul {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-card li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            opacity: 0.9;
        }

        .pricing-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--emerald);
            font-weight: 700;
        }

        .pricing-disclaimer {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 1rem;
            font-style: italic;
        }

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

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            max-width: 350px;
        }

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

        .footer-tagline {
            font-size: 1.1rem;
            color: var(--cyan);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--royal-blue);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--cyan);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-legal p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        /* ========== COOKIE BANNER ========== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            color: white;
            padding: 1.5rem 2rem;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .cookie-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--cyan);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 0.9rem;
        }

        .cookie-accept {
            background: linear-gradient(135deg, var(--royal-blue) 0%, var(--cyan) 100%);
            color: white;
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(30, 64, 175, 0.4);
        }

        .cookie-decline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 85px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateX(100%);
                transition: transform 0.3s;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .hamburger {
                display: flex;
            }

            .hero {
                min-height: 85vh;
                padding: 3rem 1rem;
            }

            .animated-logo {
                font-size: 3rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary-hero {
                width: 100%;
                text-align: center;
            }

            .why-grid, .axes-grid {
                grid-template-columns: 1fr;
            }

            .steps-container, .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }

            .sticky-cta {
                bottom: 10px;
                right: 10px;
            }

            .sticky-cta-btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }

            .press-logos {
                gap: 1.5rem;
            }
        }

/* === ADDITIONAL UTILITY CLASSES FOR INDEX PAGE === */
.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.axe-card-link {
    text-decoration: none;
    color: inherit;
}

.contact-section {
    padding: 6rem 2rem;
    background: var(--light-gray);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

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

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-select-full {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.form-group-lg {
    margin-bottom: 2rem;
}

.btn-full-width {
    width: 100%;
    cursor: pointer;
}

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