:root {
    /* 🏆 Award-Winning "From Storm to Dawn" Color Palette 🏆 */

    /* Primary Storm Palette - Sophisticated depth & trust */
    --storm-deep: #0F172A;
    /* Midnight slate - ultimate depth */
    --storm-primary: #1E293B;
    /* Charcoal foundation - stability */
    --storm-secondary: #334155;
    /* Storm clouds - transition */
    --storm-light: #475569;
    /* Gentle storm - approachable */

    /* Transition Bridge - Premium technology feel */
    --bridge-primary: #0EA5E9;
    /* Sophisticated cyan - innovation */
    --bridge-secondary: #0284C7;
    /* Deep sky - reliability */
    --bridge-accent: #7C3AED;
    /* Premium purple - creativity */
    --bridge-glow: #8B5CF6;
    /* Violet energy - transformation */

    /* Dawn Palette - Confidence & achievement */
    --dawn-gold: #F59E0B;
    /* Confident gold - success */
    --dawn-amber: #D97706;
    /* Rich amber - warmth */
    --dawn-coral: #F97316;
    /* Energetic coral - enthusiasm */
    --dawn-success: #10B981;
    /* Achievement green - growth */
    --dawn-energy: #EF4444;
    /* Dynamic red - action */

    /* Sophisticated Neutrals */
    --neutral-50: #F8FAFC;
    /* Pure light - clarity */
    --neutral-100: #F1F5F9;
    /* Soft canvas - foundation */
    --neutral-200: #E2E8F0;
    /* Gentle boundaries */
    --neutral-300: #CBD5E1;
    /* Subtle divisions */
    --neutral-400: #94A3B8;
    /* Quiet text */
    --neutral-500: #64748B;
    /* Standard text */
    --neutral-600: #475569;
    /* Strong text */
    --neutral-700: #334155;
    /* Bold text */
    --neutral-800: #1E293B;
    /* Deep text */
    --neutral-900: #0F172A;
    /* Maximum contrast */

    /* Premium Gradient Systems */
    --gradient-storm: linear-gradient(135deg, var(--storm-deep) 0%, var(--storm-primary) 50%, var(--storm-secondary) 100%);
    --gradient-bridge: linear-gradient(135deg, var(--bridge-primary) 0%, var(--bridge-accent) 50%, var(--bridge-glow) 100%);
    --gradient-dawn: linear-gradient(135deg, var(--dawn-coral) 0%, var(--dawn-amber) 50%, var(--dawn-gold) 100%);
    --gradient-hero: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 50%, rgba(14, 165, 233, 0.03) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);

    /* Glassmorphism Effects */
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-medium: rgba(255, 255, 255, 0.15);
    --glass-strong: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Award-Winning Shadow System */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1), 0 4px 6px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15), 0 10px 10px rgba(15, 23, 42, 0.04);
    --shadow-2xl: 0 25px 50px rgba(15, 23, 42, 0.25);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.4);
    --shadow-dawn: 0 0 30px rgba(245, 158, 11, 0.3);
    --shadow-purple: 0 0 25px rgba(124, 58, 237, 0.3);

    /* Legacy Compatibility Mappings */
    --primary: var(--bridge-primary);
    --primary-dark: var(--bridge-secondary);
    --secondary: var(--dawn-coral);
    --secondary-dark: var(--dawn-amber);
    --accent: var(--bridge-accent);
    --dark: var(--neutral-800);
    --light: var(--neutral-50);
    --gray: var(--neutral-500);
    --gray-light: var(--neutral-100);
    --gray-dark: var(--neutral-600);
    --background: var(--neutral-50);
    --shadow: var(--shadow-sm);
    --border: var(--neutral-200);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--neutral-800);
    background: var(--gradient-hero);
    position: relative;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Award-winning gradient mesh background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    z-index: -2;
    opacity: 0.6;
}

