/* Hero Section - Optimized Single Column Layout */

/* Base hero styles */
.hero {
    overflow: visible;
    min-height: auto;
    padding-bottom: 5rem;
}

.hero-content {
    overflow: visible;
    padding-bottom: 3rem;
}

/* Main hero container - centered single column */
.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Hero title */
.hero-title {
    text-align: center;
    margin-bottom: 1rem;
}

/* Hero subtitle */
.hero-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ========================================
   DESKTOP (1025px and above)
   ======================================== */
@media (min-width: 1025px) {
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Show desktop stats */
    .hero-stats-desktop {
        display: grid !important;
    }
    
    /* Hide mobile stats */
    .hero-stats-mobile {
        display: none !important;
    }
    
    /* Stats styling */
    .hero-stats-desktop .stat-card {
        padding: 1.5rem;
    }
    
    .hero-stats-desktop .stat-number {
        font-size: 3rem;
    }
    
    .hero-stats-desktop .stat-label {
        font-size: 0.9rem;
    }
}

/* ========================================
   TABLET (768px - 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        padding: 2.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.95rem;
        padding: 0.65rem 1.3rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    /* Hide desktop stats */
    .hero-stats-desktop {
        display: none !important;
    }
    
    /* Show mobile stats */
    .hero-stats-mobile {
        display: grid !important;
        margin-top: 2rem;
    }
    
    .hero-stats-mobile .stat-card {
        padding: 1rem;
    }
    
    .hero-stats-mobile .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats-mobile .stat-label {
        font-size: 0.75rem;
    }
}

/* ========================================
   MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 350px;
    }
    
    .hero-buttons .slx-card-anim-border,
    .hero-buttons .btn-hero-secondary {
        width: 100%;
    }
    
    .hero-buttons .slx-card-anim-border .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons .btn-hero-secondary {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Hide desktop stats */
    .hero-stats-desktop {
        display: none !important;
    }
    
    /* Show mobile stats */
    .hero-stats-mobile {
        display: grid !important;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .hero-stats-mobile .stat-card {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-stats-mobile .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats-mobile .stat-label {
        font-size: 0.65rem;
    }
}

/* ========================================
   SMALL MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
    
    .hero-buttons {
        max-width: 320px;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats-mobile {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }
    
    .hero-stats-mobile .stat-card {
        padding: 0.6rem 0.3rem;
    }
    
    .hero-stats-mobile .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-stats-mobile .stat-label {
        font-size: 0.55rem;
        line-height: 1.2;
    }
}

/* ========================================
   EXTRA SMALL (375px and below)
   ======================================== */
@media (max-width: 375px) {
    .hero-content {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-buttons {
        max-width: 300px;
    }
    
    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-stats-mobile .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stats-mobile .stat-label {
        font-size: 0.5rem;
    }
    
    .hero-stats-mobile .stat-card {
        padding: 0.5rem 0.2rem;
    }
}
