/* Enhanced Hero Section - Futuristic AI-Themed Design */

/* Hero Container Enhancement */
.hero-section,
section.pt-32.pb-20 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Advanced Background Layers */
.hero-bg-layer-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #581c87 75%, #1e3a8a 100%);
    z-index: -5;
}

.hero-bg-layer-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    z-index: -4;
}

/* Circuit Pattern Overlay */
.circuit-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -3;
    animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Floating 3D Shapes */
.floating-shape {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: float3D 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    transform: rotate(-30deg);
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(60deg);
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(45deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(55deg);
    }
    66% {
        transform: translateY(20px) translateX(-15px) rotate(35deg);
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Data Stream Visualization */
.data-stream-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(6, 182, 212, 0.8), 
        rgba(139, 92, 246, 0.4), 
        transparent);
    animation: dataStreamFlow 4s ease-in-out infinite;
}

@keyframes dataStreamFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 24px;
}

/* Headline Enhancement */
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-headline-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a78bfa;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

.ai-badge::before {
    content: '✨';
    font-size: 1.2rem;
}

/* Subheadline Enhancement */
.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons Enhancement */
.hero-cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #9333ea, #ec4899, #9333ea);
    background-size: 200% 200%;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.6);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -10px rgba(236, 72, 153, 0.8);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-secondary {
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    color: #e0e7ff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.4);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Holographic Effect */
.holographic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(139, 92, 246, 0.1) 50%, 
        transparent 70%);
    background-size: 200% 200%;
    animation: holographicScan 10s linear infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes holographicScan {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-shape {
        opacity: 0.3;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
}

