/* Enhanced Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: rgba(13, 153, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    border: 1px solid rgba(13, 153, 255, 0.3);
    box-shadow: 0 20px 60px rgba(13, 153, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slide-up 0.8s ease-out 1s both;
    max-width: 900px;
    margin: var(--spacing-3xl) auto 0;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(13, 153, 255, 0.4));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00D4FF 0%, #0D99FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-number::after {
    content: '+';
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(13, 153, 255, 0.5), transparent);
}

/* Floating Feature Cards */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-card-float {
    position: absolute;
    padding: 1.5rem;
    background: rgba(13, 153, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(13, 153, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(13, 153, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card-float:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(13, 153, 255, 0.5);
    border-color: rgba(0, 212, 255, 0.6);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 12px rgba(13, 153, 255, 0.5));
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Card Positions with Animations */
.card-1 {
    top: 10%;
    left: 5%;
    animation: float-card-1 6s ease-in-out infinite;
}

.card-2 {
    top: 5%;
    right: 10%;
    animation: float-card-2 7s ease-in-out infinite;
}

.card-3 {
    top: 40%;
    left: 0;
    animation: float-card-3 8s ease-in-out infinite;
}

.card-4 {
    top: 35%;
    right: 5%;
    animation: float-card-4 6.5s ease-in-out infinite;
}

.card-5 {
    bottom: 15%;
    left: 10%;
    animation: float-card-5 7.5s ease-in-out infinite;
}

.card-6 {
    bottom: 10%;
    right: 15%;
    animation: float-card-6 8.5s ease-in-out infinite;
}

@keyframes float-card-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -15px) rotate(3deg);
    }
}

@keyframes float-card-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-12px, 18px) rotate(-3deg);
    }
}

@keyframes float-card-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, 10px) rotate(2deg);
    }
}

@keyframes float-card-4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -12px) rotate(-2deg);
    }
}

@keyframes float-card-5 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(12px, 15px) rotate(3deg);
    }
}

@keyframes float-card-6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, -10px) rotate(-3deg);
    }
}

/* Central Glow Effect */
.hero-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 153, 255, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fade-in-up 1s ease-out 1.5s both;
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}