/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background-light: #ffffff;
    --background-dark: #0f172a;
    --surface-light: #f8fafc;
    --border-light: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.pulse-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(79, 70, 229, 0.6);
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 35%; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; animation-delay: 3s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; }

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.gradient-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
    animation: wave-motion 4s ease-in-out infinite;
}

@keyframes wave-motion {
    0%, 100% { clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%); }
    50% { clip-path: polygon(0 80%, 100% 50%, 100% 100%, 0% 100%); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 300px;
    height: 300px;
}

.modal-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.modal-icon:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

.modal-icon:hover {
    transform: scale(1.05);
}

/* Voice Animation */
.sound-waves {
    display: flex;
    gap: 4px;
    align-items: center;
}

.wave {
    width: 4px;
    height: 20px;
    background: white;
    border-radius: 2px;
    animation: sound-wave 1.5s ease-in-out infinite;
}

.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

@keyframes sound-wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

/* Image Animation */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    width: 40px;
    height: 40px;
}

.grid-square {
    background: white;
    border-radius: 2px;
    animation: flip-square 2s ease-in-out infinite;
}

.grid-square:nth-child(2) { animation-delay: 0.5s; }
.grid-square:nth-child(3) { animation-delay: 1s; }
.grid-square:nth-child(4) { animation-delay: 1.5s; }

@keyframes flip-square {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

/* Audio Animation */
.frequency-bars {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 40px;
}

.bar {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: frequency-dance 1.2s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; height: 20px; }
.bar:nth-child(2) { animation-delay: 0.1s; height: 30px; }
.bar:nth-child(3) { animation-delay: 0.2s; height: 40px; }
.bar:nth-child(4) { animation-delay: 0.3s; height: 25px; }
.bar:nth-child(5) { animation-delay: 0.4s; height: 35px; }

@keyframes frequency-dance {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Multimodal Showcase Section */
.multimodal-showcase {
    padding: 100px 0;
    background: var(--surface-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.capability-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.capability-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--gradient-primary);
}

/* Voice Card Animation */
.voice-card .capability-icon {
    background: var(--gradient-primary);
}

.voice-animation {
    display: flex;
    gap: 6px;
    align-items: center;
}

.sound-wave-large {
    width: 6px;
    height: 30px;
    background: white;
    border-radius: 3px;
    animation: voice-pulse 1.5s ease-in-out infinite;
}

.sound-wave-large:nth-child(2) { animation-delay: 0.2s; }
.sound-wave-large:nth-child(3) { animation-delay: 0.4s; }
.sound-wave-large:nth-child(4) { animation-delay: 0.6s; }

@keyframes voice-pulse {
    0%, 100% { height: 30px; opacity: 0.7; }
    50% { height: 50px; opacity: 1; }
}

/* Image Card Animation */
.image-card .capability-icon {
    background: var(--gradient-secondary);
}

.flip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 60px;
    height: 60px;
}

.flip-square {
    background: white;
    border-radius: 4px;
    animation: image-flip 3s ease-in-out infinite;
}

.flip-square:nth-child(1) { animation-delay: 0s; }
.flip-square:nth-child(2) { animation-delay: 0.3s; }
.flip-square:nth-child(3) { animation-delay: 0.6s; }
.flip-square:nth-child(4) { animation-delay: 0.9s; }
.flip-square:nth-child(5) { animation-delay: 1.2s; }
.flip-square:nth-child(6) { animation-delay: 1.5s; }
.flip-square:nth-child(7) { animation-delay: 1.8s; }
.flip-square:nth-child(8) { animation-delay: 2.1s; }
.flip-square:nth-child(9) { animation-delay: 2.4s; }

@keyframes image-flip {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(0.8); }
}

/* Audio Card Animation */
.audio-card .capability-icon {
    background: var(--gradient-accent);
}

.audio-animation {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 50px;
}

.frequency-bar {
    width: 6px;
    background: white;
    border-radius: 3px;
    animation: audio-frequency 1.5s ease-in-out infinite;
}

.frequency-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.frequency-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.frequency-bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.frequency-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.frequency-bar:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.frequency-bar:nth-child(6) { height: 45px; animation-delay: 0.5s; }
.frequency-bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }

