﻿/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37,71,244,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,71,244,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at 70% 30%, black, transparent 65%);
    z-index: 0;
}

.hero-blob-1 {
    width: 480px;
    height: 480px;
    background: rgba(37,71,244,.20);
    top: -120px;
    right: -100px;
    animation: floatY 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 380px;
    height: 380px;
    background: rgba(124,58,237,.16);
    bottom: -100px;
    left: -80px;
    animation: floatY 10s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}

    .hero-badge i {
        color: var(--secondary);
    }

.hero-title {
    font-size: clamp(38px, 5.2vw, 68px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

    .hero-title .highlight {
        display: block;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 2;
    color: var(--gray);
    margin-bottom: 38px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: white;
    padding: 17px 34px;
    border-radius: 60px;
    font-weight: 800;
    border: none;
    box-shadow: 0 15px 35px rgba(37,71,244,.35);
    transition: .35s var(--ease);
}

    .hero-primary-btn:hover {
        color: white;
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(37,71,244,.45);
    }

.hero-secondary-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 17px 34px;
    border-radius: 60px;
    font-weight: 800;
    transition: .35s var(--ease);
}

    .hero-secondary-btn:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-4px);
    }

.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 45px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

    .mini-stat strong {
        font-size: 24px;
        font-weight: 900;
        color: var(--dark);
    }

    .mini-stat span {
        font-size: 13px;
        color: var(--gray);
    }

.mini-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(10,14,39,.12);
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
}

.hero-image {
    width: 100%;
    display: block;
}

.hero-image-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,71,244,.25), transparent 70%);
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    z-index: 15;
    animation: floatY 5s ease-in-out infinite;
}

    .hero-float-card i {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: var(--gradient-main);
        color: white;
        font-size: 16px;
    }

.hero-float-card-1 {
    top: 12%;
    right: -8%;
}

.hero-float-card-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 1.5s;
}

@media (max-width: 991px) {
    .hero-float-card {
        display: none;
    }

    .hero-title {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }
}
