        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Brand Colors */
            --primary-dark-blue: #1C3565;
            --primary-light-blue: #8FBDFD;
            --primary-yellow: #FAE600;
            /* Turbo 3 brand color */

            /* Complementary Colors */
            --black: #191919;
            --gray: #595959;
            --white: #FFFFFF;

            /* Secondary Colors */
            --secondary-pink: #FF57E7;
            --secondary-purple: #C544E8;
            --secondary-violet: #8916FF;
            --secondary-lime: #B0F20A;
            --secondary-green: #71990D;
            --secondary-coral: #FF4A65;
            --secondary-magenta: #AE3371;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #1C3565 0%, #8FBDFD 100%);
            --gradient-ai: linear-gradient(135deg, #8916FF 0%, #C544E8 100%);
            --gradient-success: linear-gradient(135deg, #71990D 0%, #B0F20A 100%);
            --gradient-accent: linear-gradient(135deg, #EEE40A 0%, #B0F20A 100%);
            --gradient-ocean: linear-gradient(135deg, #8FBDFD 0%, #1C3565 100%);
            --gradient-sunset: linear-gradient(135deg, #FF57E7 0%, #FF4A65 100%);

            /* Typography */
            --font-headline: 'Roboto', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.6;
            color: var(--black);
            overflow-x: hidden;
            background: var(--white);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-headline);
            font-weight: 700;
        }

        /* Navigation - More Professional */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 1px 0 rgba(28, 53, 101, 0.08);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 8px 0;
            box-shadow: 0 2px 12px rgba(28, 53, 101, 0.08);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo {
            font-family: var(--font-headline);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark-blue);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .tagline {
            font-size: 11px;
            color: var(--gray);
            margin-top: 2px;
            margin-left: 46px;
            font-weight: 500;
            font-style: italic;
        }

        .trademark {
            font-size: 10px;
            vertical-align: super;
            font-weight: 600;
        }

        .trademark-large {
            font-size: 14px;
            vertical-align: super;
            font-weight: 600;
        }

        /* Tighter, more professional nav links */
        .nav-links {
            display: flex;
            gap: 0;
            align-items: center;
            background: rgba(248, 250, 254, 0.6);
            padding: 4px;
            border-radius: 30px;
            border: 1px solid rgba(143, 189, 253, 0.15);
        }

        .nav-links a {
            color: var(--primary-dark-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.2s ease;
            padding: 8px 14px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .nav-links a:hover {
            background: rgba(143, 189, 253, 0.15);
        }

        .nav-cta {
            background: linear-gradient(135deg, #1C3565 0%, #8FBDFD 100%);
            color: var(--white) !important;
            padding: 8px 20px !important;
            font-weight: 600 !important;
            margin-left: 4px;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(28, 53, 101, 0.4);
            background: linear-gradient(135deg, #0D1B33 0%, #2C4A7C 100%) !important;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: var(--gradient-primary);
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .mobile-menu-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(28, 53, 101, 0.2);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                box-shadow: 0 10px 30px rgba(28, 53, 101, 0.1);
                padding: 20px;
                flex-direction: column;
                gap: 10px;
                border-top: 1px solid rgba(143, 189, 253, 0.2);
            }

            .nav-links.mobile-active {
                display: flex;
            }

            .nav-links a {
                padding: 12px 20px;
                text-align: center;
            }
        }

        /* Demo Mode Label */
        .demo-mode-label {
            font-size: 9px;
            color: var(--gray);
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
            font-weight: 500;
            text-align: right;
        }

        /* =============================================
           ELLIE AI CHAT WIDGET - B2B PUBLIC SITE
           ============================================= */

        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
        }

        .chat-bubble {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #eee40a, #f6ee34);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(238, 228, 10, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid white;
            position: relative;
            overflow: hidden;
        }

        .chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(238, 228, 10, 0.6);
        }

        .chat-bubble::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .chat-bubble:hover::before {
            left: 100%;
        }

        .chat-icon-wrapper {
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .chat-bubble.active .chat-icon-wrapper {
            transform: rotate(45deg);
        }

        .chat-icon {
            width: 32px;
            height: 32px;
            fill: #1c3665;
        }
    .footer-tagline {
            margin-bottom: 20px;
            font-size: 16px;
            opacity: 0.9;
        }

        .chat-dots {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -80%);
            display: flex;
            gap: 2px;
            z-index: 5;
            pointer-events: none;
        }

        .chat-dots span {
            width: 4px;
            height: 4px;
            background: #7DC8F7;
            border-radius: 50%;
            animation: dotBounce 1.4s ease-in-out infinite;
        }

        .chat-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .chat-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes dotBounce {

            0%,
            60%,
            100% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-3px);
            }
        }

        .cta-tooltip {
            position: absolute;
            bottom: 75px;
            right: 0;
            z-index: 1002;
            background: white;
            color: #1c3665;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
        }

        .cta-tooltip::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        .cta-tooltip.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .cta-tooltip .close-cta {
            background: none;
            border: none;
            color: #8fbdfd;
            cursor: pointer;
            margin-left: 8px;
            padding: 0;
            font-size: 16px;
        }

        .suggestion-bubble {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border-radius: 16px;
            padding: 16px;
            width: 280px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            display: none;
        }

        .suggestion-bubble.show {
            display: block;
        }

        .suggestion-bubble p {
            font-size: 14px;
            color: #1c3665;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .suggestion-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            font-size: 18px;
            color: #8fbdfd;
            cursor: pointer;
        }

        .suggestion-cta {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #1c3665, #8fbdfd);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .suggestion-cta:hover {
            transform: scale(1.02);
        }

        .chat-window {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 380px;
            height: 580px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
            z-index: 10000;
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .chat-window.active {
            display: flex;
        }

        .chat-header {
            background: linear-gradient(135deg, #1c3665, #8fbdfd);
            color: white;
            padding: 12px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .chat-header-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .language-selector {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.15);
            padding: 4px 8px;
            border-radius: 6px;
        }

        .language-selector svg {
            width: 14px;
            height: 14px;
            fill: white;
        }

        .language-selector select {
            background: transparent;
            border: none;
            color: white;
            font-size: 11px;
            cursor: pointer;
            outline: none;
        }

        .language-selector select option {
            color: #1c3665;
        }

        .mode-toggle {
            display: flex;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 2px;
        }

        .mode-toggle-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            border: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            font-size: 11px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .mode-toggle-btn.active {
            background: white;
            color: #1c3665;
        }

        .mode-toggle-btn svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-header-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .chat-header-info p {
            font-size: 12px;
            opacity: 0.9;
            margin: 2px 0 0 0;
        }

        .chat-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .message {
            display: flex;
            flex-direction: column;
            max-width: 85%;
        }

        .message.bot {
            align-self: flex-start;
        }

        .message.user {
            align-self: flex-end;
        }

        .message-bubble {
            padding: 12px 16px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.5;
        }

        .message.bot .message-bubble {
            background: white;
            color: #1c3665;
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .message.user .message-bubble {
            background: linear-gradient(135deg, #1c3665, #8fbdfd);
            color: white;
            border-bottom-right-radius: 4px;
        }

        .typing-indicator {
            display: none;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
            padding: 4px 0;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: #8fbdfd;
            border-radius: 50%;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingBounce {

            0%,
            60%,
            100% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-4px);
            }
        }

        .prompt-section {
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 12px 16px;
            transition: all 0.3s ease;
            max-height: 200px;
            overflow: hidden;
        }

        .prompt-section.collapsed {
            max-height: 0;
            padding: 0 16px;
            border-top: none;
        }

        .prompt-label {
            font-size: 11px;
            color: #8fbdfd;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .prompt-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .prompt-btn {
            padding: 6px 12px;
            background: #f0f7ff;
            border: 1px solid #8fbdfd;
            border-radius: 16px;
            font-size: 12px;
            color: #1c3665;
            cursor: pointer;
            transition: all 0.2s;
        }

        .prompt-btn:hover {
            background: #1c3665;
            color: white;
            border-color: #1c3665;
        }

        .prompt-toggle {
            display: none;
            width: 100%;
            padding: 8px;
            background: #f8fafc;
            border: none;
            border-top: 1px solid #e5e7eb;
            cursor: pointer;
            transition: background 0.2s;
        }

        .prompt-toggle.show {
            display: block;
        }

        .prompt-toggle:hover {
            background: #f0f7ff;
        }

        .prompt-toggle-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 12px;
            color: #8fbdfd;
            font-weight: 500;
        }

        .prompt-toggle-inner svg {
            width: 14px;
            height: 14px;
            fill: #8fbdfd;
        }

        .chat-input {
            padding: 12px 16px;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .text-input-container {
            display: flex;
            gap: 8px;
        }

        .text-input-container.hidden {
            display: none;
        }

        .text-input-container input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .text-input-container input:focus {
            border-color: #8fbdfd;
        }

        .send-btn {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #1c3665, #8fbdfd);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .send-btn:hover {
            transform: scale(1.05);
        }

        .send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .send-btn svg {
            fill: white;
        }

        .voice-input-container {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }

        .voice-input-container.active {
            display: flex;
        }

        .voice-input-btn {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #1c3665, #8fbdfd);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .voice-input-btn:hover {
            transform: scale(1.05);
        }

        .voice-input-btn.recording {
            background: linear-gradient(135deg, #ef4444, #f87171);
            animation: pulse-recording 1.5s ease-in-out infinite;
        }

        @keyframes pulse-recording {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }

            50% {
                box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
            }
        }

        .voice-input-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .voice-status {
            font-size: 13px;
            color: #1c3665;
            font-weight: 500;
        }

        .voice-status.error {
            color: #ef4444;
        }

        @media (max-width: 768px) {
            .chat-window {
                width: calc(100% - 40px);
                right: 20px;
                height: 70vh;
                max-height: 580px;
            }
        }

        /* Hero Section */
        .hero {
            padding: 100px 20px 60px;
            background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 50%, #EEF6FF 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(143, 189, 253, 0.1) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(-30px, 30px) rotate(120deg);
            }

            66% {
                transform: translate(30px, -30px) rotate(240deg);
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Industry Benchmarks Ticker with Live Counters */
        .benchmarks-container {
            background: linear-gradient(135deg, rgba(28, 53, 101, 0.03), rgba(143, 189, 253, 0.03));
            border: 1px solid rgba(143, 189, 253, 0.2);
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .benchmarks-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 60%;
        }

        .benchmarks-header {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .benchmarks-icon {
            width: 16px;
            height: 16px;
            background: var(--gradient-primary);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benchmarks-icon svg {
            width: 10px;
            height: 10px;
            fill: var(--white);
        }

        .rotating-benchmarks {
            min-height: 60px;
            position: relative;
            overflow: hidden;
            transition: opacity 0.3s ease;
        }

        .benchmark-item {
            position: absolute;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .benchmark-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        .benchmark-item.exiting {
            opacity: 0;
            transform: translateY(-20px);
        }

        .benchmark-industry {
            padding: 6px 12px;
            background: var(--primary-dark-blue);
            color: var(--white);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(28, 53, 101, 0.2);
            min-width: 100px;
            text-align: center;
        }

        .benchmark-text {
            font-size: 15px;
            color: var(--primary-dark-blue);
            line-height: 1.4;
        }

        .benchmark-metric {
            font-weight: 800;
            color: var(--secondary-green);
            font-size: 16px;
        }

        /* Navigation dots for benchmarks */
        .benchmark-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
        }

        .benchmark-dots {
            display: flex;
            gap: 6px;
        }

        .benchmark-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(28, 53, 101, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .benchmark-dot.active {
            background: var(--primary-dark-blue);
            transform: scale(1.2);
        }

        .benchmark-dot:hover {
            background: rgba(28, 53, 101, 0.5);
        }

        /* Live Counter Pills */
        .live-counters {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .counter-pill {
            background: linear-gradient(135deg, #fff 0%, rgba(143, 189, 253, 0.1) 100%);
            border: 1px solid rgba(143, 189, 253, 0.3);
            border-radius: 20px;
            padding: 8px 14px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--primary-dark-blue);
            box-shadow: 0 2px 8px rgba(28, 53, 101, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .counter-pill:nth-child(1) {
            background: linear-gradient(135deg, rgba(143, 189, 253, 0.15) 0%, rgba(28, 53, 101, 0.05) 100%);
        }

        .counter-pill:nth-child(2) {
            background: linear-gradient(135deg, rgba(137, 22, 255, 0.1) 0%, rgba(197, 68, 232, 0.05) 100%);
            border-color: rgba(137, 22, 255, 0.3);
        }

        .counter-pill:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(28, 53, 101, 0.12);
        }

        .counter-dot {
            width: 6px;
            height: 6px;
            background: var(--secondary-green);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            margin-top: 5px;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .counter-number {
            font-weight: 700;
            background: var(--gradient-success);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .counter-pill:nth-child(2) .counter-number {
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h1 {
            font-family: var(--font-headline);
            font-size: 56px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--primary-dark-blue);
            position: relative;
        }

        .ai-badge {
            display: inline-block;
            background: var(--gradient-ai);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 15px;
            position: relative;
            top: -10px;
            box-shadow: 0 5px 20px rgba(137, 22, 255, 0.3);
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--gray);
            margin-bottom: 40px;
            font-weight: 400;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(28, 53, 101, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-dark-blue);
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--primary-dark-blue);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-dark-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        .cta-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .cta-safety {
            font-size: 11px;
            color: var(--gray);
            opacity: 0.8;
        }

        .trust-badges {
            display: flex;
            gap: 30px;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
            margin-top: 20px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--secondary-green);
        }

        /* Demo Section */
        .demo-preview {
            margin-top: 60px;
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(28, 53, 101, 0.12);
            position: relative;
        }

        .demo-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: var(--primary-dark-blue);
            padding: 8px 24px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .demo-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            align-items: stretch;
        }

        .voicetag-player {
            background: var(--gradient-primary);
            border-radius: 15px;
            padding: 30px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .player-title {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .player-main {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .waveform-container {
            height: 60px;
            display: flex;
            align-items: center;
            gap: 3px;
            margin-bottom: 20px;
        }

        .wave-bar {
            width: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .wave-bar.active {
            background: var(--primary-yellow);
            animation: wave-pulse 1s ease-in-out infinite;
        }

        @keyframes wave-pulse {

            0%,
            100% {
                transform: scaleY(1);
            }

            50% {
                transform: scaleY(1.5);
            }
        }

        .player-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .play-btn {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark-blue);
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
            border: none;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .player-time {
            font-size: 14px;
            opacity: 0.9;
        }

        .demo-stats {
            display: grid;
            gap: 15px;
        }

        .stat-card {
            padding: 20px;
            background: #F8FAFE;
            border-radius: 10px;
            border-left: 4px solid var(--primary-dark-blue);
        }

        .stat-card.ai-powered {
            border-left-color: var(--secondary-violet);
            background: linear-gradient(135deg, rgba(137, 22, 255, 0.05), rgba(197, 68, 232, 0.05));
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ai-indicator {
            background: var(--gradient-ai);
            color: var(--white);
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 9px;
            font-weight: 600;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-dark-blue);
        }

        .stat-value.ai {
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-change {
            font-size: 12px;
            color: var(--secondary-green);
            margin-top: 5px;
        }

        /* Business Segments Section */
        .business-segments {
            padding: 80px 20px;
            background: var(--white);
        }

        .segments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .segment-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(28, 53, 101, 0.08);
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .segment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .segment-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light-blue);
            box-shadow: 0 20px 40px rgba(28, 53, 101, 0.12);
        }

        .segment-card:hover::before {
            transform: scaleX(1);
        }

        .segment-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(143, 189, 253, 0.1) 0%, rgba(28, 53, 101, 0.05) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .segment-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--primary-dark-blue);
        }

        .segment-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark-blue);
            margin-bottom: 12px;
        }

        .segment-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 60px;
        }

        .segment-cta {
            color: var(--primary-dark-blue);
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-content: flex-end;
        }

        .segment-cta svg {
            width: 16px;
            height: 16px;
            fill: var(--primary-dark-blue);
            transition: transform 0.3s ease;
        }

        .segment-card:hover .segment-cta svg {
            transform: translateX(5px);
        }

        /* Two-column layout for segments section */
        .segments-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Left navigation - scrollable (Laja-optimized) */
        .industry-nav {
            background: #F8FAFE;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #E5E7EB;
            position: sticky;
            top: 80px;
            max-height: calc(100vh - 140px);
            overflow-y: auto;
            align-self: start;
        }

        /* Custom scrollbar */
        .industry-nav::-webkit-scrollbar {
            width: 6px;
        }

        .industry-nav::-webkit-scrollbar-track {
            background: #F8FAFE;
            border-radius: 10px;
        }

        .industry-nav::-webkit-scrollbar-thumb {
            background: #8FBDFD;
            border-radius: 10px;
        }

        .industry-nav::-webkit-scrollbar-thumb:hover {
            background: #1C3565;
        }

        .industry-nav-header {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-dark-blue);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary-light-blue);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .industry-item {
            padding: 7px 10px;
            margin-bottom: 3px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.15s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
            text-decoration: none;
            line-height: 1.3;
        }

        .industry-item:hover {
            background: #EEF6FF;
            color: var(--primary-dark-blue);
            transform: translateX(3px);
        }

        .industry-item.featured {
            background: linear-gradient(135deg, rgba(28, 53, 101, 0.08), rgba(143, 189, 253, 0.08));
            font-weight: 600;
        }

        .industry-icon {
            font-size: 18px;
            min-width: 20px;
        }

        .category-header {
            font-size: 10px;
            font-weight: 700;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin: 14px 0 6px 0;
            padding-left: 10px;
            opacity: 0.7;
        }

        .category-header:first-of-type {
            margin-top: 0;
        }

        /* Mobile responsive */
        @media (max-width: 1024px) {
            .segments-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .industry-nav {
                position: relative;
                top: 0;
                max-height: 400px;
            }
        }

        /* AI Intelligence Section */
        .ai-intelligence {
            padding: 80px 20px;
            background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 50%, #FFF9E6 100%);
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-dark-blue);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
        }

        .ai-features {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        @media (max-width: 1024px) {
            .ai-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .ai-features {
                grid-template-columns: 1fr;
            }
        }

        .ai-feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(28, 53, 101, 0.08);
            border: 2px solid transparent;
            position: relative;
            transition: all 0.3s ease;
        }

        .ai-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(137, 22, 255, 0.15);
            border-color: var(--primary-light-blue);
        }

        .ai-feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-ai);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .ai-feature-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        .ai-feature-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-dark-blue);
        }

        .ai-feature-desc {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .ai-metrics {
            display: flex;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #E5E7EB;
        }

        .ai-metric {
            flex: 1;
            text-align: center;
        }

        .ai-metric-value {
            font-size: 20px;
            font-weight: 700;
            background: var(--gradient-ai);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ai-metric-label {
            font-size: 10px;
            color: var(--gray);
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* Industries Section */
        .industries {
            padding: 80px 20px;
            background: var(--white);
        }

        .industry-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .industry-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .industry-card:hover {
            border-color: var(--primary-light-blue);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(28, 53, 101, 0.1);
        }

        .industry-card:hover::before {
            transform: scaleX(1);
        }

        .industry-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .industry-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--white);
        }

        .industry-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-dark-blue);
        }

        .industry-stat {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-dark-blue);
            margin-bottom: 10px;
        }

        .industry-ai-stat {
            display: inline-block;
            background: var(--gradient-ai);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .industry-desc {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .industry-cta {
            font-size: 14px;
            color: var(--primary-dark-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s ease;
        }

        .industry-cta svg {
            width: 16px;
            height: 16px;
            fill: var(--primary-dark-blue);
        }

        .industry-card:hover .industry-cta {
            gap: 10px;
        }

        /* Activity Feed */
        .activity-feed {
            padding: 60px 20px;
            background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
        }

        .feed-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .feed-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .feed-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary-dark-blue);
        }

        .activity-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .activity-item {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(28, 53, 101, 0.08);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideInLeft 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .activity-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-primary);
        }

        .activity-item.ai-activity::before {
            background: var(--gradient-ai);
        }

        .activity-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .activity-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .activity-icon.ai {
            background: var(--gradient-ai);
        }

        .activity-icon.support {
            background: linear-gradient(135deg, #71990D 0%, #B0F20A 100%);
        }

        .activity-content {
            flex: 1;
        }

        .activity-text {
            font-size: 14px;
            color: var(--black);
            margin-bottom: 5px;
        }

        .activity-text strong {
            color: var(--primary-dark-blue);
            font-weight: 700;
        }

        .activity-text .ai-highlight {
            color: var(--secondary-violet);
            font-weight: 700;
        }

        .activity-time {
            font-size: 12px;
            color: var(--gray);
        }

        .activity-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--secondary-green);
        }

        /* ROI Calculator */
        .calculator {
            padding: 80px 20px;
            background: var(--gradient-primary);
            color: var(--white);
        }

        .calculator-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .calculator-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--white);
        }

        .calculator-form {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-size: 14px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .form-input {
            padding: 12px 20px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-yellow);
            background: rgba(255, 255, 255, 0.15);
        }

        #calc-industry option {
            color: #1c3665;
            background: white;
        }

        .calculator-results {
            margin-top: 40px;
            padding: 30px;
            background: var(--gradient-accent);
            border-radius: 15px;
            text-align: center;
            color: var(--primary-dark-blue);
        }

        .result-label {
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .result-value {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .result-cta {
            background: var(--primary-dark-blue);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .result-cta:hover {
            transform: translateY(-3px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(28, 53, 101, 0.08) 0%, rgba(143, 189, 253, 0.15) 100%);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-dark-blue);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .faq-badge svg {
            width: 16px;
            height: 16px;
        }

        .faq-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-dark-blue);
            margin-bottom: 12px;
        }

        .faq-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid #E8EDF5;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-light-blue);
            box-shadow: 0 4px 20px rgba(28, 53, 101, 0.08);
        }

        .faq-item.active {
            border-color: var(--primary-dark-blue);
            box-shadow: 0 8px 30px rgba(28, 53, 101, 0.12);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-family: var(--font-body);
            transition: background 0.2s ease;
        }

        .faq-question:hover {
            background: rgba(143, 189, 253, 0.05);
        }

        .faq-question-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-dark-blue);
            padding-right: 16px;
            line-height: 1.4;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, rgba(28, 53, 101, 0.08) 0%, rgba(143, 189, 253, 0.15) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--gradient-primary);
            transform: rotate(180deg);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            color: var(--primary-dark-blue);
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-icon svg {
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
        }

        .faq-answer-content {
            padding: 0 24px 24px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray);
        }

        .faq-answer-content strong {
            color: var(--primary-dark-blue);
            font-weight: 600;
        }

        .faq-source {
            display: inline-block;
            font-size: 12px;
            color: var(--primary-light-blue);
            font-weight: 500;
            margin-top: 12px;
            padding: 4px 10px;
            background: rgba(143, 189, 253, 0.1);
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 28px;
            }

            .faq-question {
                padding: 16px 20px;
            }

            .faq-question-text {
                font-size: 15px;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
                font-size: 14px;
            }
        }

        /* Footer */
        footer {
            background: var(--primary-dark-blue);
            color: var(--white);
            padding: 40px 20px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-yellow);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.8;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: modalSlide 0.3s ease;
        }

        @keyframes modalSlide {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            background: #F1F5F9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--secondary-coral);
            color: var(--white);
        }

        .modal-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary-dark-blue);
        }

        .modal-subtitle {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 30px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .demo-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .ai-badge {
                display: block;
                margin: 10px 0;
                position: static;
            }

            .benchmark-text {
                font-size: 12px;
            }

            .ellie-chat-window {
                width: calc(100% - 40px);
                right: 20px;
            }

            .benchmarks-container {
                flex-direction: column;
                gap: 20px;
            }

            .benchmarks-left {
                max-width: 100%;
            }

            .live-counters {
                flex-direction: row;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }

            .counter-pill {
                font-size: 11px;
                padding: 6px 10px;
            }
        }

        /* Additional styles for activity feed transitions */
        .activity-feed .activity-list {
            transition: opacity 0.3s ease;
        }

        .hero-proof {
            font-size: 12.5px;
            color: #000000;
            font-style: italic;
            font-weight: 400;
            line-height: 1.15;
            text-align: right;
            opacity: 0;
            letter-spacing: 0.15px;
            margin-top: -4px;
            /* slightly pulled up, not overlapping */
            margin-bottom: 18px;
            /* tiny gap before subhead */
            animation: fadeInProof 1.8s ease-in 0.6s forwards;
        }

        @keyframes fadeInProof {
            from {
                opacity: 0;
                transform: translateY(-2px);
            }

            to {
                opacity: 0.85;
                transform: translateY(0);
            }
        }

        /* Personal Use Cases Section - Subtle and Professional */
        .personal-use-cases {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f8fafe 0%, #fff 100%);
            border-top: 1px solid rgba(143, 189, 253, 0.15);
        }

        .personal-use-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .personal-badge {
            display: inline-block;
            background: rgba(143, 189, 253, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
        }

        .personal-badge span {
            font-size: 11px;
            color: #1C3565;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .personal-title {
            font-size: 28px;
            color: #1C3565;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .personal-subtitle {
            font-size: 15px;
            color: #595959;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .personal-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .personal-card {
            display: block;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 28px 24px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(28, 53, 101, 0.06);
            text-align: center;
        }

        .personal-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(28, 53, 101, 0.12);
        }

        .personal-card.career {
            border-color: #c4b5fd;
        }

        .personal-card.career:hover {
            border-color: #8b5cf6;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
        }

        .personal-card.greetings {
            border-color: #fbcfe8;
        }

        .personal-card.greetings:hover {
            border-color: #ec4899;
            box-shadow: 0 8px 20px rgba(236, 72, 153, 0.15);
        }

        .personal-card.events {
            border-top: 3px solid var(--secondary-purple);
        }

        .personal-card.events:hover {
            box-shadow: 0 12px 40px rgba(147, 51, 234, 0.15);
        }

        .personal-card.events .personal-card-badge {
            background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
        }

        .personal-card.events .personal-card-cta {
            background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
        }

        .personal-card-emoji {
            font-size: 36px;
            margin-bottom: 14px;
            display: block;
        }

        .personal-card-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 10px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .personal-card.career .personal-card-badge {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.05));
            color: #6d28d9;
        }

        .personal-card.greetings .personal-card-badge {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(190, 24, 93, 0.05));
            color: #be185d;
        }

        .personal-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1C3565;
            margin: 0 0 10px 0;
            line-height: 1.2;
        }

        .personal-card-desc {
            font-size: 13px;
            color: #595959;
            line-height: 1.5;
            margin: 0 0 16px 0;
        }

        .personal-card-cta {
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            display: block;
            margin-top: auto;
        }

        .personal-card.career .personal-card-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            color: white;
        }

        .personal-card.greetings .personal-card-cta {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
            color: white;
        }

        .personal-card-note {
            font-size: 10px;
            color: #595959;
            margin-top: 10px;
            font-style: italic;
        }

        @media (max-width: 1024px) {
            .personal-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .personal-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .personal-title {
                font-size: 24px;
            }
        }

        /* HERO VIDEO STYLES */
        .hero-video-container {
            background: #000000;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-video-container:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .hero-video-loop {
            width: 100%;
            height: auto;
            display: block;
        }

        .video-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-video-container:hover .video-play-overlay {
            opacity: 1;
        }

        .play-icon-circle {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .hero-video-container:hover .play-icon-circle {
            transform: scale(1.1);
        }

        .play-icon-circle svg {
            width: 28px;
            height: 28px;
            fill: #1C3565;
            margin-left: 4px;
        }

        .video-cta-text {
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .video-sound-toggle {
            position: absolute;
            bottom: 12px;
            left: 12px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.6);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 10;
        }

        .video-sound-toggle:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .video-sound-toggle svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .video-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .video-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .video-modal-content {
            width: 90%;
            max-width: 900px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .video-modal-overlay.active .video-modal-content {
            transform: scale(1);
        }

        /* Methodology Modal */
        .methodology-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .methodology-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .methodology-content {
            background: white;
            border-radius: 12px;
            padding: 28px 32px;
            max-width: 420px;
            margin: 20px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .methodology-title {
            font-size: 16px;
            font-weight: 700;
            color: #1C3565;
            margin-bottom: 16px;
        }

        .methodology-text {
            font-size: 14px;
            line-height: 1.7;
            color: #595959;
        }

        .methodology-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            padding: 4px 8px;
        }

        .methodology-close:hover {
            color: #333;
        }

        /* Research Modal - The Science of Voice Conversion */
        .research-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 20px;
        }

        .research-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .research-content {
            background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
            border-radius: 16px;
            max-width: 640px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 80px rgba(28, 53, 101, 0.25);
        }

        .research-header {
            background: linear-gradient(135deg, #1C3565 0%, #2A4A7F 100%);
            padding: 28px 32px 24px;
            border-radius: 16px 16px 0 0;
            position: relative;
        }

        .research-header-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .research-header-icon svg {
            width: 28px;
            height: 28px;
            color: #FFD054;
        }

        .research-title {
            font-size: 24px;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0 0 6px 0;
            letter-spacing: -0.5px;
        }

        .research-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-weight: 500;
        }

        .research-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .research-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .research-close svg {
            width: 20px;
            height: 20px;
            color: #FFFFFF;
        }

        .research-body {
            padding: 28px 32px 32px;
        }

        .research-section {
            margin-bottom: 28px;
        }

        .research-section:last-child {
            margin-bottom: 0;
        }

        .research-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .research-section-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #E8F0FE 0%, #D4E4FC 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .research-section-icon svg {
            width: 20px;
            height: 20px;
            color: #1C3565;
        }

        .research-section-title {
            font-size: 16px;
            font-weight: 700;
            color: #1C3565;
            margin: 0;
        }

        .research-section-text {
            font-size: 14px;
            line-height: 1.7;
            color: #4A5568;
            margin: 0;
        }

        .research-source {
            display: inline-block;
            font-size: 12px;
            color: #718096;
            margin-top: 8px;
            padding: 4px 10px;
            background: #F1F5F9;
            border-radius: 4px;
        }

        .research-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 16px;
        }

        .research-stat-card {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 16px;
            transition: all 0.2s ease;
        }

        .research-stat-card:hover {
            border-color: #CBD5E0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .research-stat-industry {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .research-stat-industry-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .research-stat-industry-icon svg {
            width: 16px;
            height: 16px;
        }

        .research-stat-industry-icon.real-estate {
            background: #DBEAFE;
            color: #2563EB;
        }

        .research-stat-industry-icon.healthcare {
            background: #D1FAE5;
            color: #059669;
        }

        .research-stat-industry-icon.retail {
            background: #FEF3C7;
            color: #D97706;
        }

        .research-stat-industry-icon.restaurant {
            background: #FCE7F3;
            color: #DB2777;
        }

        .research-stat-industry-name {
            font-size: 12px;
            font-weight: 700;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .research-stat-value {
            font-size: 20px;
            font-weight: 800;
            color: #1C3565;
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .research-stat-desc {
            font-size: 12px;
            color: #64748B;
            line-height: 1.4;
        }

        .research-stat-source {
            font-size: 10px;
            color: #94A3B8;
            margin-top: 8px;
            font-style: italic;
        }

        .research-conservative {
            background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
            border: 1px solid #BBF7D0;
            border-radius: 12px;
            padding: 20px;
            margin-top: 8px;
        }

        .research-conservative-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .research-conservative-icon {
            width: 32px;
            height: 32px;
            background: #22C55E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .research-conservative-icon svg {
            width: 18px;
            height: 18px;
            color: #FFFFFF;
        }

        .research-conservative-title {
            font-size: 15px;
            font-weight: 700;
            color: #166534;
            margin: 0;
        }

        .research-conservative-text {
            font-size: 13px;
            line-height: 1.6;
            color: #166534;
            margin: 0;
        }

        .research-trigger {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            padding: 5px 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
            transition: all 0.2s ease;
            position: absolute;
            right: 12px;
            bottom: 14px;
        }

        .research-trigger:hover {
            background: rgba(0, 0, 0, 0.3);
            color: #FFFFFF;
        }

        .research-trigger svg {
            width: 14px;
            height: 14px;
        }

        @media (max-width: 600px) {
            .research-content {
                max-height: 85vh;
            }

            .research-header {
                padding: 24px 20px 20px;
            }

            .research-title {
                font-size: 20px;
            }

            .research-body {
                padding: 24px 20px 28px;
            }

            .research-stats-grid {
                grid-template-columns: 1fr;
            }

            .research-stat-value {
                font-size: 18px;
            }

            .research-trigger {
                float: none;
                display: flex;
                justify-content: center;
                margin-top: 20px;
            }
        }

        .video-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            color: #FFFFFF;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: background 0.3s ease;
            border: none;
            font-family: inherit;
        }

        .video-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .video-modal-iframe-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            background: #000;
        }

        .video-modal-iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .hero-video-container {
                margin-bottom: 16px;
            }

            .play-icon-circle {
                width: 52px;
                height: 52px;
            }

            .play-icon-circle svg {
                width: 22px;
                height: 22px;
            }

            .video-cta-text {
                font-size: 12px;
            }

            .video-modal-close {
                top: -45px;
                font-size: 14px;
                padding: 8px 14px;
            }
        }