/* Dynamic gradient orbs */
body::after {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatOrb 20s ease-in-out infinite;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Award-Winning Gradient Background System */
@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(-10px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(20px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-10px) translateX(-15px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translateX(0%) translateY(0%) scale(1);
    }

    25% {
        transform: translateX(-5%) translateY(-2%) scale(1.1);
    }

    50% {
        transform: translateX(3%) translateY(-5%) scale(0.95);
    }

    75% {
        transform: translateX(-2%) translateY(3%) scale(1.05);
    }
}

/* Enhanced Animation Keyframes */
@keyframes scanBeam {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(400%);
        opacity: 0;
    }
}

@keyframes semanticTag {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes thoughtBubble {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes codeHighlight {
    0% {
        background-color: transparent;
        box-shadow: none;
    }

    50% {
        background-color: rgba(14, 165, 233, 0.2);
        box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
    }

    100% {
        background-color: rgba(14, 165, 233, 0.1);
        box-shadow: 0 0 5px rgba(14, 165, 233, 0.3);
    }
}

@keyframes intelligenceIndicator {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: rotate(0deg) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes aiPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
        transform: scale(1.05);
    }
}

@keyframes dataFlow {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes confidenceGrow {
    0% {
        width: 0%;
    }

    100% {
        width: var(--confidence-width);
    }
}

@keyframes impactRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes patternRecognition {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smartUpdate {
    0% {
        background-color: rgba(239, 68, 68, 0.2);
        border-color: #ef4444;
    }

    50% {
        background-color: rgba(245, 158, 11, 0.2);
        border-color: #f59e0b;
    }

    100% {
        background-color: rgba(16, 185, 129, 0.2);
        border-color: #10b981;
    }
}

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: var(--gradient-hero);
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation: gradientShift 25s ease-in-out infinite;
}

/* Additional premium gradient orbs */
.gradient-background::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatOrb 30s ease-in-out infinite reverse;
}

.gradient-background::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 60%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    border-radius: 50%;
    animation: gradientShift 35s ease-in-out infinite;
}

/* 🏆 Award-Winning Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: -0.025em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    background: var(--gradient-bridge);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--neutral-800);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--neutral-700);
}

p {
    margin-bottom: 1.75rem;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-600);
    letter-spacing: -0.005em;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--neutral-500);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Premium Gradient Text Effects */
