/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4eb5ff;
    --secondary-color: #0f172a;
    --accent-color: #7de2d1;
    --light-bg: #0b1220;
    --white: #ffffff;
    --text-dark: #e7ecf5;
    --text-light: #c2cbd8;
    --shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 14px 32px rgba(0, 0, 0, 0.4);
}

/* ============================================
   SLIDE & EXPLODE PAGE TRANSITION
   ============================================ */

.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
    background: #0a0e17;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.page-transition-overlay.active {
    opacity: 1;
}

/* Explosion particles */
.explosion-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.explosion-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.explosion-particle.explode {
    animation: explodeOut 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes explodeOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
    }
    30% {
        opacity: 0.9;
    }
    60% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) translate3d(0, 0, 0) scale(0.3);
    }
}

/* Center burst glow */
.explosion-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(78, 181, 255, 0.8) 0%, 
        rgba(125, 226, 209, 0.4) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%) scale(0) translate3d(0, 0, 0);
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.explosion-burst.active {
    animation: burstGlow 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes burstGlow {
    0% {
        transform: translate(-50%, -50%) scale(0) translate3d(0, 0, 0);
        opacity: 0.8;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(6) translate3d(0, 0, 0);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(12) translate3d(0, 0, 0);
        opacity: 0;
    }
}

/* Page wrapper */
.page-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* Exit: slide to right */
.page-wrapper.exiting {
    transform: translateX(100%) translate3d(0, 0, 0);
    opacity: 0 !important;
}

/* Enter: scale up from center with fade */
.page-wrapper.entering {
    animation: explodeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes explodeIn {
    0% {
        transform: scale(0.92) translate3d(0, 0, 0);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    50% {
        transform: scale(1.01) translate3d(0, 0, 0);
        opacity: 0.9;
    }
    70% {
        transform: scale(0.998) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* ============================================
   END SLIDE & EXPLODE PAGE TRANSITION
   ============================================ */

/* ============================================
   REDUCED MOTION & ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    /* Disable all animations and transitions */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Page transition - instant switch */
    .page-wrapper {
        transition: none !important;
    }
    
    .page-wrapper.exiting {
        transform: none !important;
        filter: none !important;
    }
    
    .page-wrapper.entering {
        animation: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
    
    .page-transition-overlay {
        display: none !important;
    }
    
    /* Hero animations - show immediately */
    .hero-load-title,
    .hero-load-subtitle,
    .hero-load-buttons {
        opacity: 1 !important;
        animation: none !important;
    }
    
    /* Scroll reveals - show immediately */
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Background animations - static */
    .space-bleed-section::before,
    .space-bleed-section::after {
        animation: none !important;
    }
    
    .space-orb,
    .shooting-star,
    .lightning-bolt {
        animation: none !important;
        display: none !important;
    }
    
    /* Button hover - simple color change only */
    .btn {
        transition: background-color 0.15s ease !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
}

/* ============================================
   END REDUCED MOTION & ACCESSIBILITY
   ============================================ */

/* ============================================
   SCROLL & LOAD ANIMATIONS
   Premium: subtle, fast, always readable
   ============================================ */

/* Natural easing - iOS-style deceleration */
:root {
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll reveal - smooth GPU-accelerated animations */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0) translate3d(0, 0, 0);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) translate3d(0, 0, 0);
}

/* Horizontal reveals - always visible by default */
.scroll-reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal - always visible by default */
.scroll-reveal-scale {
    opacity: 1;
    transform: scale(1);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children - always visible by default */
.stagger-children > * {
    opacity: 1;
    transform: translateY(0);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.25s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Page load animations */
.load-fade-in {
    animation: loadFadeIn 0.8s ease-out forwards;
}

.load-slide-up {
    animation: loadSlideUp 0.9s ease-out forwards;
}

.load-slide-down {
    animation: loadSlideDown 0.7s ease-out forwards;
}

@keyframes loadFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes loadSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero load animation - smooth GPU-accelerated reveal */
.hero-load-title,
.hero-load-subtitle,
.hero-load-buttons {
    animation: heroRevealSmooth 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) both;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.hero-load-title {
    animation-delay: 0.05s;
}

.hero-load-subtitle {
    animation-delay: 0.15s;
}

.hero-load-buttons {
    animation-delay: 0.25s;
}

@keyframes heroRevealSmooth {
    0% {
        opacity: 0;
        transform: translateY(15px) translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translate3d(0, 0, 0);
    }
}

/* After page transition entrance - re-run animation */
.page-wrapper.entering .hero-load-title,
.page-wrapper.entering .hero-load-subtitle,
.page-wrapper.entering .hero-load-buttons {
    animation: heroRevealSmooth 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   END SCROLL & LOAD ANIMATIONS
   ============================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #111827 0%, #0d1421 45%, #0b111d 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 100% 100%;
    background-position: 0% 0%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    /* Removed infinite animation for performance */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Parallax Section Base */
section {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

/* Section visibility - handled by IntersectionObserver, not GSAP */
.parallax-section {
    opacity: 1;
    transform: none;
}

/* Section Headings */
section:not(.hero) h2 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

section:not(.hero) p {
    color: rgba(255, 255, 255, 0.9);
}

section:not(.hero) .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation */
.navbar {
    background: rgba(6, 14, 26, 0.75);
    backdrop-filter: blur(14px);
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background: rgba(6, 14, 26, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-img {
    filter: none;
}

.navbar.scrolled .logo {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .language-switcher {
    border-left-color: rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .lang-btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.navbar.scrolled .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.navbar.scrolled .lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--white);
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1200px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% -10% -10% -10%;
    background: radial-gradient(circle at 30% 40%, rgba(78, 181, 255, 0.14), transparent 45%),
                radial-gradient(circle at 78% 32%, rgba(125, 226, 209, 0.12), transparent 42%),
                radial-gradient(circle at 60% 72%, rgba(125, 226, 209, 0.1), transparent 45%);
    filter: blur(24px);
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -5% 0 0 0;
    background: linear-gradient(180deg, rgba(6, 14, 26, 0) 0%, rgba(6, 14, 26, 0.8) 80%);
    pointer-events: none;
    z-index: 0;
}

.hero .lightning-bolt {
    position: absolute;
    width: 2px;
    height: 70%;
    top: 15%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(78, 181, 255, 0.3) 40%, 
        rgba(125, 226, 209, 0.5) 50%, 
        rgba(78, 181, 255, 0.3) 60%, 
        transparent 100%
    );
    filter: blur(2px);
    z-index: 1;
    /* Removed infinite animation for performance */
}

.hero .lightning-bolt.left {
    left: 12%;
}

.hero .lightning-bolt.right {
    right: 18%;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Parallax layers in-flow */
.runway-card.parallax-layer,
.stack-card.parallax-layer,
.testimonial-card.parallax-layer {
    position: relative;
    inset: auto;
    filter: none;
}

/* Product Stack */
.product-stack {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.stack-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stack-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(78, 181, 255, 0.5);
    box-shadow: 0 24px 60px rgba(78, 181, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.stack-card:active {
    transform: translateY(-8px) scale(0.98);
    transition: all 0.1s ease;
}

.stack-icon {
    transition: all 0.3s ease;
}

.stack-card:hover .stack-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.stack-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.stack-card p { color: rgba(255, 255, 255, 0.85); }
.stack-card ul { margin-top: 0.8rem; color: rgba(255, 255, 255, 0.7); padding-left: 1.1rem; }

.stack-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(78, 181, 255, 0.15);
    display: grid;
    place-items: center;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Space Bleed Section */
.space-bleed-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e17 0%, #0f0a1e 30%, #0a0e17 100%);
}

/* Moving nebula background */
.space-bleed-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(78, 181, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(125, 226, 209, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(147, 112, 219, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: nebulaFloat 25s ease-in-out infinite;
}

@keyframes nebulaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(3%, 2%) scale(1.05) rotate(1deg);
    }
    50% {
        transform: translate(-2%, 4%) scale(1.02) rotate(-1deg);
    }
    75% {
        transform: translate(-4%, 1%) scale(1.08) rotate(2deg);
    }
}

/* Stars twinkling */
.space-bleed-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 40% 15%, rgba(78, 181, 255, 0.8), transparent),
        radial-gradient(1px 1px at 55% 65%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 70% 30%, rgba(125, 226, 209, 0.7), transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 15% 75%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 90% 85%, rgba(78, 181, 255, 0.6), transparent);
    background-size: 250px 250px;
    opacity: 0.5;
    animation: starField 15s linear infinite;
    z-index: 1;
}

@keyframes starField {
    0% {
        background-position: 0 0;
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        background-position: 250px 250px;
        opacity: 0.4;
    }
}

.lightning-bolt {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(78, 181, 255, 0.4) 35%, 
        rgba(125, 226, 209, 0.5) 50%, 
        rgba(78, 181, 255, 0.4) 65%, 
        transparent 100%
    );
    filter: blur(3px);
    z-index: 2;
    opacity: 0.5;
    animation: pulseLine 4s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.02);
    }
}

.lightning-bolt.left {
    left: 20%;
    animation-delay: 0s;
}

.lightning-bolt.right {
    right: 25%;
    animation-delay: 2s;
}

/* Floating Space Orbs */
.space-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.space-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(78, 181, 255, 0.15);
    top: 10%;
    left: 10%;
    animation: floatOrb1 15s ease-in-out infinite;
}

.space-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(125, 226, 209, 0.12);
    bottom: 10%;
    right: 10%;
    animation: floatOrb2 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -20px);
    }
    50% {
        transform: translate(60px, 10px);
    }
    75% {
        transform: translate(20px, 30px);
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-25px, 20px);
    }
    50% {
        transform: translate(-50px, -15px);
    }
    75% {
        transform: translate(-20px, -30px);
    }
}

/* Extra orbs for more depth */
.space-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(147, 112, 219, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 22s ease-in-out infinite;
}

.space-orb.orb-4 {
    width: 180px;
    height: 180px;
    background: rgba(78, 181, 255, 0.08);
    top: 30%;
    right: 30%;
    animation: floatOrb4 20s ease-in-out infinite;
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(-45%, -55%) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-55%, -45%) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes floatOrb4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-40px, 30px);
    }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(78, 181, 255, 0.6), transparent);
    border-radius: 100%;
    z-index: 2;
    opacity: 0;
    animation: shootingStar 6s ease-out infinite;
    transform-origin: right center;
}

