/* ============================================================
   WHY CHOOSE LPU — Complete CSS
   ============================================================ */

.why-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.why-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 20s ease-in-out infinite;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HEADER
   ============================================================ */
.why-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    animation: pulseBadge 2.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.why-badge i {
    font-size: 14px;
}

.why-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 12px;
    line-height: 1.2;
}

.why-title span {
    background: linear-gradient(135deg, #F97316, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.why-divider span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
    border-radius: 999px;
}

.why-divider i {
    font-size: 18px;
    color: #F97316;
    animation: iconSpin 6s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   CONTENT
   ============================================================ */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ============================================================
   LEFT: TEXT
   ============================================================ */
.why-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-description {
    font-size: 15px;
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

.why-description strong {
    color: #1E293B;
    font-weight: 700;
}

.why-description strong:not(.why-description .why-text strong) {
    color: #F97316;
}

/* Stats */
.why-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    margin-top: 8px;
    flex-wrap: wrap;
}

.why-stat {
    display: flex;
    flex-direction: column;
}

.why-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #F97316;
    line-height: 1.1;
}

.why-stat-number sup {
    font-size: 14px;
    top: -8px;
}

.why-stat-label {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

.why-stat-divider {
    width: 1px;
    height: 32px;
    background: #E2E8F0;
}

/* Actions */
.why-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.why-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #F97316, #EA580C);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.why-btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.why-btn-primary:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.why-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(249, 115, 22, 0.45);
}

.why-btn-primary i:last-child {
    transition: all 0.3s ease;
}

.why-btn-primary:hover i:last-child {
    transform: translateX(6px);
}

.why-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    background: #FFFFFF;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #F1F5F9;
}

.why-btn-secondary:hover {
    border-color: #F97316;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.08);
}

.why-btn-secondary i {
    color: #F97316;
    transition: all 0.3s ease;
}

.why-btn-secondary:hover i {
    transform: translateX(-4px) rotate(-10deg);
}

/* ============================================================
   RIGHT: FEATURES GRID
   ============================================================ */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-feature {
    background: #FFFFFF;
    padding: 20px 18px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.why-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #EA580C);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.15);
}

.why-feature:hover::before {
    opacity: 1;
}

.why-feature:hover .why-feature-icon {
    background: rgba(249, 115, 22, 0.15);
    transform: scale(1.05) rotate(-5deg);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-feature-icon i {
    font-size: 20px;
    color: #F97316;
}

.why-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.why-feature-desc {
    font-size: 12px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .why-section {
        padding: 60px 0;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .why-section {
        padding: 48px 0;
    }
    
    .why-container {
        padding: 0 16px;
    }
    
    .why-header {
        margin-bottom: 32px;
    }
    
    .why-title {
        font-size: 28px;
    }
    
    .why-description {
        font-size: 14px;
    }
    
    .why-stats {
        gap: 16px;
        padding: 16px 20px;
        justify-content: center;
    }
    
    .why-stat-number {
        font-size: 20px;
    }
    
    .why-stat-label {
        font-size: 11px;
    }
    
    .why-stat-divider {
        height: 28px;
    }
    
    .why-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .why-btn-primary,
    .why-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .why-feature {
        padding: 16px 14px;
    }
    
    .why-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .why-feature-icon i {
        font-size: 16px;
    }
    
    .why-feature-title {
        font-size: 13px;
    }
    
    .why-feature-desc {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .why-section {
        padding: 40px 0;
    }
    
    .why-title {
        font-size: 24px;
    }
    
    .why-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .why-badge i {
        font-size: 12px;
    }
    
    .why-divider {
        max-width: 150px;
    }
    
    .why-divider i {
        font-size: 14px;
    }
    
    .why-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .why-stat-divider {
        display: none;
    }
    
    .why-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .why-feature {
        padding: 14px 10px;
        border-radius: 12px;
    }
    
    .why-feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .why-feature-icon i {
        font-size: 14px;
    }
    
    .why-feature-title {
        font-size: 12px;
    }
    
    .why-feature-desc {
        font-size: 10px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .why-feature:hover {
        transform: none !important;
    }
    
    .why-feature:hover .why-feature-icon {
        transform: none !important;
    }
    
    .why-btn-primary:hover {
        transform: none !important;
    }
    
    .why-btn-secondary:hover {
        transform: none !important;
    }
}