        .hero-center {
            width: 100%;
            text-align: center;
            margin: 0 auto 48px;
            padding-top: 40px;
        }

        .hero-center .pricing-title,
        .hero-center .pricing-subtitle {
            text-align: center !important;
            margin-left: auto;
            margin-right: auto;
        }

        .calendly-inline-widget {
            background: transparent !important;
        }


        ::-webkit-scrollbar {
            display: none;
        }

        :root {
            --bg: #0b0e14;
            --text: #e6ebff;
            --muted: #a9b1d6;
            --brand: #7c5cff;
            --accent: #30e3b6;
            --radius: 16px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            font-family: Inter, sans-serif;
            background: linear-gradient(180deg, #0b0e14 0%, #0c1020 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13, 16, 32, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav {
            max-width: 1240px;
            margin: auto;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 40px;
            /* Pas aan naar gewenste hoogte */
            width: auto;
            /* Behoudt aspect ratio */
            display: block;
        }

        /* Optioneel: verschillende groottes voor mobiel */
        @media (max-width: 768px) {
            .logo {
                height: 32px;
                /* Kleiner op mobiel */
            }
        }

        .logo-footer {
            height: 40px;
            width: auto;
            display: block;
            margin: 0 auto;
            /* 👈 Dit centreert de logo */
        }

        /* Optioneel: verschillende groottes voor mobiel */
        @media (max-width: 768px) {
            .logo-footer {
                height: 32px;
                margin: 0 auto;
                /* Ook in mobiel versie */
            }
        }

        nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        nav a {
            color: var(--muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #fff;
        }

        .button {
            padding: 12px 24px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--brand), #6b4de0);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s;
            border: none;
            cursor: pointer;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .section {
            padding: 80px 20px;
            max-width: 1240px;
            margin: auto;
        }

        .hero {
            text-align: center;
            padding: 120px 20px 80px;
        }

        .hero h1 {
            font-size: clamp(36px, 6vw, 64px);
            line-height: 1.1;
            margin: 16px 0;
        }

        .hero p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 18px;
        }

        .chip {
            background: rgba(48, 227, 182, 0.15);
            color: var(--accent);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 16px;
        }

        .glass {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 24px;
        }

        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .price-box {
            text-align: center;
            padding: 32px;
        }

        .price {
            font-size: 32px;
            font-weight: 800;
            margin: 12px 0;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 500px;
            margin: 24px auto;
        }

        input,
        select {
            padding: 16px;
            border-radius: 12px;
            border: none;
            font-size: 15px;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        input:focus,
        select:focus {
            outline: none;
            border: 1px solid var(--brand);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
        }

        input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        select option {
            background: #0b0e14;
            color: #fff;
        }

        #ai-hub {
            padding-top: 80px;
            padding-bottom: 80px;
            position: relative;
        }

        #ai-hub h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #ai-hub p.lead {
            text-align: center;
            color: var(--muted);
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.2s;
        }

        #ai-hub.animated h2 {
            opacity: 1;
            transform: translateY(0);
        }

        #ai-hub.animated p.lead {
            opacity: 1;
            transform: translateY(0);
        }

        #ai-hub .aihub-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            justify-items: center;
            column-gap: clamp(40px, 6vw, 120px);
            min-height: 520px;
            position: relative;
        }

        #ai-hub::before,
        #ai-hub::after {
            content: "";
            position: absolute;
            pointer-events: none;
        }

        #ai-hub::before {
            top: -160px;
            left: 0%;
            width: 800px;
            height: 800px;
            background: radial-gradient(closest-side, rgba(124, 92, 255, 0.28), transparent 70%);
            filter: blur(20px);
        }

        #ai-hub::after {
            bottom: -180px;
            right: -2%;
            width: 850px;
            height: 850px;
            background: radial-gradient(closest-side, rgba(48, 227, 182, 0.22), transparent 70%);
            filter: blur(20px);
        }

        #ai-hub .hub {
            width: clamp(100px, 14vw, 200px);
            height: clamp(100px, 14vw, 200px);
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand), var(--accent));
            box-shadow: 0 0 28px rgba(124, 92, 255, 0.35),
                0 0 72px rgba(48, 227, 182, 0.22),
                inset 0 0 0 1px rgba(255, 255, 255, 0.06),
                inset 0 10px 30px rgba(255, 255, 255, 0.08),
                inset 0 -14px 30px rgba(0, 0, 0, 0.55);
            opacity: 0;
            transform: scale(0.6);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #ai-hub .stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 100%;
        }

        #ai-hub .stack.left {
            align-items: flex-end;
        }

        #ai-hub .stack.right {
            align-items: flex-start;
        }

        #ai-hub .card {
            width: clamp(180px, 30vw, 260px);
            height: clamp(48px, 6vw, 54px);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(48, 227, 182, 0.22)),
                linear-gradient(180deg, #0e172e, #0b1428);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
        }

        #ai-hub .icon {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-weight: 800;
            font-size: 14px;
        }

        #ai-hub .txt {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        #ai-hub .name {
            font-size: clamp(13px, 2vw, 15px);
        }

        #ai-hub .stack.left .card {
            transform: translateX(-100vw);
        }

        #ai-hub .stack.right .card {
            transform: translateX(100vw);
        }

        #ai-hub.animated .hub {
            opacity: 1;
            transform: scale(1);
        }

        #ai-hub.animated .stack.left .card {
            opacity: 1;
            transform: translateX(0);
        }

        #ai-hub.animated .stack.right .card {
            opacity: 1;
            transform: translateX(0);
        }

        #ai-hub .stack.left .card:nth-child(1) {
            margin-right: 0;
            transition-delay: 0.1s;
        }

        #ai-hub .stack.left .card:nth-child(2) {
            margin-right: clamp(4px, 1.5vw, 18px);
            transition-delay: 0.2s;
        }

        #ai-hub .stack.left .card:nth-child(3) {
            margin-right: clamp(8px, 3vw, 36px);
            transition-delay: 0.3s;
        }

        #ai-hub .stack.left .card:nth-child(4) {
            margin-right: clamp(4px, 1.5vw, 18px);
            transition-delay: 0.4s;
        }

        #ai-hub .stack.left .card:nth-child(5) {
            margin-right: 0;
            transition-delay: 0.5s;
        }

        #ai-hub .stack.right .card:nth-child(1) {
            margin-left: 0;
            transition-delay: 0.1s;
        }

        #ai-hub .stack.right .card:nth-child(2) {
            margin-left: clamp(4px, 1.5vw, 18px);
            transition-delay: 0.2s;
        }

        #ai-hub .stack.right .card:nth-child(3) {
            margin-left: clamp(8px, 3vw, 36px);
            transition-delay: 0.3s;
        }

        #ai-hub .stack.right .card:nth-child(4) {
            margin-left: clamp(4px, 1.5vw, 18px);
            transition-delay: 0.4s;
        }

        #ai-hub .stack.right .card:nth-child(5) {
            margin-left: 0;
            transition-delay: 0.5s;
        }

        #ai-hub .orbit {
            display: none;
        }

        @media (max-width: 700px) {
            .stat-cards-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .stat-card-hero {
                order: -1;
            }

            .pricing {
                gap: 60px !important;
            }

            .price-box {
                margin-top: 0 !important;
            }

            .pricing-card-2 {
                transform: scale(1) !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        @media (min-width: 701px) and (max-width: 900px) {
            .stat-cards-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .stat-card-hero {
                order: -1;
            }

            .pricing {
                gap: 60px !important;
            }

            .price-box {
                margin-top: 0 !important;
            }

            .pricing-card-2 {
                transform: scale(1) !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        @media (max-width: 900px) {
            #ai-hub .aihub-grid {
                display: none !important;
            }

            #ai-hub .orbit {
                display: block;
                position: relative;
                width: min(480px, 90vw);
                height: min(480px, 90vw);
                margin: 0 auto;
            }

            #ai-hub .orbit .hub {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: clamp(100px, 25vw, 120px);
                height: clamp(100px, 25vw, 120px);
                opacity: 0;
                transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #ai-hub .orbit .card {
                position: absolute;
                width: clamp(80px, 20vw, 100px);
                height: clamp(80px, 20vw, 100px);
                border-radius: 12px;
                text-align: center;
                flex-direction: column;
                justify-content: center;
                display: flex;
                padding: clamp(4px, 2vw, 8px);
                background: linear-gradient(135deg, rgba(124, 108, 255, 0.45), rgba(55, 201, 255, 0.3)),
                    linear-gradient(180deg, #0e172e, #0b1428);
                font-size: clamp(11px, 3vw, 14px);
                opacity: 0;
                transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #ai-hub .orbit .card:nth-child(2) {
                top: 5%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition-delay: 0.1s;
            }

            #ai-hub .orbit .card:nth-child(3) {
                top: 20%;
                left: 85%;
                transform: translate(-50%, -50%);
                transition-delay: 0.2s;
            }

            #ai-hub .orbit .card:nth-child(4) {
                top: 80%;
                left: 85%;
                transform: translate(-50%, -50%);
                transition-delay: 0.3s;
            }

            #ai-hub .orbit .card:nth-child(5) {
                top: 95%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition-delay: 0.4s;
            }

            #ai-hub .orbit .card:nth-child(6) {
                top: 80%;
                left: 15%;
                transform: translate(-50%, -50%);
                transition-delay: 0.5s;
            }

            #ai-hub .orbit .card:nth-child(7) {
                top: 20%;
                left: 15%;
                transform: translate(-50%, -50%);
                transition-delay: 0.6s;
            }

            #ai-hub.animated .orbit .hub {
                opacity: 1;
            }

            #ai-hub.animated .orbit .card {
                opacity: 1;
            }

            nav {
                display: none;
            }

            .nav {
                justify-content: center;
            }

            .ai-features-grid {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 20px !important;
            }

            .feature-card-large {
                grid-column: 1 !important;
                grid-row: auto !important;
                min-height: auto !important;
                padding: 32px 24px !important;
            }

            .feature-card-small {
                grid-column: 1 !important;
                grid-row: auto !important;
                padding: 28px 24px !important;
            }

            .feature-card-wide {
                flex-direction: column !important;
                padding: 32px 24px !important;
                gap: 24px !important;
            }

            .feature-info-box {
                min-width: 100% !important;
                width: 100% !important;
            }
        }

        @media (max-width: 768px) {
            .ai-detection-section {
                padding: 60px 16px !important;
            }

            .audio-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            .audio-card {
                padding: 32px 24px !important;
            }
        }

        .audio-card {
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.13s ease,
                box-shadow 0.13s ease !important;
        }

        .audio-card-1 {
            transition-delay: 0.6s;
        }

        .audio-card-2 {
            transition-delay: 0.8s;
        }

        .ai-detection-section .audio-card.animated-in {
            opacity: 1;
            transform: translateX(0);
        }

        .audio-card-1.animated-in {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        .audio-card-2.animated-in {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        @media (max-width: 600px) {
            .section {
                padding: 60px 16px !important;
            }

            .ai-features-grid {
                gap: 16px !important;
            }

            .feature-card-large,
            .feature-card-small {
                padding: 24px 20px !important;
            }

            .feature-card-wide {
                padding: 24px 20px !important;
            }
        }

        @media (max-width: 400px) {
            #ai-hub .orbit {
                width: 95vw;
                height: 95vw;
            }

            #ai-hub .orbit .card {
                width: clamp(70px, 18vw, 85px);
                position: relative;
                width: min(480px, 90vw);
                height: min(480px, 90vw);
                margin: 0 auto;
            }

            #ai-hub .orbit .hub {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: clamp(100px, 25vw, 120px);
                height: clamp(100px, 25vw, 120px);
                opacity: 0;
                transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #ai-hub .orbit .card {
                position: absolute;
                width: clamp(80px, 20vw, 100px);
                height: clamp(80px, 20vw, 100px);
                border-radius: 12px;
                text-align: center;
                flex-direction: column;
                justify-content: center;
                display: flex;
                padding: clamp(4px, 2vw, 8px);
                background: linear-gradient(135deg, rgba(124, 108, 255, 0.45), rgba(55, 201, 255, 0.3)),
                    linear-gradient(180deg, #0e172e, #0b1428);
                font-size: clamp(11px, 3vw, 14px);
                opacity: 0;
                transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            }

            #ai-hub .orbit .card:nth-child(2) {
                top: 5%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition-delay: 0.1s;
            }

            #ai-hub .orbit .card:nth-child(3) {
                top: 20%;
                left: 85%;
                transform: translate(-50%, -50%);
                transition-delay: 0.2s;
            }

            #ai-hub .orbit .card:nth-child(4) {
                top: 80%;
                left: 85%;
                transform: translate(-50%, -50%);
                transition-delay: 0.3s;
            }

            #ai-hub .orbit .card:nth-child(5) {
                top: 95%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition-delay: 0.4s;
            }

            #ai-hub .orbit .card:nth-child(6) {
                top: 80%;
                left: 15%;
                transform: translate(-50%, -50%);
                transition-delay: 0.5s;
            }

            #ai-hub .orbit .card:nth-child(7) {
                top: 20%;
                left: 15%;
                transform: translate(-50%, -50%);
                transition-delay: 0.6s;
            }

            #ai-hub.animated .orbit .hub {
                opacity: 1;
            }

            #ai-hub.animated .orbit .card {
                opacity: 1;
            }

            nav {
                display: none;
            }

            .nav {
                justify-content: center;
            }

            .ai-features-grid {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto !important;
                gap: 20px !important;
            }

            .feature-card-large {
                grid-column: 1 !important;
                grid-row: auto !important;
                min-height: auto !important;
                padding: 32px 24px !important;
            }

            .feature-card-small {
                grid-column: 1 !important;
                grid-row: auto !important;
                padding: 28px 24px !important;
            }

            .feature-card-wide {
                flex-direction: column !important;
                padding: 32px 24px !important;
                gap: 24px !important;
            }

            .feature-info-box {
                min-width: 100% !important;
                width: 100% !important;
            }
        }

        @media (max-width: 768px) {
            .ai-detection-section {
                padding: 60px 16px !important;
            }

            .audio-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            .audio-card {
                padding: 32px 24px !important;
            }
        }

        .audio-card {
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.13s ease,
                box-shadow 0.13s ease !important;
        }

        .audio-card-1 {
            transition-delay: 0.6s;
        }

        .audio-card-2 {
            transition-delay: 0.8s;
        }

        .ai-detection-section .audio-card.animated-in {
            opacity: 1;
            transform: translateX(0);
        }

        .audio-card-1.animated-in {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        .audio-card-2.animated-in {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        @media (max-width: 600px) {
            .section {
                padding: 60px 16px !important;
            }

            .ai-features-grid {
                gap: 16px !important;
            }

            .feature-card-large,
            .feature-card-small {
                padding: 24px 20px !important;
            }

            .feature-card-wide {
                padding: 24px 20px !important;
            }
        }

        @media (max-width: 400px) {
            #ai-hub .orbit {
                width: 95vw;
                height: 95vw;
            }

            #ai-hub .orbit .card {
                width: clamp(70px, 18vw, 85px);
                height: clamp(70px, 18vw, 85px);
                font-size: clamp(10px, 2.5vw, 12px);
                padding: clamp(3px, 1.5vw, 6px);
            }
        }

        /* LokaleAI Calls Animation Styles */
        .la-calls-container {
            max-width: 780px;
            margin: 56px auto 40px;
            /* Removed box styles to make it flat */
            color: var(--text);
            font-family: Inter, sans-serif;
        }

        .la-header {
            text-align: left;
            margin-bottom: 18px;
        }

        .la-eyebrow {
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin: 0 0 6px;
        }

        .la-title {
            margin: 0 0 6px;
            font-size: 22px;
            line-height: 1.3;
            font-weight: 700;
        }

        .la-subtitle {
            margin: 0;
            font-size: 13px;
            color: var(--muted);
            max-width: 480px;
        }

        .la-calls-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 18px;
        }

        .la-call-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            transition:
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                color 0.4s ease;
            min-height: 44px;
        }

        .la-avatar {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .la-avatar-icon {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .la-phone-icon {
            width: 15px;
            height: 15px;
            fill: var(--text);
            transition: fill 0.4s ease;
        }

        .la-text {
            flex: 1;
            min-width: 0;
        }

        .la-line-main {
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            transition: color 0.4s ease;
        }

        .la-line-sub {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            transition: color 0.4s ease;
        }

        .la-status {
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            margin-left: auto;
            color: var(--muted);
            transition: color 0.4s ease;
        }

        /* RINGING: blauwe puls rond de circle */
        .la-call-row.ringing .la-avatar::after {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: 999px;
            border: 2px solid rgba(56, 189, 248, 0.9);
            animation: la-ring-pulse 1s ease-out infinite;
        }

        @keyframes la-ring-pulse {
            0% {
                transform: scale(0.9);
                opacity: 1;
            }

            100% {
                transform: scale(1.35);
                opacity: 0;
            }
        }

        /* ANSWERED = GROEN, HELE BANNER */
        .la-call-row.answered {
            background: rgba(6, 95, 70, 0.6);
            border-color: #16a34a;
            box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45);
        }

        .la-call-row.answered .la-avatar-icon {
            background: #16a34a;
            box-shadow: none;
        }

        .la-call-row.answered .la-phone-icon {
            fill: #ecfdf5;
        }

        .la-call-row.answered .la-line-main {
            color: #ecfdf5;
        }

        .la-call-row.answered .la-line-sub {
            color: #bbf7d0;
        }

        .la-call-row.answered .la-status {
            color: #bbf7d0;
        }

        /* MISSED = ROOD, HELE BANNER */
        .la-call-row.missed {
            background: rgba(127, 29, 29, 0.6);
            border-color: #ef4444;
            box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4);
        }

        .la-call-row.missed .la-avatar-icon {
            background: #b91c1c;
            box-shadow: none;
        }

        .la-call-row.missed .la-phone-icon {
            fill: #fee2e2;
        }

        .la-call-row.missed .la-line-main,
        .la-call-row.missed .la-line-sub {
            color: #fee2e2;
        }

        .la-call-row.missed .la-status {
            color: #fee2e2;
        }

        /* AI-HANDLED = PAARS */
        .la-call-row.ai-handled {
            background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.4), rgba(11, 14, 20, 0.9) 70%);
            border-color: var(--brand);
            box-shadow:
                0 0 0 1px rgba(124, 92, 255, 0.5),
                0 18px 40px rgba(0, 0, 0, 0.5);
        }

        .la-call-row.ai-handled .la-avatar-icon {
            background: var(--brand);
            box-shadow: none;
        }

        .la-call-row.ai-handled .la-phone-icon {
            fill: #fff;
        }

        .la-call-row.ai-handled .la-line-main {
            color: #fff;
        }

        .la-call-row.ai-handled .la-line-sub {
            color: rgba(255, 255, 255, 0.8);
        }

        .la-call-row.ai-handled .la-status {
            color: #fff;
        }

        @media (max-width: 700px) {
            .la-calls-container {
                margin: 32px 12px 28px;
                /* Removed padding and border-radius */
            }

            .la-title {
                font-size: 18px;
            }

            .la-subtitle {
                font-size: 12px;
            }

            .la-line-main {
                font-size: 13px;
            }

            .la-line-sub {
                font-size: 11px;
            }

            .la-status {
                font-size: 11px;
            }
        }

        /* --- Mobile Responsiveness Updates --- */

        /* 1. "Laat AI jou bellen" Section */
        .ai-call-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 24px 40px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 100px;
            border: 1px solid rgba(48, 227, 182, 0.2);
            /* max-width controlled by inline or parent, but setting here is safe */
            max-width: 900px;
            margin: 56px auto 0;
            backdrop-filter: blur(10px);
            box-shadow: inset 0 0 40px rgba(48, 227, 182, 0.12), inset 0 0 20px rgba(48, 227, 182, 0.08);
            position: relative;
            /* Transition for entry animation should be kept inline or here if we want overrides */
        }

        .ai-call-box-inner {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .ai-call-box-form {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 12px;
            margin: 0;
            flex: 1;
            max-width: 500px;
        }

        .ai-call-box-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 12px 24px;
            color: var(--text);
            outline: none;
            font-family: inherit;
        }

        .ai-call-box-button {
            border-radius: 100px;
            padding: 12px 32px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 2. "Plan een gratis demo" Button */
        .cta-demo-button {
            padding: 12px 28px;
            font-size: 15px;
        }

        /* 3. Badge Text desktop default */
        .ai-detection-stat-responsive {
            font-size: 20px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 12px;
        }

        @media (max-width: 768px) {

            /* 1. Stack Left/Right content */
            .ai-call-box {
                flex-direction: column;
                padding: 32px 24px;
                /* More vertical padding */
                border-radius: 24px;
                text-align: center;
                gap: 32px;
                height: auto;
                /* ensure it grows */
            }

            /* Icon + Text block */
            .ai-call-box-inner {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            /* Form block */
            .ai-call-box-form {
                width: 100%;
                flex-direction: column;
                gap: 16px;
                max-width: 100%;
            }

            .ai-call-box-input {
                width: 100%;
                box-sizing: border-box;
                text-align: center;
                /* cleaner on mobile */
            }

            .ai-call-box-button {
                width: 100%;
                justify-content: center;
            }

            /* 2. Button tweaks */
            .cta-demo-button {
                width: 100%;
                justify-content: center;
                display: flex;
                box-sizing: border-box;
            }

            /* 3. Badge Text smaller */
            .ai-detection-stat-responsive {
                font-size: 16px !important;
            }

            /* Also ensure the highlight wrapper respects the font size change if necessary */
            .ai-detection-stat-responsive .highlight-wrapper-detection {
                font-size: inherit;
            }
        }

        /* New Primary CTA Style - matches Thank You page button */
        .btn-glow {
            background: linear-gradient(135deg, var(--brand), #6b4de0);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(124, 92, 255, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            color: #fff;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: skewX(-20deg) translateX(-150%);
            transition: transform 0.6s;
            z-index: -1;
            pointer-events: none;
        }

        /* Ensure secondary buttons override if needed, but we rely on NOT adding .btn-glow to them */

        .btn-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 40px rgba(124, 92, 255, 0.5),
                0 0 0 2px rgba(255, 255, 255, 0.4) inset;
            background: linear-gradient(135deg, #8f75ff, #7c5cff);
        }

        .btn-glow:hover::before {
            transform: skewX(-20deg) translateX(150%);
        }