.shooting-star::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.8), 0 0 20px 6px rgba(78, 181, 255, 0.5);
}

.shooting-star.star-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shooting-star.star-2 {
    top: 25%;
    right: -5%;
    animation-delay: 2.5s;
}

.shooting-star.star-3 {
    top: 50%;
    right: 0%;
    animation-delay: 5s;
}

@keyframes shootingStar {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    5% {
        opacity: 1;
    }
    15% {
        opacity: 1;
        transform: translateX(-350px) translateY(200px);
    }
    20% {
        opacity: 0;
        transform: translateX(-400px) translateY(230px);
    }
}

.space-bleed-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
}

.space-bleed-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.space-bleed-content .btn {
    margin-top: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(78, 181, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(78, 181, 255, 0.6);
    }
}

.space-bleed-content .btn:hover {
    animation: none;
}

.space-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.space-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.space-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    min-width: 140px;
}

.space-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(78, 181, 255, 0.4);
}

.space-stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.space-stat strong {
    font-size: 1.8rem;
    color: var(--white);
}

.space-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Machine Showcase Section */
.machine-showcase {
    padding: 100px 0;
    background: transparent;
}

.machine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.machine-image {
    display: flex;
    justify-content: center;
}

.machine-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.machine-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.machine-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.machine-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.machine-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.machine-features li:last-child {
    border-bottom: none;
}

