/*
 * HERO SECTION - FINAL CLEAN VERSION
 */

/* Reset hero styles completely */
.hero {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 120px 40px 80px 40px !important;
    background: #000000 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.hero-container {
    max-width: 800px !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 20px !important;
}

/* Eyebrow text */
.hero-eyebrow {
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #666666 !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

/* Main title */
.hero-title,
.hero h1 {
    font-size: clamp(42px, 7vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    color: #FFFFFF !important;
    margin: 0 0 24px 0 !important;
    text-align: center !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Description */
.hero-description,
.hero p {
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 400 !important;
    color: #999999 !important;
    line-height: 1.6 !important;
    margin: 0 auto 40px auto !important;
    text-align: center !important;
    max-width: 600px !important;
    padding: 0 !important;
}

/* Action buttons */
.hero-actions {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 80px auto !important;
    flex-wrap: wrap !important;
}

/* Footer stats */
.hero-footer {
    margin-top: 80px !important;
    padding-top: 40px !important;
    border-top: 1px solid #1A1A1A !important;
    display: flex !important;
    justify-content: center !important;
    gap: 60px !important;
    flex-wrap: wrap !important;
}

.hero-footer-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
}

.hero-footer-label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #666666 !important;
}

.hero-footer-value {
    font-size: 16px !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

/* Hide old structure elements */
.hero-content-wrapper,
.hero-content-left,
.hero-content-right,
.hero-subtitle-wrapper,
.hero-accent-line {
    all: unset !important;
    display: contents !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 32px 60px 32px !important;
    }
    
    .hero-footer {
        gap: 40px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px 24px !important;
        min-height: 90vh !important;
    }
    
    .hero-container {
        padding: 0 !important;
    }
    
    .hero-title,
    .hero h1 {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-description,
    .hero p {
        font-size: 16px !important;
        margin-bottom: 32px !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-bottom: 60px !important;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    
    .hero-footer {
        flex-direction: column !important;
        gap: 32px !important;
        margin-top: 40px !important;
        padding-top: 32px !important;
    }
}
