
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563EB;
    --dark-blue: #1E293B;
    --deep-blue: #0F172A;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --bg-dark: #0A0E1A;
    --bg-card: #141B2D;
    --text-light: #FFFFFF;
    --text-muted: #8B9DC3;
    --gradient-1: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-2: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
    --gradient-3: linear-gradient(90deg, #2563EB, #7C3AED, #2563EB);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0A0E1A 0%, #000000 100%);
    overflow: hidden;
}

/* Neural network grid */
.neural-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* AI particles */
.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -8s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }

    50% {
        transform: translate(-50px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(50px, 50px) rotate(270deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    backdrop-filter: blur(30px);
    background: rgba(10, 14, 26, 0.9);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 25px rgba(37, 99, 235, 0.4));
    transition: all 0.3s ease;
}

    .logo-img:hover {
        filter: drop-shadow(0 0 35px rgba(37, 99, 235, 0.7));
        transform: scale(1.05);
    }

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-light);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.cta-button {
    background: var(--gradient-1);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 40px rgba(37, 99, 235, 0.5);
    }

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 5% 120px;
    text-align: center;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }

    .hero h1 {
        font-size: 5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: var(--gradient-3);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease infinite, fadeInUp 0.8s ease-out 0.2s both;
        letter-spacing: -2px;
    }

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero .subtitle {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: 1px;
}

.hero .description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 15px 50px rgba(37, 99, 235, 0.6);
    }

.btn-secondary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
    padding: 1.4rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    .btn-secondary:hover {
        background: rgba(37, 99, 235, 0.2);
        border-color: var(--accent-blue);
        transform: translateY(-4px);
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    }

/* AI Voice Visualization */
.ai-voice-section {
    max-width: 900px;
    margin: -40px auto 100px;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(37, 99, 235, 0.3);
}

    .ai-voice-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-1);
    }

.voice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.voice-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.voice-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 120px;
    padding: 2rem;
    background: rgba(10, 14, 26, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    width: 100%;
    max-width: 600px;
    position: relative;
}

    .voice-visualizer::before {
        content: '🎤';
        position: absolute;
        left: 30px;
        font-size: 2.5rem;
        opacity: 0.5;
        animation: micPulse 2s ease-in-out infinite;
    }

@keyframes micPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.voice-bar {
    width: 6px;
    background: var(--gradient-1);
    border-radius: 3px;
    animation: voiceWave 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

    .voice-bar:nth-child(1) {
        height: 30px;
        animation-delay: 0s;
    }

    .voice-bar:nth-child(2) {
        height: 50px;
        animation-delay: 0.1s;
    }

    .voice-bar:nth-child(3) {
        height: 70px;
        animation-delay: 0.2s;
    }

    .voice-bar:nth-child(4) {
        height: 45px;
        animation-delay: 0.3s;
    }

    .voice-bar:nth-child(5) {
        height: 85px;
        animation-delay: 0.4s;
    }

    .voice-bar:nth-child(6) {
        height: 60px;
        animation-delay: 0.5s;
    }

    .voice-bar:nth-child(7) {
        height: 40px;
        animation-delay: 0.6s;
    }

    .voice-bar:nth-child(8) {
        height: 75px;
        animation-delay: 0.7s;
    }

    .voice-bar:nth-child(9) {
        height: 55px;
        animation-delay: 0.8s;
    }

    .voice-bar:nth-child(10) {
        height: 35px;
        animation-delay: 0.9s;
    }

    .voice-bar:nth-child(11) {
        height: 65px;
        animation-delay: 1s;
    }

    .voice-bar:nth-child(12) {
        height: 50px;
        animation-delay: 1.1s;
    }

    .voice-bar:nth-child(13) {
        height: 80px;
        animation-delay: 1.2s;
    }

    .voice-bar:nth-child(14) {
        height: 45px;
        animation-delay: 1.3s;
    }

    .voice-bar:nth-child(15) {
        height: 70px;
        animation-delay: 1.4s;
    }

@keyframes voiceWave {
    0%, 100% {
        transform: scaleY(0.3);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.voice-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-blue);
    max-width: 600px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

    .voice-text span {
        color: var(--accent-blue);
        font-weight: 600;
    }

.ai-response {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    max-width: 600px;
    margin-top: 1rem;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.ai-response-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    margin-left: 5px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

    .typing-dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out both;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-blue);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out both;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-blue);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px var(--accent-blue);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
        box-shadow: 0 0 25px var(--accent-blue);
    }
}

/* Problem Solution Section */
.problem-solution {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: var(--gradient-3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    letter-spacing: -1.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient-1);
        border-radius: 2px;
    }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .comparison-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .comparison-card:hover::before {
        transform: scaleX(1);
    }

    .comparison-card:hover {
        transform: translateY(-10px);
        border-color: rgba(37, 99, 235, 0.4);
        box-shadow: 0 25px 70px rgba(37, 99, 235, 0.25);
    }

    .comparison-card.problem {
        border-left: 3px solid rgba(239, 68, 68, 0.6);
    }

    .comparison-card.solution {
        border-left: 3px solid var(--accent-blue);
    }

    .comparison-card h3 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