.text-gradient {
    background: var(--gradient-bridge);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-gradient-dawn {
    background: var(--gradient-dawn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.text-gradient-storm {
    background: var(--gradient-storm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Enhanced text shadows for depth */
.text-shadow-soft {
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.text-shadow-medium {
    text-shadow: 0 4px 8px rgba(15, 23, 42, 0.15);
}

/* 🏆 Award-Winning Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: none;
}

/* Premium shimmer effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-bridge);
    color: var(--neutral-50);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--glass-border);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    filter: saturate(1.1) brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-outline {
    background: var(--glass-light);
    color: var(--bridge-primary);
    border: 2px solid var(--bridge-primary);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.btn-outline:hover {
    background: var(--gradient-bridge);
    color: var(--neutral-50);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: transparent;
}

/* Additional premium button variants */
.btn-dawn {
    background: var(--gradient-dawn);
    color: var(--neutral-50);
    box-shadow: var(--shadow-lg), var(--shadow-dawn);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-dawn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-dawn);
    filter: saturate(1.2) brightness(1.1);
}

.btn-ghost {
    background: var(--glass-light);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-300);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--neutral-100);
    color: var(--neutral-800);
    border-color: var(--neutral-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button size variations */
.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

/* Enhanced Header with Premium Glassmorphism */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-medium);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced header on scroll */
header.scrolled {
    background: var(--glass-strong);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(25px);
}

/* 🏆 Premium Brand Mark Design - NEWDi with Sindoor Dot */
.brand-mark {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: inherit;
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.brand-new {
    background: var(--gradient-bridge);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.brand-di {
    background: var(--gradient-storm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    position: relative;
    margin-left: -0.02em;
}

.brand-i {

    color: #DC2626 !important;
    -webkit-text-fill-color: #DC2626 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;

    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    display: inline-block;
    margin-left: -0.01em;
    animation: none !important; 

}

/* Enhanced brand mark on hover */
.logo:hover .brand-new {
    background: linear-gradient(90deg, var(--bridge-primary) 0%, var(--bridge-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .brand-di {
    background: var(--gradient-dawn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .brand-i {
    color: #B91C1C;
    text-shadow: 0 0 6px rgba(220, 38, 38, 1);
    transform: scale(1.05);
    transition: all 0.3s ease;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-svg svg {
    filter: drop-shadow(0 4px 8px rgba(0, 116, 217, 0.3));
}

.logo-svg {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-svg svg {
    transition: all 0.3s ease;
}

/* Enhanced logo animations and effects */
.logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.logo:hover {
    transform: translateY(-2px) !important;
    color: var(--primary) !important;
}

.logo-svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
}

.logo:hover .logo-svg {
    transform: scale(1.08) rotate(3deg) !important;
}

.logo:hover .logo-svg svg {
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.4)) drop-shadow(0 2px 8px rgba(124, 58, 237, 0.2)) !important;
}

/* Glow animation for premium effect */
@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }
}

.logo:hover .logo-svg svg {
    animation: logoGlow 2s ease-in-out infinite;
}

/* Strike line subtle pulse */
@keyframes strikePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.logo:hover svg [fill*="strikeGradient"] {
    animation: strikePulse 1.8s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 550px;
    background: linear-gradient(145deg, var(--neutral-100), var(--neutral-200));
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--neutral-300);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(0, 116, 217, 0.1);
    z-index: -1;
    border-radius: 10px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
    max-width: 65ch;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.stat-item {
    flex: 0 0 calc(33.333% - 2rem);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* Revolutionary AI-Powered Code Demo */
.ai-demo-container {
    background: var(--storm-deep);
    color: var(--neutral-200);
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--neutral-700);
    position: relative;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--neutral-700);
    background: rgba(255, 255, 255, 0.05);
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
}

.demo-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.demo-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dawn-gold);
    font-weight: 500;
}

.ai-brain {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-bridge);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    animation: aiPulse 2s infinite;
}

.demo-content {
    position: relative;
    min-height: 460px;
}

.demo-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-panel.active {
    display: block;
}

/* Enhanced Semantic Analysis Animation */
.semantic-analysis {
    padding: 1.5rem;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.code-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
    animation: scanBeam 4s infinite;
    z-index: 10;
}

.code-line {
    position: relative;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.code-line.highlighted {
    animation: codeHighlight 1s ease;
    border-radius: 4px;
    padding: 0 4px;
}

.semantic-tag {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-bridge);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    animation: semanticTag 0.8s ease forwards;
    z-index: 20;
    white-space: nowrap;
}

.dependency-graph {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.graph-nodes {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.graph-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    position: relative;
    opacity: 0;
    animation: intelligenceIndicator 1s ease forwards;
}

.graph-node.business {
    background: var(--dawn-gold);
    animation-delay: 1s;
}

.graph-node.validation {
    background: var(--bridge-primary);
    animation-delay: 1.5s;
}

.graph-node.exception {
    background: var(--dawn-energy);
    animation-delay: 2s;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: var(--bridge-primary);
    top: 50%;
    opacity: 0;
    animation: dataFlow 2s ease forwards;
}

.connection-1 {
    left: 70px;
    width: 60px;
    animation-delay: 2.5s;
}

.connection-2 {
    right: 70px;
    width: 60px;
    animation-delay: 3s;
}

/* AI Thought Process */
.thought-process {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 200px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--bridge-accent);
    border-radius: 12px;
    padding: 1rem;
    z-index: 30;
}

.thought-bubble {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: thoughtBubble 0.8s ease forwards;
    font-size: 0.75rem;
}

.thought-bubble:nth-child(1) {
    animation-delay: 0.5s;
}

.thought-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.thought-bubble:nth-child(3) {
    animation-delay: 2.5s;
}

.thought-bubble:nth-child(4) {
    animation-delay: 3.5s;
}

.thought-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bridge-accent);
    flex-shrink: 0;
}

/* Enhanced Test Synthesis */
.test-synthesis {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 1.5rem;
    height: 100%;
    align-items: center;
}

.input-code,
.output-tests {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    position: relative;
}

.input-code {
    border-color: rgba(124, 58, 237, 0.3);
}

.output-tests {
    border-color: rgba(16, 185, 129, 0.3);
    opacity: 0;
    animation: testGeneration 3s ease forwards;
    animation-delay: 2s;
}

.ai-processor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-bridge);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: aiPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.ai-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: scanBeam 3s infinite;
}

.strategy-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.7rem;
    text-align: center;
}

