/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    flex: 1;
    transition: all 0.3s ease;
    animation: bounceIn 1s ease-out;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-hover);
    border-color: var(--accent-primary);
}

.stat-number {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-muted);
    font-weight: 600;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-text {
        font-size: 2em;
    }
    
    .ring-1 {
        width: 220px;
        height: 220px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .ring-3 {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2.8em;
    }
    
    .title-sub {
        font-size: 1.4em;
    }
    
    .desc-block {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .desc-block p {
        font-size: 1em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .logo-text {
        font-size: 1.6em;
    }
    
    .ring-1 {
        width: 180px;
        height: 180px;
    }
    
    .ring-2 {
        width: 220px;
        height: 220px;
    }
    
    .ring-3 {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.2em;
    }
    
    .title-sub {
        font-size: 1.2em;
    }
    
    .desc-block {
        padding: 15px;
    }
    
    .desc-icon {
        font-size: 1.5em;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-label {
        font-size: 1em;
    }
}