/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    opacity: 0.7;
    animation: fadeInUp 0.8s 0.1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    color: var(--accent-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    color: var(--text-medium);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto 3rem;
    opacity: 0.85;
    animation: fadeInUp 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    line-height: 1.8;
    color: var(--text-light);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stat {
    background: white;
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    background: white;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.15);
}

.stat h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}
