/* ==========================================================================
   WHY CHOOSE US - ENTERPRISE MODERN STYLING
   ========================================================================== */

/* Hero Banner */
.why-hero-sec {
    position: relative;
    padding-top: 145px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.why-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111, 179, 73, 0.12);
    color: #4d8b2c;
    border: 1px solid rgba(111, 179, 73, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-hero-title {
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
}

.why-hero-lead {
    font-size: clamp(15px, 1.6vw, 18px) !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    max-width: 820px;
    margin: 0 auto;
}

/* 4 Floating Micro KPIs */
.why-kpi-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.why-kpi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.why-kpi-card:hover {
    transform: translateY(-4px);
    border-color: #6fb349;
    box-shadow: 0 15px 30px -10px rgba(111, 179, 73, 0.25);
}

.why-kpi-val {
    font-size: 28px;
    font-weight: 900;
    color: #6fb349;
    line-height: 1.1;
    margin-bottom: 4px;
}

.why-kpi-lbl {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Strategic Advantages Grid */
.advantage-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6fb349, #86cb5e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card-modern:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
}

.advantage-card-modern:hover::before {
    opacity: 1;
}

.advantage-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(111, 179, 73, 0.1);
    color: #6fb349;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.advantage-card-modern:hover .advantage-icon-bubble {
    background: linear-gradient(135deg, #6fb349 0%, #86cb5e 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.advantage-card-modern h4 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.advantage-card-modern p {
    font-size: 14.5px;
    line-height: 24px;
    color: #64748b;
    margin-bottom: 16px;
    flex: 1;
}

.advantage-pill-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Feature Showcase Split Section */
.why-feature-split {
    padding: 90px 0;
    background: #ffffff;
}

.why-feature-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.2);
    border: 1px solid #e2e8f0;
}

.why-feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
}

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-check-list li i {
    color: #6fb349;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-check-list .feature-item-text {
    font-size: 15px;
    line-height: 24px;
    color: #475569;
    flex: 1;
}

.feature-check-list .feature-item-text strong {
    color: #0f172a;
    font-weight: 800;
    margin-right: 4px;
}

/* Comparison Matrix Card */
.comparison-sec {
    background: #0f172a;
    color: #ffffff;
    padding: 90px 0;
    position: relative;
}

.comparison-matrix-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    color: #e2e8f0;
}

.comparison-table thead th {
    padding: 20px 24px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #334155;
}

.comparison-table thead th.iec-col {
    background: rgba(111, 179, 73, 0.15);
    color: #86cb5e;
    border-left: 2px solid #6fb349;
    border-right: 2px solid #6fb349;
}

.comparison-table tbody td {
    padding: 18px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody td.iec-col {
    background: rgba(111, 179, 73, 0.08);
    color: #ffffff;
    font-weight: 700;
    border-left: 2px solid #6fb349;
    border-right: 2px solid #6fb349;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* 4-Stage Delivery Process Timeline */
.process-sec {
    padding: 90px 0;
    background: #f8fafc;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
    border-color: #6fb349;
    box-shadow: 0 15px 35px -10px rgba(111, 179, 73, 0.2);
}

.process-step-num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(111, 179, 73, 0.25);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 22px;
    margin: 0;
}

.award-badge-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-badge-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12) !important;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .why-hero-sec { padding-top: 25px !important; padding-bottom: 40px !important; }
    .why-kpi-bar { grid-template-columns: repeat(2, 1fr); }
    .why-feature-split { padding: 60px 0; }
    .comparison-sec { padding: 60px 0; }
    .process-sec { padding: 60px 0; }
}

@media (max-width: 576px) {
    .why-hero-sec { padding-top: 20px !important; padding-bottom: 30px !important; }
    .why-kpi-bar { grid-template-columns: 1fr; }
    .comparison-table thead th, .comparison-table tbody td { padding: 12px 14px; font-size: 12.5px; }
}