/* ============================================
   HERO SECTIONS - Marketing Pages
   ============================================ */

/* ===== HERO WRAPPER ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-fullscreen {
    min-height: 100vh;
}

/* ===== HERO BACKGROUND ===== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(96, 131, 255, 0.1) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease-out;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    animation: fadeIn 1.2s ease-out 0.4s backwards;
}

/* ===== HERO CTA BUTTONS ===== */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.4s ease-out 0.6s backwards;
}

.hero-cta .btn {
    min-width: 180px;
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: var(--small-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
}

.hero-stat-label {
    font-size: var(--small-size);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO FEATURES ===== */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.hero-feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
}

.hero-feature-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-red);
}

.hero-feature-title {
    font-size: var(--h5-size);
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.hero-feature-text {
    font-size: var(--small-size);
    color: var(--text-muted);
    margin: 0;
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .hero-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-stat-number {
        font-size: 28px;
    }
}