/* ============================================
   NANDI AI - Revolutionary Website Styles
   2025 Cutting-Edge Animations & Design
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
    /* Colors */
    --primary-color: #FF4444;
    --primary-dark: #CC0000;
    --primary-light: #FF6B6B;
    --secondary-color: #00D4FF;
    --accent-color: #FFD700;
    
    /* Neutrals */
    --bg-primary: #0A0A0F;
    --bg-secondary: #141419;
    --bg-tertiary: #1E1E28;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8C8;
    --text-muted: #7A7A8A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF4444 0%, #FF8844 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF4444 0%, #FFD700 50%, #00D4FF 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 68, 68, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(0, 212, 255, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', var(--font-primary);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BRAND NAME STYLING
   ============================================ */
.brand-name {
    font-family: 'Kafina', 'Playfair Display', 'Crimson Text', 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.25em;
    letter-spacing: 0.01em;
    position: relative;
    color: #6B7280;
    text-transform: lowercase;
    display: inline-block;
    font-style: normal;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.6;
    border-radius: 1px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    z-index: 10000;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
}

/* ============================================
   PARTICLE BACKGROUND
   ============================================ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   LOADER
   ============================================ */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0F 0%, #1A0A0F 50%, #0A0A0F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
    overflow: hidden;
}

.loader-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Nandi AI Loader */
.nandi-loader {
    width: 300px;
    height: 200px;
    position: relative;
    margin: 0 auto 2rem;
}

.logo-container {
    position: relative;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 68, 68, 0.6)) brightness(1.2);
    animation: logo-pulse 2s ease-in-out infinite;
}

/* Scanning Waves */
.scan-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 150px;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: scan-pulse 2s ease-out infinite;
}

.wave-2 {
    animation-delay: 0.6s;
}

.wave-3 {
    animation-delay: 1.2s;
}

/* AI Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    top: 40%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Neural Grid */
.neural-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 180px;
    opacity: 0.2;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    width: 100%;
    animation: grid-scan 2s ease-in-out infinite;
}

.grid-line:nth-child(1) {
    top: 33%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 50%;
    animation-delay: 0.3s;
}

.grid-line:nth-child(3) {
    top: 67%;
    animation-delay: 0.6s;
}

/* Loader Text */
.loader-text-wrapper {
    margin-top: 3rem;
}

.loader-brand {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #FFD700, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.loader-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: pulse-text 2s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #FFD700, var(--secondary-color));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

/* Loader Animations */
@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 68, 68, 0.6)) brightness(1.2);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 50px rgba(255, 68, 68, 0.9)) brightness(1.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes scan-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: translate(20px, -30px);
        opacity: 0.8;
    }
    75% {
        opacity: 1;
    }
}

@keyframes grid-scan {
    0%, 100% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.dna-loader {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 2rem;
}

.dna-loader::before,
.dna-loader::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: dna-strand 2s ease-in-out infinite;
}

.dna-loader::before {
    left: 0;
    animation-delay: 0s;
}

.dna-loader::after {
    right: 0;
    animation-delay: 1s;
}

@keyframes dna-strand {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-40px) scale(0.8); }
    50% { transform: translateY(-80px) scale(1); }
    75% { transform: translateY(-40px) scale(0.8); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.3));
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: white;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ai-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.ai-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    animation: shimmer 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1E1E28, #141419);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 68, 68, 0.2);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.scanning-interface {
    width: 100%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 68, 68, 0.1), transparent);
}

.scan-grid {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(0deg, rgba(255, 68, 68, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 68, 68, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
    animation: scanLine 3s ease-in-out infinite;
}

.scan-corners {
    position: absolute;
    inset: 20%;
}

.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    animation: cornerPulse 2s ease-in-out infinite;
}

.corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.scan-data {
    position: absolute;
    inset: 0;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: dataPointPulse 2s ease-in-out infinite;
}

.data-point:nth-child(2) { animation-delay: 0.2s; }
.data-point:nth-child(3) { animation-delay: 0.4s; }
.data-point:nth-child(4) { animation-delay: 0.6s; }
.data-point:nth-child(5) { animation-delay: 0.8s; }

.floating-cards {
    position: absolute;
    inset: 0;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 10%;
    left: -20%;
    animation: floatCard 5s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    left: -25%;
    animation: floatCard 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: fadeIn 2s ease-out 1s both;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s ease-in-out infinite;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 68, 68, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon-wrapper {
    margin-bottom: 1.5rem;
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.problem-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.problem-impact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.impact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.problem-conclusion {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 136, 68, 0.1) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.conclusion-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.conclusion-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.conclusion-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.conclusion-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    background: var(--bg-secondary);
    position: relative;
}

.solution-process {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.step-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--transition-base);
}

.step-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2);
}

.step-visual {
    width: 100px;
    height: 100px;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
}