.strategy-item {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    animation: intelligenceIndicator 0.5s ease forwards;
}

.strategy-item:nth-child(1) {
    animation-delay: 0.5s;
}

.strategy-item:nth-child(2) {
    animation-delay: 1s;
}

.strategy-item:nth-child(3) {
    animation-delay: 1.5s;
}

.strategy-item:nth-child(4) {
    animation-delay: 2s;
}

.confidence-indicator {
    margin-top: 1rem;
    font-size: 0.75rem;
}

.confidence-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 0.25rem;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--dawn-success);
    border-radius: 2px;
    animation: confidenceGrow 2s ease forwards;
    animation-delay: 2.5s;
    --confidence-width: 94%;
}

/* Continuous Maintenance Animation */
.maintenance-view {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.version-timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.version-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    transition: all 0.5s ease;
}

.version-circle.active {
    background: var(--dawn-success);
    animation: smartUpdate 3s ease;
}

.version-label {
    font-size: 0.7rem;
    color: var(--neutral-400);
}

.version-arrow {
    width: 30px;
    height: 2px;
    background: var(--neutral-600);
    position: relative;
}

.version-arrow::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--neutral-600);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.impact-analysis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.impact-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--bridge-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: impactRipple 2s infinite;
}

.impact-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.75rem;
    color: var(--neutral-400);
}

.pattern-learning {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--bridge-accent);
    border-radius: 12px;
    padding: 1rem;
}

.learning-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.learning-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0;
    animation: patternRecognition 0.8s ease forwards;
}

.learning-item:nth-child(1) {
    animation-delay: 1s;
}

.learning-item:nth-child(2) {
    animation-delay: 1.5s;
}

.learning-item:nth-child(3) {
    animation-delay: 2s;
}

.learning-item:nth-child(4) {
    animation-delay: 2.5s;
}

.learning-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--dawn-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

/* Code syntax highlighting */
.code-keyword {
    color: #ff79c6;
    font-weight: 600;
}

.code-function {
    color: #50fa7b;
    font-weight: 500;
}

.code-string {
    color: #f1fa8c;
}

.code-comment {
    color: #6272a4;
    font-style: italic;
}

.code-number {
    color: #bd93f9;
}

.code-class {
    color: #8be9fd;
    font-weight: 600;
}

.code-annotation {
    color: #ff9500;
    font-weight: 600;
}

@keyframes testGeneration {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Features */
.features {
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bridge);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-bridge);
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon::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.6s;
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: var(--light);
}

.step-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.step-container:last-child {
    margin-bottom: 0;
}

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background: var(--gradient-bridge);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-glow);
    font-family: 'Montserrat', sans-serif;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.step-visual-container {
    margin-top: 2rem;
    width: 100%;
    height: 350px;
    background: var(--storm-deep);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--neutral-700);
}

/* Technology Section */
.technology-section {
    background: var(--background);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-bridge);
    text-align: center;
    padding: 6rem 0;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--light);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.cta-section .btn-outline:hover {
    background: var(--light);
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--storm-deep);
    color: var(--neutral-300);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--neutral-700);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    margin-bottom: 1.5rem;
    color: var(--light);
}

