/* ============================================
   SHARE - HERO
   ============================================ */

.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0D9488 0%, #0F766E 50%, #065F46 100%);
    color: var(--white);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '❤️';
    position: absolute;
    top: -15%;
    right: -5%;
    font-size: 400px;
    opacity: 0.06;
    pointer-events: none;
}

.hero::after {
    content: '🤝';
    position: absolute;
    bottom: -25%;
    left: -5%;
    font-size: 300px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--charity-secondary-light);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--charity-secondary);
    border-radius: 4px;
    opacity: 0.5;
}

.hero-description {
    font-size: clamp(18px, 2vw, 22px);
    opacity: 0.9;
    max-width: 640px;
    margin: 16px auto 32px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--charity-secondary-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE - HERO
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}