.machine-features li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    flex-shrink: 0;
}

.machine-features li div {
    display: flex;
    flex-direction: column;
}

.machine-features li strong {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.machine-features li span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .machine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .machine-image {
        order: -1;
    }
    
    .machine-features li {
        justify-content: center;
        text-align: left;
    }
    
    .machine-info h2 {
        font-size: 2rem;
    }
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

/* Simple Benefits Section */
.benefits-simple {
    padding: 80px 0;
    background: transparent;
}

.benefits-simple .section-header h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.benefit-unit {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
    }
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(78, 181, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(125, 226, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 181, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(78, 181, 255, 0.4);
    box-shadow: 0 20px 60px rgba(78, 181, 255, 0.2);
}

.why-card:active {
    transform: translateY(-5px) scale(1);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(11, 17, 29, 0.92) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
    border-color: rgba(78, 181, 255, 0.35);
}

.quote { color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; font-size: 1rem; line-height: 1.6; }
.person { display: flex; flex-direction: column; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.person .name { color: var(--white); font-weight: 700; }

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.15;
    
}

/* Space Runway */
.space-runway {
    position: relative;
    padding: 120px 0 140px;
    overflow: hidden;
}

.runway-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(78, 181, 255, 0.12), transparent 45%),
                radial-gradient(circle at 85% 60%, rgba(125, 226, 209, 0.1), transparent 50%),
                linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(11, 17, 29, 0.9) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.runway-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.runway-copy h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.runway-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.runway-steps {
    display: grid;
    gap: 1rem;
}

.runway-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    position: relative;
}