@keyframes audio-frequency {
    0%, 100% { transform: scaleY(0.3); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

.capability-card:hover .voice-animation .sound-wave-large {
    animation-duration: 0.8s;
}

.capability-card:hover .flip-grid .flip-square {
    animation-duration: 1.5s;
}

.capability-card:hover .audio-animation .frequency-bar {
    animation-duration: 0.6s;
}

/* Sensors Card Animation */
.sensors-card .capability-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.sensors-animation {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sensor-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: sensor-pulse 2s ease-in-out infinite;
}

.sensor-dot:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.sensor-dot:nth-child(2) {
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.sensor-dot:nth-child(3) {
    bottom: 20px;
    left: 34px;
    animation-delay: 1s;
}

.sensor-line {
    position: absolute;
    width: 2px;
    height: 40px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
    animation: sensor-scan 2s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes sensor-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes sensor-scan {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(-30deg);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) rotate(30deg);
        opacity: 1;
    }
}

.capability-card:hover .sensors-animation .sensor-dot {
    animation-duration: 1.5s;
}

.capability-card:hover .sensors-animation .sensor-line {
    animation-duration: 1.5s;
}

/* Core Benefits Section */
.core-benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: var(--surface-light);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    position: relative;
}

/* Speed Icon Animation */
.speed-icon {
    background: var(--gradient-primary);
}

.speed-lines {
    position: absolute;
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.speed-lines::before {
    top: -8px;
    left: -5px;
}

.speed-lines::after {
    top: 8px;
    left: -5px;
}

.speed-circle {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: speed-move 2s ease-in-out infinite;
}

@keyframes speed-move {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

/* Compliance Icon Animation */
.compliance-icon {
    background: var(--gradient-secondary);
}

.shield-shape {
    width: 40px;
    height: 50px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark {
    width: 16px;
    height: 8px;
    border: 3px solid var(--success-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: checkmark-appear 2s ease-in-out infinite;
}

@keyframes checkmark-appear {
    0%, 50% { opacity: 0; transform: rotate(-45deg) scale(0); }
    100% { opacity: 1; transform: rotate(-45deg) scale(1); }
}

/* Performance Icon Animation */
.performance-icon {
    background: var(--gradient-accent);
}

.performance-meter {
    width: 50px;
    height: 30px;
    background: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: var(--success-color);
    border-radius: 15px;
    animation: meter-fill 3s ease-in-out infinite;
}

@keyframes meter-fill {
    0% { width: 20%; }
    50% { width: 90%; }
    100% { width: 20%; }
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 100px 0;
    background: var(--surface-light);
}

.industry-grid {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
}

/* Healthcare Animation */
.healthcare-card .industry-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.heartbeat-animation {
    position: relative;
    width: 100px;
    height: 60px;
}

.heartbeat-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    transform: translateY(-50%);
}

.heartbeat-line::before {
    content: '';
    position: absolute;
    left: 20%;
    top: -15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 30px solid white;
    animation: heartbeat 2s ease-in-out infinite;
}

.voice-wave-overlay {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: voice-ripple 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes voice-ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Financial Animation */
.financial-card .industry-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.security-animation {
    position: relative;
    width: 60px;
    height: 80px;
}

.lock-icon {
    position: relative;
    width: 100%;
    height: 100%;
}

.lock-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background: white;
    border-radius: 8px;
}

.lock-shackle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border: 5px solid white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    animation: lock-open 3s ease-in-out infinite;
}

.checkmark-reveal {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 3px solid var(--success-color);
    border-top: none;
    border-right: none;
    transform: translateX(-50%) rotate(-45deg);
    opacity: 0;
    animation: reveal-check 3s ease-in-out infinite;
}

@keyframes lock-open {
    0%, 50% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(-45deg) translateX(-5px); }
}

@keyframes reveal-check {
    0%, 60% { opacity: 0; transform: translateX(-50%) rotate(-45deg) scale(0); }
    100% { opacity: 1; transform: translateX(-50%) rotate(-45deg) scale(1); }
}

/* Manufacturing Animation */
.manufacturing-card .industry-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.quality-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.gear-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: gear-rotate 4s linear infinite;
}

.gear-teeth {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.gear-teeth::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 10px;
    background: white;
    border-radius: 2px;
}

.quality-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: badge-appear 4s ease-in-out infinite;
}

.quality-badge::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

@keyframes gear-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes badge-appear {
    0%, 70% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.industry-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.industry-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.industry-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.industry-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-side h2,
.solution-side h2 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-points,
.solution-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-point,
.solution-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
}

.problem-point {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.solution-point {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.problem-icon,
.solution-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: white;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    background: var(--surface-light);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.trust-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.metric-item {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

.case-study-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.case-card {
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.case-metric {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Implementation Process Section */
.implementation-process {
    padding: 100px 0;
    background: var(--surface-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.step-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: step-progress 4s ease-in-out infinite;
}

.process-step:nth-child(2) .step-progress {
    animation-delay: 1.3s;
}

.process-step:nth-child(3) .step-progress {
    animation-delay: 2.6s;
}

@keyframes step-progress {
    0%, 25% { width: 0; }
    50%, 75% { width: 100%; }
    100% { width: 0; }
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-duration {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.urgency-stat {
    text-align: center;
}

.live-counter {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    animation: counter-pulse 2s ease-in-out infinite;
}

@keyframes counter-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-offer {
    text-align: center;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--text-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-alternative {
    margin-top: 2rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer CTA */
.footer-cta {
    margin-top: 1.5rem;
}

.footer-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.footer-cta .btn:hover {
    transform: translateY(-1px);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industry-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .ai-showcase {
        width: 250px;
        height: 250px;
    }
    
    .modal-icon {
        width: 80px;
        height: 80px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metrics-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .capability-card,
    .benefit-card,
    .case-card {
        padding: 2rem 1.5rem;
    }
    
    .live-counter {
        font-size: 3rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --background-light: #0f172a;
        --surface-light: #1e293b;
        --text-primary: #f1f5f9;
        --text-secondary: #94a3b8;
        --border-light: #334155;
    }
    
    .navbar {
        background: rgba(15, 23, 42, 0.95);
        border-bottom-color: var(--border-light);
    }
    
    .multimodal-showcase,
    .core-benefits,
    .social-proof,
    .implementation-process {
        background: var(--surface-light);
    }
    
    .capability-card,
    .benefit-card,
    .industry-card,
    .case-card,
    .trust-item {
        background: var(--background-light);
        border-color: var(--border-light);
    }
}