.icon {
    font-size: 2rem;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

    .comparison-card li::before {
        content: '•';
        color: var(--primary-blue);
        font-size: 1.5rem;
        line-height: 1;
    }

.comparison-card.problem li::before {
    content: '✗';
    color: rgba(239, 68, 68, 0.7);
}

.comparison-card.solution li::before {
    content: '✓';
    color: var(--primary-blue);
}

/* Features Section */
.features {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover::after {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(37, 99, 235, 0.4);
        background: rgba(20, 27, 45, 0.8);
        box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
    }

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.5));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-example {
    background: rgba(10, 14, 26, 0.9);
    border-left: 3px solid var(--accent-blue);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #2DD4BF;
    margin-top: 1.5rem;
    box-shadow: inset 0 0 20px rgba(37, 99, 235, 0.1);
}

/* AI Difference Section */
.ai-difference {
    max-width: 1200px;
    margin: 120px auto;
    padding: 5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(37, 99, 235, 0.2);
}

    .ai-difference::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ai-difference > * {
    position: relative;
    z-index: 1;
}

.ai-difference h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--gradient-3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.ai-difference p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.ai-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.ai-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    background: rgba(10, 14, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.4s ease;
    min-width: 200px;
}

    .ai-feature-item:hover {
        transform: translateY(-10px);
        border-color: rgba(37, 99, 235, 0.5);
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
    }

    .ai-feature-item .icon {
        font-size: 3.5rem;
        filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.5));
    }

    .ai-feature-item p {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 600;
    }

/* Comparison Table */
.comparison-table {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.table-container {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(59, 130, 246, 0.1);
}

th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

td {
    padding: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

tbody tr {
    transition: background 0.3s ease;
}

    tbody tr:hover {
        background: rgba(59, 130, 246, 0.05);
    }

.check {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.cross {
    color: rgba(239, 68, 68, 0.7);
    font-size: 1.5rem;
}

/* How it Works */
.how-it-works {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

    .steps-container::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
        z-index: -1;
    }

.step {
    flex: 1;
    text-align: center;
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
}

    .step:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    }

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Trust Section */
.trust {
    max-width: 1200px;
    margin: 100px auto;
    padding: 5rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

    .trust h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

    .trust-item h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: var(--primary-blue);
    }

    .trust-item p {
        color: var(--text-muted);
    }

/* Target Audience */
.target {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 5%;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.target-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

    .target-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    }

.target-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.target-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 6rem 5%;
    background: var(--gradient-1);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4);
}

    .final-cta h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .final-cta p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.9);
    }

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

.btn-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background: white;
        color: var(--primary-blue);
        transform: translateY(-3px);
    }

/* Footer */
footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    color: var(--text-muted);
}

    footer p {
        margin-bottom: 0.5rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

        .steps-container::before {
            display: none;
        }

    .hero-ctas {
        flex-direction: column;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .ai-voice-section {
        padding: 2rem;
        margin: -20px 5% 60px;
    }

    .voice-visualizer {
        height: 80px;
    }

        .voice-visualizer::before {
            left: 15px;
            font-size: 1.8rem;
        }

    .voice-bar {
        width: 4px;
    }

    .voice-text {
        font-size: 0.9rem;
    }

    .ai-response {
        flex-direction: column;
        text-align: center;
    }
}



/* Demo Form Styles */
.demo-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /*margin-bottom: 1.5rem;*/
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--dark-blue);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.9rem 1.2rem;
        border: 2px solid rgba(37, 99, 235, 0.2);
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Outfit', sans-serif;
        transition: all 0.3s ease;
        background: white;
        color: var(--dark-blue);
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 60px;
    }

.form-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #64748b;
}

.form-note {
    background: rgba(37, 99, 235, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-blue);
}

    .form-note p {
        margin: 0;
        color: var(--dark-blue);
        font-size: 0.95rem;
    }

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .demo-form-container {
        padding: 2rem;
    }
}



.hidden {
    display: none
}

.alert {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500
}

.alert-success {
    background: #e6fffa;
    color: #065f46
}

.alert-error {
    background: #fee2e2;
    color: #7f1d1d
}


.ai-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(37,99,235,0.4);
    transition: all .3s ease;
}

    .ai-portal-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 30px 70px rgba(37,99,235,0.6);
    }

.ai-icon {
    font-size: 2rem;
    animation: pulse 1.8s infinite;
}

.ai-text small {
    display: block;
    opacity: .85;
    font-size: .85rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .7;
    }
}
