/* Why 섹션 (Hero 다크) */
.section-hero-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}



.section-hero-dark .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-stats {
    margin-bottom: 60px;
}

.stat-big {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-big .stat-number {
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.stat-big .stat-unit {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-light);
    margin-left: 8px;
    display: inline;
    opacity: 0;
    transition: all 0.8s ease;
}

.stat-big .stat-label {
    font-size: clamp(16px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.why-points {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.why-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.point-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.point-text {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.6);
}

.why-conclusion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-conclusion p {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.why-conclusion .highlight {
    color: var(--primary-light);
}

/* Why 애니메이션 클래스 */
.why-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* stat-number가 애니메이트되면 unit도 같이 보이게 */
.stat-big .stat-number.why-animate ~ .stat-unit {
    opacity: 1;
}