.runway-card h3 { color: var(--white); }
.runway-card p { color: rgba(255, 255, 255, 0.85); }

.runway-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(78, 181, 255, 0.15);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), rgba(78, 181, 255, 0.5));
    top: 10%;
    left: 5%;
    opacity: 0.15;
    filter: blur(35px);
    /* Removed infinite animation for performance */
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), rgba(125, 226, 209, 0.5));
    bottom: 20%;
    right: 10%;
    opacity: 0.12;
    filter: blur(35px);
    /* Removed infinite animation for performance */
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #6bb0cc, rgba(107, 176, 204, 0.5));
    top: 50%;
    right: 30%;
    opacity: 0.15;
    filter: blur(35px);
    /* Removed infinite animation for performance */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 181, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(78, 181, 255, 0.4);
    margin-bottom: 2rem;
    
    box-shadow: 0 0 20px rgba(78, 181, 255, 0.2);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(78, 181, 255, 0.2);
        border-color: rgba(78, 181, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(78, 181, 255, 0.4);
        border-color: rgba(78, 181, 255, 0.7);
    }
}

.hero-badge i {
    color: var(--primary-color);
    
    filter: drop-shadow(0 0 8px rgba(78, 181, 255, 0.6));
}

@keyframes boltSpin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 8px rgba(78, 181, 255, 0.6));
    }
    25% {
        transform: rotate(15deg) scale(1.1);
        filter: drop-shadow(0 0 12px rgba(78, 181, 255, 0.8));
    }
    50% { 
        transform: rotate(0deg) scale(1.2);
        filter: drop-shadow(0 0 15px rgba(78, 181, 255, 1));
    }
    75% {
        transform: rotate(-15deg) scale(1.1);
        filter: drop-shadow(0 0 12px rgba(78, 181, 255, 0.8));
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.hero-title-typing {
    display: block;
    min-height: 1.5em;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

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

.typing-line {
    display: inline;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

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

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--primary-color);
    margin-left: 2px;
    vertical-align: middle;
    border-radius: 1px;
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Removed duplicate hero-title-typing that was causing flex display issues */

.hero-title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out backwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out backwards;
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.5s;
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.6s;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(78, 181, 255, 0.1);
    border-color: rgba(78, 181, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-stat-item strong {
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.7s;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out backwards;
    animation-delay: 0.8s;
}

.hero-trust p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-brands {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partner-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.brand-placeholder {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 2rem;
    padding-right: 2rem;
}

.hero-station-image {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: center;
}

.station-img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(78, 181, 255, 0.25));
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.screen-logo {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screen-battery {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 600;
}

.screen-map {
    flex: 1;
    background: rgba(135, 193, 217, 0.1);
    border-radius: 20px;
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.map-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    
    box-shadow: 0 0 0 0 rgba(135, 193, 217, 0.7);
}

.map-marker:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-2 {
    top: 30%;
    left: 30%;
    animation-delay: 0.5s;
}

.marker-3 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(135, 193, 217, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(135, 193, 217, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(135, 193, 217, 0);
    }
}

.screen-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.screen-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.screen-card p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.screen-distance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.floating-powerbank {
    position: absolute;
    top: 10%;
    right: -10%;
    
}

.powerbank {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.4);
}

.powerbank i {
    font-size: 2.5rem;
    color: white;
}

@keyframes floatSide {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    
}

.floating-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.icon-1 {
    bottom: 20%;
    left: -5%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: -5%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: #6bc4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 181, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(78, 181, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Old hero-visual override removed - using main definition */

.parallax-stack {
    position: absolute;
    inset: -30% -40% -20% -40%;
    pointer-events: none;
    transform-style: preserve-3d;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
}

.parallax-layer img {
    max-width: 90%;
    height: auto;
    opacity: 0.9;
    mix-blend-mode: normal;
}

.layer-orb img {
    filter: saturate(1.2) brightness(1.1) drop-shadow(0 0 30px rgba(94, 224, 255, 0.4));
}

.layer-ring img {
    filter: saturate(1.1) brightness(1.05) drop-shadow(0 0 40px rgba(122, 216, 255, 0.35));
}

.parallax-lightning {
    position: absolute;
    inset: -20% -10% 0 -10%;
    background: radial-gradient(circle at 40% 30%, rgba(94, 224, 255, 0.25), transparent 45%),
                radial-gradient(circle at 70% 60%, rgba(122, 216, 255, 0.2), transparent 40%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%),
                linear-gradient(300deg, rgba(255, 255, 255, 0.06), transparent 45%);
    mix-blend-mode: screen;
    opacity: 0.7;
    filter: blur(2px);
    
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--white);
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
}

.section-header .section-subtitle {
    margin-bottom: 0;
}

.floating-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    
    opacity: 0.2;
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 193, 217, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.how-it-works h2,
.features h2,
.for-business h2,
.about h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: var(--white);
}

.step h3 {
    color: var(--white);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(78, 181, 255, 0.25);
    border-color: rgba(78, 181, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.step:active {
    transform: translateY(-5px) scale(1);
    transition: all 0.1s ease;
}

.step-icon {
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
}

.step:hover .step-number {
    background: var(--accent-color);
    transform: scale(1.1) rotate(360deg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(135, 193, 217, 0.4);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(135, 193, 217, 0.6);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(135, 193, 217, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(107, 176, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.feature h3 {
    color: var(--white);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 193, 217, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(78, 181, 255, 0.3);
    border-color: rgba(78, 181, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.feature:active {
    transform: translateY(-8px) scale(1);
    transition: all 0.1s ease;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent-color);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* For Business Section */
.for-business {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-text h2 {
    text-align: left;
}

.business-text .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.benefits-list li:hover .check-icon {
    background: var(--accent-color);
    transform: rotate(360deg) scale(1.1);
}

.benefits-list strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.benefits-list p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.business-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.business-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(78, 181, 255, 0.3) 0%,
        rgba(125, 226, 209, 0.2) 40%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: 1;
    
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.station-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    
    cursor: pointer;
    transition: all 0.3s ease;
}

.station-mockup:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(135, 193, 217, 0.4);
}

@keyframes stationFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.station-mockup::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.3;
    color: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-simple {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(78, 181, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(6, 14, 26, 0.9) 0%, rgba(4, 9, 18, 0.95) 100%);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .footer-legal-info {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-company-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-company-info a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company-info a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .business-content {
        grid-template-columns: 1fr;
    }

    .business-visual {
        height: 300px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 500px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(6, 14, 26, 0.95);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--white);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .language-switcher {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-left: 0;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
        justify-content: center;
    }

    .lang-btn {
        color: var(--secondary-color);
        border-color: rgba(0, 0, 0, 0.2);
    }

    .lang-btn.active {
        background: var(--primary-color);
        color: var(--white);
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-visual {
        height: 400px;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .business-text h2,
    .business-text .section-subtitle {
        text-align: center;
    }

    .space-bleed-section {
        min-height: 400px;
        padding: 3rem 1.5rem;
    }

    .space-bleed-content h2 {
        font-size: 2rem;
    }

    .lightning-bolt.left {
        left: 10%;
    }

    .lightning-bolt.right {
        right: 10%;
    }

    .business-visual {
        height: 300px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .space-stats {
        gap: 1.5rem;
    }

    .space-stat {
        padding: 1rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0;
    }

    .how-it-works,
    .features,
    .for-business,
    .about,
    .contact {
        padding: 60px 0;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements entering viewport */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}
/* Additional Styles for New Pages */
.translate-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 5px 15px;
  border-radius: 8px;
  width: fit-content;
}

.translate-icon {
  font-size: 18px;
}

/* 1. Style the main container */
  #google_translate_element {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px; /* Modern pill shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  #google_translate_element:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: #bbbbbb;
  }

  /* 2. Hide the Google Logo and "Powered by" text */
  .goog-te-gadget {
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0 !important; /* Hides the text */
    color: transparent !important;
  }

  /* 3. Style the actual Dropdown Menu */
  .goog-te-combo {
    font-size: 14px !important;
    font-weight: 500;
    color: #333;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 2px 0;
  }

  /* 4. Remove the top banner that appears after translating */
  .goog-te-banner-frame.skiptranslate {
    display: none !important;
  }
  body {
    top: 0px !important;
  }

/* ============================================
   ENHANCED ANIMATIONS - GSAP Integration
   ============================================ */

/* Reduced Motion Support - respects user preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .gsap-animated,
    [data-gsap] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Initial hidden state for GSAP animations */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-fade-in {
    opacity: 0;
}

.gsap-scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.gsap-slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-slide-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Removed old button hover effects - simplified in main .btn rules */

/* Enhanced Card Hover Effects */
.node-card,
.iso-card,
.stack-card,
.testimonial-card {
    transition: box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.node-card:hover,
.iso-card:hover,
.stack-card:hover,
.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(78, 181, 255, 0.25);
}

/* Glow effect on hover */
.node-card::after,
.iso-card::after,
.stack-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(78, 181, 255, 0), rgba(125, 226, 209, 0));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.node-card:hover::after,
.iso-card:hover::after,
.stack-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(78, 181, 255, 0.15), rgba(125, 226, 209, 0.15));
}

/* Image hover zoom effect */
.station-img,
.partner-logo,
.hero-station-image img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.hero-station-image:hover .station-img,
.hero-station-image:hover img {
    transform: scale(1.05);
}

/* Subtle parallax tilt effect for images */
.tilt-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Icon animation on hover */
.node-icon i,
.iso-icon i,
.stack-icon i,
.hero-stat-item i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease !important;
}

.node-card:hover .node-icon i,
.iso-card:hover .iso-icon i,
.stack-card:hover .stack-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

/* Hero text stagger animation preparation */
.hero-title-line,
.hero-title-highlight {
    display: block;
    overflow: hidden;
}

.hero-title-line span,
.hero-title-highlight span {
    display: inline-block;
}

/* Scroll indicator pulse animation */
.scroll-indicator {
    
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

/* Section header underline animation */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header.animated h2::after {
    width: 60px;
}

/* Space stat counter animation */
.space-stat strong {
    display: inline-block;
    transition: transform 0.3s ease;
}

.space-stat:hover strong {
    transform: scale(1.1);
}

/* Nav link hover enhancement */
.nav-links a {
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
    left: 0;
}

/* Form input focus animation */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(78, 181, 255, 0.2);
}

/* Badge pulse animation */
.hero-badge {
    
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(78, 181, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(78, 181, 255, 0);
    }
}

/* Floating cards enhanced animation */
.floating-card,
.floating-icon {
    
}

.floating-card:nth-child(2),
.floating-icon:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3),
.floating-icon:nth-child(3) {
    animation-delay: -4s;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    75% {
        transform: translateY(5px) rotate(-1deg);
    }
}

/* Lightning bolt subtle glow */
.lightning-bolt {
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.lightning-bolt:hover {
    opacity: 0.6;
}

/* Social links hover */
.social-links a {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease,
                background 0.3s ease !important;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Ripple effect styles */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.text-reveal.revealed span {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.6s ease;
}

/* ============================================
   TYPING EFFECT FOR HERO TITLE
   ============================================ */

.hero-title-typing {
    min-height: 180px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3em;
}

.typing-line {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

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

.typing-cursor {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--primary-color);
    
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hide cursor after typing completes */
.typing-complete .typing-cursor {
    animation: cursorBlink 1s ease-in-out 3;
    animation-fill-mode: forwards;
}

/* ============================================
   SMOOTHER ANIMATION EASINGS
   ============================================ */

/* Smooth transitions */
.nav-links a,
.social-links a {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smoother scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Page hero animations for other pages */
.page-hero h1,
.page-hero p {
    opacity: 0;
    transform: translateY(30px);
    animation: smoothFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-hero p {
    animation-delay: 0.2s;
}

@keyframes smoothFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smoother card entrance - disabled for now */
.feature-card,
.pricing-card,
.blog-card {
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.visible,
.pricing-card.visible,
.blog-card.visible {
    animation: cardEntrance 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Benefit cards always visible */
.benefit-card {
    opacity: 1 !important;
    transform: none !important;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE RESPONSIVE - COMPREHENSIVE
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-line,
    .hero-title-highlight {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-stat-item {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Machine Showcase Mobile */
    .machine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .machine-image {
        order: -1;
    }
    
    .machine-image img {
        max-height: 300px;
    }
    
    .machine-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .machine-intro {
        text-align: center;
    }
    
    /* Space Bleed Mobile */
    .space-bleed-section {
        min-height: auto;
        padding: 60px 1rem;
    }
    
    .space-bleed-content {
        padding: 2rem 1rem;
    }
    
    .space-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .space-stat {
        padding: 1rem;
        min-width: auto;
        width: 100%;
    }
    
    .space-orb {
        display: none;
    }
    
    /* Journey Section Mobile */
    .journey-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .journey-connector {
        display: none;
    }
    
    .journey-node {
        width: 100%;
    }
    
    /* Business Section Mobile */
    .business-isometric {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .iso-card {
        padding: 1.5rem;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
    }
    
    /* Floating Stats Mobile */
    .floating-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-cube {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .hero-title-line,
    .hero-title-highlight {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .space-bleed-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .eyebrow {
        font-size: 0.75rem;
    }
}