.step-icon.camera svg,
.step-icon.ocr svg,
.step-icon.verify svg {
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

/* Neural Network Animation */
.neural-network {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.neural-layer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.neuron {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color);
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron:nth-child(2) { animation-delay: 0.2s; }
.neuron:nth-child(3) { animation-delay: 0.4s; }
.neuron:nth-child(4) { animation-delay: 0.6s; }

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    margin: -2rem auto;
    position: relative;
    left: 1.5rem;
}

.solution-features {
    text-align: center;
    margin-top: 4rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
}

.feature-badge span {
    font-size: 1.5rem;
}

.feature-badge p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card.large {
    grid-column: span 2;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 68, 68, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-icon,
.benefit-icon-large {
    background: rgba(255, 68, 68, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
}

.benefit-icon-large {
    width: 80px;
    height: 80px;
}

.benefit-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.benefit-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefit-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.benefit-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-highlight {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Industry Impact */
.industry-impact {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 32px;
    padding: 5rem 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.industry-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.impact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.impact-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.impact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stakeholder-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stakeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stakeholder-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.stakeholder-card:hover::before {
    opacity: 1;
}

.stakeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stakeholder-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.stakeholder-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Market Fit */
.market-fit {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 32px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.market-fit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 68, 68, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.fit-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.fit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: height 0.4s ease;
}

.fit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2);
}

.fit-item:hover::before {
    height: 100%;
}

.fit-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #FF6B6B);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.fit-item span {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 500;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
    background: var(--bg-primary);
    position: relative;
}

.vision-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.vision-statement {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Odd items - content on left, marker in center */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-content {
    width: calc(50% - 3rem);
    text-align: right;
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Even items - content on right, marker in center */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
    width: calc(50% - 3rem);
    text-align: left;
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.marker-dot {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 0 20px var(--primary-color);
    position: relative;
    z-index: 1;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse 2s ease-out infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-base);
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.timeline-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

.vision-conclusion {
    margin-top: 5rem;
}

.conclusion-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
}

.conclusion-box .conclusion-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.conclusion-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-method svg {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(25, 25, 30, 0.95) 100%);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(255, 68, 68, 0.2));
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
    font-size: 1.05rem;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 0.25rem 0;
    border-radius: 4px;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    width: 100%;
    font-weight: 400;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Ensure all content is visible by default */
[data-animate],
.problem-card,
.benefit-card,
.stakeholder-card,
.timeline-item,
.process-step {
    opacity: 1 !important;
    transform: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes dataPointPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes neuronPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 15px var(--primary-color);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 25px var(--primary-color);
    }
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        height: 400px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
        max-width: 600px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Solution Section */
    .solution-process {
        gap: 2rem;
    }
    
    .process-connector {
        display: none;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-features,
    .contact-methods {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row;
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: calc(100% - 60px);
        text-align: left !important;
        margin: 0 0 0 2rem !important;
    }
    
    .timeline-item .timeline-marker {
        position: absolute !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .timeline-line {
        left: 12px;
        transform: none;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Problems Grid */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Stakeholders */
    .stakeholders-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.2rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .floating-cards {
        display: none;
    }
    
    /* Sections */
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    /* Problem Cards */
    .problems-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card.large {
        grid-column: span 1;
    }
    
    .problem-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    /* Solution Steps */
    .solution-process {
        gap: 3rem;
    }
    
    .process-step {
        padding: 0;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-visual {
        margin: 0 auto;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .process-connector {
        height: 40px;
        width: 2px;
        margin: 0 auto;
    }
    
    /* Stakeholders */
    .stakeholders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stakeholder-card {
        padding: 2rem 1.5rem;
    }
    
    /* Industry Impact */
    .industry-impact {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    /* Market Fit */
    .fit-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fit-title {
        font-size: 2rem;
    }
    
    .market-fit {
        padding: 2.5rem 1.5rem;
    }
    
    .fit-item {
        padding: 1.5rem;
    }
    
    /* Timeline */
    .timeline-content {
        padding: 2rem 1.5rem;
    }
    
    .vision-statement {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Contact */
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Hero */
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-divider {
        width: 60%;
        height: 1px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Phone Mockup */
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    /* Section Spacing */
    .section-container {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Cards */
    .problem-card,
    .benefit-card,
    .stakeholder-card {
        padding: 1.5rem 1rem;
    }
    
    .problem-title,
    .benefit-title {
        font-size: 1.3rem;
    }
    
    /* Solution Steps */
    .step-number {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    /* Timeline */
    .timeline-title {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 1.5rem 1rem;
    }
    
    .vision-statement {
        font-size: 1rem;
    }
    
    /* Impact */
    .impact-title,
    .fit-title {
        font-size: 1.8rem;
    }
    
    .benefit-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Market Fit */
    .market-fit {
        padding: 2rem 1rem;
    }
    
    .fit-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .fit-check {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Contact */
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    /* Footer */
    .footer-logo {
        width: 130px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    /* Loader */
    .loader-logo {
        width: 120px;
    }
    
    .loader-brand {
        font-size: 2rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        font-size: 0.85rem;
    }
}
