
        :root {
            --navy: #0A1628;
            --deep-blue: #1a2847;
            --accent-yellow: #FFB800;
            --accent-orange: #FF8C00;
            --light-blue: #4A90E2;
            --text-dark: #1a1a1a;
            --text-gray: #4a5568;
            --text-light-gray: #718096;
            --success-green: #00C853;
            --bg-white: #ffffff;
            --bg-light: #f7fafc;
            --bg-light-blue: #ebf8ff;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(74, 144, 226, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(74, 144, 226, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.4;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            max-width: 700px;
            animation: fadeInUp 1s ease-out;
        }

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

        h1 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--navy) 0%, var(--light-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sub-headline {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            color: var(--text-gray);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .value-statement {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
            color: var(--navy);
            box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
        }

        .btn-secondary {
            background: rgba(74, 144, 226, 0.1);
            color: var(--light-blue);
            border: 2px solid var(--light-blue);
        }

        .btn-secondary:hover {
            background: rgba(74, 144, 226, 0.2);
            transform: translateY(-2px);
        }

        .trust-bar {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            padding: 1.5rem 0;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-item::before {
            content: '✓';
            color: var(--success-green);
            font-weight: bold;
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-light {
            background: var(--bg-light);
        }

        .section-dark {
            background: var(--bg-white);
        }

        .section-accent {
            background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-light) 100%);
        }

        h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--navy);
        }

        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--text-gray);
            font-size: 1.125rem;
        }

        /* Problem Section */
        .pain-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pain-card {
            background: var(--bg-white);
            padding: 2rem;
            border-radius: 16px;
            border-left: 4px solid var(--accent-yellow);
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--accent-yellow);
            transition: all 0.3s ease;
            animation: fadeIn 0.6s ease-out backwards;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .pain-card:nth-child(1) { animation-delay: 0.1s; }
        .pain-card:nth-child(2) { animation-delay: 0.2s; }
        .pain-card:nth-child(3) { animation-delay: 0.3s; }
        .pain-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pain-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pain-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .pain-card p {
            color: var(--text-gray);
        }

        .transition-text {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--light-blue);
            margin: 4rem 0 2rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid var(--border-color);
            transition: all 0.4s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            background: var(--bg-light);
            border-color: var(--accent-yellow);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

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

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Demo Section */
        .demo-section {
            background: var(--bg-light-blue);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .demo-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
        }

        .demo-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .demo-player {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }

        .demo-transcript {
            max-height: 500px;
            overflow-y: auto;
            margin-bottom: 2rem;
        }

        .message {
            margin-bottom: 1.5rem;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            animation: slideIn 0.5s ease-out backwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .customer-message {
            background: #ebf8ff;
            border-left: 4px solid var(--light-blue);
            margin-left: 0;
            margin-right: 20%;
        }

        .ai-message {
            background: #fffbeb;
            border-left: 4px solid var(--accent-yellow);
            margin-right: 0;
            margin-left: 20%;
        }

        .message-label {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .customer-message .message-label {
            color: var(--light-blue);
        }

        .ai-message .message-label {
            color: var(--accent-orange);
        }

        .message p, .message div:not(.message-label) {
            color: var(--text-dark);
        }

        .demo-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .play-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: var(--accent-yellow);
            color: var(--navy);
            border: none;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
        }

        .play-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 184, 0, 0.5);
        }

        .play-button::before {
            content: '▶';
            font-size: 1rem;
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
        }

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

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

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

        /* Integration Section */
        .integration-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .integration-card {
            background: var(--bg-white);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .integration-card.featured {
            border-color: var(--accent-yellow);
            background: linear-gradient(135deg, #fffbeb 0%, var(--bg-white) 100%);
            box-shadow: 0 5px 20px rgba(255, 184, 0, 0.15);
        }

        .integration-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .integration-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--accent-yellow);
            color: var(--navy);
            font-weight: 700;
            border-radius: 20px;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .integration-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .integration-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-gray);
        }

        .integration-list li::before {
            content: '✓';
            color: var(--success-green);
            margin-right: 0.75rem;
            font-weight: bold;
        }

        /* Safety Net Section */
        .safety-net {
            background: linear-gradient(135deg, #ebf8ff 0%, #f0f9ff 100%);
            padding: 4rem;
            border-radius: 24px;
            margin: 3rem auto;
            max-width: 900px;
            border: 2px solid var(--light-blue);
        }

        .safety-net h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--navy);
        }

        .safety-net p {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .safety-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .safety-feature {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-white);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .safety-feature h4 {
            color: var(--navy);
        }

        /* Trial Section */
        .trial-section {
            background: linear-gradient(135deg, #fffbeb 0%, #fff7e6 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .trial-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
            top: 0;
            left: 0;
        }

        .trial-badge {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
            color: var(--navy);
            font-size: 1.5rem;
            font-weight: 800;
            border-radius: 50px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
        }

        .trial-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 3rem auto;
            text-align: left;
        }

        .trial-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: var(--text-dark);
        }

        .trial-feature::before {
            content: '✔';
            color: var(--success-green);
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Pricing Section */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 3rem auto;
        }

        .pricing-card {
            background: var(--bg-white);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-yellow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-yellow);
            margin: 1rem 0;
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-gray);
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--success-green);
            margin-right: 0.75rem;
            font-weight: bold;
        }

        /* Who It's For */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .audience-item {
            background: #ebf8ff;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .audience-item:hover {
            border-color: var(--light-blue);
            background: #dbeafe;
            transform: translateY(-5px);
        }

        .audience-item h3 {
            color: var(--navy);
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 50%, var(--navy) 100%);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
        }

        .final-cta h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .final-cta .sub-text {
            font-size: 1.5rem;
            color: #e5e7eb;
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            background: var(--bg-light);
            padding: 2rem;
            text-align: center;
            color: var(--text-gray);
            border-top: 1px solid var(--border-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 4rem 1.5rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

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

            .btn {
                width: 100%;
                text-align: center;
            }

            .trust-bar {
                flex-direction: column;
                gap: 1rem;
            }

            .demo-player {
                padding: 1.5rem;
            }

            .customer-message, .ai-message {
                margin-left: 0;
                margin-right: 0;
            }

            .message {
                font-size: 0.95rem;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--light-blue);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--navy);
        }

        /* Sticky CTA Button */
        .sticky-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .sticky-cta.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .sticky-cta-button {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
            color: var(--navy);
            border: none;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
        }

        .sticky-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 184, 0, 0.5);
        }

        .sticky-cta-button::before {
            content: '🚀';
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .sticky-cta {
                bottom: 1rem;
                right: 1rem;
                left: 1rem;
            }

            .sticky-cta-button {
                width: 100%;
                justify-content: center;
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
        }
        
        
        .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
       gap: 7.5rem;
}

.site-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-login {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
}

.nav-login:hover {
    opacity: 0.9;
}

    