footer p {
    margin-bottom: 2rem;
    color: var(--neutral-400);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-700);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neutral-400);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-synthesis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ai-processor {
        order: -1;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1.5rem);
        margin-bottom: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .step-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .thought-process {
        position: relative;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-buttons {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .impact-analysis {
        grid-template-columns: 1fr;
    }

    .version-timeline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .version-arrow {
        width: 2px;
        height: 20px;
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .ai-demo-container {
        min-height: 400px;
    }

    .code-container {
        height: 200px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 20px;

}

.footer-nav {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-nav h4 {
    font-size: 18px;
    font-weight: 600;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.footer-nav a:hover {
    color: var(--accent);
}


/* FAQ Section */
    .faq-section {
      background: var(--light);
    }
    
    .accordion {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .accordion-item {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-bottom: 1.5rem;
      overflow: hidden;
    }
    
    .accordion-header {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      transition: background-color 0.3s;
    }
    
    .accordion-header:hover {
      background-color: rgba(110, 87, 224, 0.05);
    }
    
    .accordion-header i {
      color: var(--primary);
      transition: transform 0.3s;
    }
    
    .accordion-content {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .accordion-item.active .accordion-header {
      background-color: rgba(110, 87, 224, 0.05);
    }
    
    .accordion-item.active .accordion-header i {
      transform: rotate(180deg);
    }
    
    .accordion-item.active .accordion-content {
      padding: 0 1.5rem 1.5rem;
      max-height: 1000px;
    }



    /* 🏆 Premium Testimonials Section */
    .testimonials-section {
      padding: 8rem 0;
      background: 
        var(--paper-texture),
        linear-gradient(135deg, 
          rgba(255, 255, 255, 0.6) 0%, 
          rgba(248, 250, 252, 0.8) 50%, 
          rgba(255, 255, 255, 0.5) 100%);
      background-size: 150px 150px, 100% 100%;
      position: relative;
    }
    
    .testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.015) 0%, transparent 45%);
      z-index: -1;
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin: 4rem 0;
    }
    
    .testimonial-card {
      padding: 2.5rem;
      border-radius: 20px;
      background: var(--glass-strong);
      backdrop-filter: blur(25px);
      border: 1px solid var(--glass-border);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-bridge);
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .testimonial-card:hover::before {
      opacity: 1;
    }
    
    .testimonial-content {
      margin-bottom: 2rem;
    }
    
    .testimonial-text {
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--neutral-700);
      margin-bottom: 2rem;
      font-style: italic;
      position: relative;
    }
    
    .testimonial-text::before {
      content: '"';
      font-size: 4rem;
      color: var(--bridge-primary);
      position: absolute;
      top: -1rem;
      left: -1rem;
      font-family: Georgia, serif;
      opacity: 0.3;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    
    .author-avatar svg {
      width: 100%;
      height: 100%;
    }
    
    .author-name {
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--neutral-800);
      margin-bottom: 0.25rem;
    }
    
    .author-role {
      color: var(--neutral-500);
      font-size: 0.95rem;
    }
    
    .testimonial-metrics {
      border-top: 1px solid var(--neutral-200);
      padding-top: 1.5rem;
      margin-top: 1.5rem;
    }
    
    .metric {
      text-align: center;
    }
    
    .metric-value {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    
    .metric-label {
      font-size: 0.875rem;
      color: var(--neutral-500);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Social Proof Stats */
    .social-proof {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 6rem;
      padding: 3rem 2rem;
      background: var(--glass-light);
      backdrop-filter: blur(15px);
      border-radius: 16px;
      border: 1px solid var(--glass-border);
    }
    
    .proof-stat {
      text-align: center;
    }
    
    .proof-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }
    
    .proof-label {
      font-size: 1rem;
      color: var(--neutral-600);
      font-weight: 500;
    }

    /* Section Base Styles */
    section {
      padding: 6rem 0;
      position: relative;
    }
    
    .section-title {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      margin-bottom: 4rem;
      text-align: center;
      color: var(--gray);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* Blog Section */
    .blog-section {
      background: var(--background);
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    .blog-card {
      background: var(--light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--shadow);
      transition: all 0.3s ease;
    }
    
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px var(--shadow);
    }
    
    .blog-image {
      width: 100%;
      height: 200px;
      background: var(--gray-light);
      position: relative;
    }
    
    .blog-content {
      padding: 2rem;
    }
    
    .blog-tag {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: rgba(110, 87, 224, 0.1);
      color: var(--primary);
      border-radius: 4px;
      font-size: 0.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .blog-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }
    
    .blog-excerpt {
      color: var(--gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .blog-meta {
      display: flex;
      align-items: center;
      color: var(--gray);
      font-size: 0.9rem;
    }
    
    .blog-meta .author {
      margin-right: 1.5rem;
    }



                                  /* CSS for Grid Design */


/* Partners Section */
.partners-section {
    background: var(--background);
    padding: 4rem 1.5rem;
}

.partners-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.partners-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.partners-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 0.75rem;
}

/* Shared card layout like .feature-card */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bridge);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2rem;
    color: white;
    background: var(--gradient-bridge);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-icon::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.6s;
}

.card:hover .card-icon::before {
    left: 100%;
}

.card-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}











/* Existing CSS remains unchanged until the media queries section */

/* Enhanced Media Queries for Better Responsiveness */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-visual-container {
        height: 500px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-synthesis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ai-processor {
        order: -1;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-visual-container {
        height: 450px;
    }
    
    .step-container {
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .social-proof {
        gap: 3rem;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1.5rem);
        margin-bottom: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .step-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .thought-process {
        position: relative;
        width: 100%;
        margin-top: 1rem;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-nav {
        flex: 1 1 160px;
    }
}

@media (max-width: 880px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-visual-container {
        height: 400px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .social-proof {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .proof-stat {
        flex: 1 1 160px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-buttons {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .impact-analysis {
        grid-template-columns: 1fr;
    }

    .version-timeline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .version-arrow {
        width: 2px;
        height: 20px;
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .social-proof {
        margin-top: 4rem;
        padding: 2rem 1rem;
    }
    
    .proof-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .ai-demo-container {
        min-height: 400px;
    }

    .code-container {
        height: 200px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-nav {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

/* Existing scrollbar and other styles remain unchanged */


/* Add this to your existing CSS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--gradient-hero);
    padding: 3rem;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--glass-border);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--neutral-600);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--dawn-energy);
    transform: rotate(90deg);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-800);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--neutral-300);
    background-color: var(--neutral-50);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bridge-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-bridge);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Add this to make the modal visible when active */
.modal.active {
    display: flex;
}



/* Upload Code Modal Styles */
#uploadModal .modal-content {
    max-width: 700px;
}

.code-input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.code-input {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    resize: vertical;
}

.code-input:focus {
    outline: none;
    border-color: var(--bridge-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.language-selector {
    margin-bottom: 1.5rem;
}

.language-selector label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.language-selector select {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--neutral-300);
    background-color: var(--neutral-50);
    font-family: 'Inter', sans-serif;
}




/* Pricing Section Styles */
.pricing {
  padding: 6rem 1.5rem;
  background: var(--background);
}

.pricing .section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing .section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 500;
  font-size: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-light, #ccc);
  transition: 0.4s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary, #6e57e0);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--light, #fff);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow, 0 4px 12px rgba(0, 0, 0, 0.05));
  transition: 0.3s ease-in-out;
}

.pricing-card.featured {
  border: 2px solid var(--primary, #6e57e0);
  box-shadow: 0 6px 20px rgba(110, 87, 224, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--gray, #666);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--primary-dark, #4b3b9c);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--dark, #333);
  margin-bottom: 0.75rem;
}

.pricing-features i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.pricing-button .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing .section-title {
    font-size: 2rem;
  }

  .pricing .section-subtitle {
    font-size: 1rem;
  }
}


/* Demo */
/* Modal CSS (add to your styles) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  margin: 10% auto;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
}
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem;
    width: 95%;
    margin: 15% auto;
    width: 90%;
    padding: 1.5rem;
    margin: 20% auto;
  }
}

