/* Prabha Why Choose Us - pixel-perfect from Figma */
.prabha-why-choose-us {
    --wcu-container-width: 1280px;
    --wcu-primary: #2e6fe6;
    --wcu-cyan: #19b6d8;
    --wcu-heading: #2a3441;
    --wcu-body: #64748b;
    --wcu-stat-text: #475569;
    --wcu-card-bg: #f8fafc;
    --wcu-border: #e2e8f0;

    background: #fff;
    padding: 120px 0;
    font-family: "Inter", sans-serif;
    color: var(--wcu-body);
    box-sizing: border-box;
}

.prabha-why-choose-us *,
.prabha-why-choose-us *::before,
.prabha-why-choose-us *::after {
    box-sizing: border-box;
}

.prabha-wcu-inner {
    max-width: var(--wcu-container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* ---------- Stats bar ---------- */
.prabha-wcu-stats {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 46px 50px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(168deg, #eaf2ff 16.667%, #e3f9ff 83.333%);
}

.prabha-wcu-stats-blob {
    position: absolute;
    left: 78%;
    top: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(46, 111, 230, 0.07);
    pointer-events: none;
}

.prabha-wcu-stat {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.prabha-wcu-stat-value {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: -2px;
    color: var(--wcu-primary);
    white-space: nowrap;
}

.prabha-wcu-stat-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--wcu-stat-text);
}

.prabha-wcu-stat-sub {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--wcu-stat-text);
}

.prabha-wcu-stat-divider {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 1px;
    height: 88px;
    background: var(--wcu-border);
}

/* ---------- Heading ---------- */
.prabha-wcu-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.prabha-wcu-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prabha-wcu-label-line {
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--wcu-primary) 0%, var(--wcu-cyan) 100%);
}

.prabha-wcu-label-text {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wcu-primary);
    white-space: nowrap;
}

.prabha-why-choose-us h2.prabha-wcu-heading {
    margin: 0;
    max-width: 700px;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 46px;
    letter-spacing: -1px;
    text-align: center;
    color: var(--wcu-heading) !important;
}

/* ---------- Cards ---------- */
.prabha-wcu-cards {
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.prabha-wcu-card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--wcu-card-bg);
    border: 1px solid var(--wcu-border);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.prabha-wcu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(42, 52, 65, 0.08);
    border-color: rgba(46, 111, 230, 0.35);
}

.prabha-wcu-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(46, 111, 230, 0.12);
    font-size: 26px;
    line-height: 1;
    color: var(--wcu-primary);
}

.prabha-wcu-card-icon i {
    font-size: 24px;
    line-height: 1;
}

.prabha-why-choose-us h3.prabha-wcu-card-title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: var(--wcu-heading) !important;
}

.prabha-wcu-card-desc {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--wcu-body);
}

/* ---------- Responsive ---------- */
@media (max-width: 1399px) {
    .prabha-wcu-cards {
        flex-wrap: wrap;
    }
    .prabha-wcu-card {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 991px) {
    .prabha-why-choose-us {
        padding: 100px 0;
    }
    .prabha-wcu-inner {
        gap: 56px;
    }
    .prabha-wcu-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px 24px;
        padding: 40px;
    }
    .prabha-wcu-stat {
        flex: 1 1 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    .prabha-wcu-stat-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .prabha-why-choose-us {
        padding: 80px 0;
    }
    .prabha-wcu-inner {
        padding: 0 16px;
        gap: 48px;
    }
    .prabha-wcu-stats {
        padding: 32px 24px;
    }
    .prabha-wcu-stat-value {
        font-size: 40px;
        line-height: 44px;
    }
    .prabha-wcu-heading {
        font-size: 30px;
        line-height: 38px;
    }
    .prabha-wcu-card {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 479px) {
    .prabha-wcu-stat {
        flex: 1 1 100%;
        min-width: 100%;
        align-items: center;
        text-align: center;
    }
    .prabha-wcu-stats {
        gap: 24px;
    }
    .prabha-wcu-heading {
        font-size: 26px;
        line-height: 34px;
    }
}
