/* ================================================================
   NGP Why Clients Choose Us Widget — why-choose.css
   Exact port of client-provided design
   ================================================================ */

.ngp-wcu-wrap {
    --wcu-bg:       #ffffff;
    --wcu-text:     #071022;
    --wcu-muted:    #5a6573;
    --wcu-line:     #d9dde3;
    --wcu-accent:   #6b63ff;
    --wcu-green:    #5fd08a;
    --wcu-red:      #ee7171;
    --wcu-card:     #fbfbfb;
    --wcu-shadow:   0 16px 34px rgba(0,0,0,.10);
    --wcu-card-w:   126px;
    --wcu-other-w:  120px;
    --wcu-cross-w:  88px;
    --wcu-logo-h:   72px;
    --wcu-row-h:    120px;
    --wcu-card-r:   148px;
    box-sizing: border-box;
    width: 100%;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--wcu-text);
    -webkit-font-smoothing: antialiased;
    background: var(--wcu-bg);
}
.ngp-wcu-wrap *, .ngp-wcu-wrap *::before, .ngp-wcu-wrap *::after { box-sizing: border-box; }

/* ── Eyebrow ── */
.ngp-wcu-eyebrow {
    margin: 0 0 8px;
    text-align: center;
    color: var(--wcu-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

/* ── Title ── */
.ngp-wcu-title {
    margin: 0 0 54px;
    text-align: center;
    font-family: 'Belleza', Georgia, serif;
    font-weight: 400;
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 1.02;
    color: #030b1b;
}

/* ── Compare wrapper ── */
.ngp-wcu-compare {
    position: relative;
    padding-top: 30px;
    padding-bottom: 8px;
}

/* ── "Other Providers" label ── */
.ngp-wcu-other-label {
    position: absolute;
    right: 0;
    top: -25px;
    width: var(--wcu-other-w);
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 1.6px;
    font-weight: 800;
    text-transform: uppercase;
    color: #031128;
    z-index: 4;
}
.ngp-wcu-other-mobile { display: none; }

/* ── Floating card ── */
.ngp-wcu-card {
    position: absolute;
    top: -42px;
    right: var(--wcu-card-r);
    width: var(--wcu-card-w);
    background: var(--wcu-card);
    border-radius: 10px;
    box-shadow: var(--wcu-shadow);
    overflow: hidden;
    z-index: 3;
}
.ngp-wcu-card-inner {
    display: grid;
    align-items: center;
    justify-items: center;
    padding-bottom: 40px;
}

/* ── Logo slot inside card ── */
.ngp-wcu-logo-slot {
    width: 70%;
    display: grid;
    align-content: center;
    padding-top: 20px;
    padding-right: 20px;
    height: var(--wcu-logo-h);
}
.ngp-wcu-logo-slot img {
    max-width: 84px;
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ── Tick slots inside card ── */
.ngp-wcu-tick-slot {
    width: 100%;
    height: var(--wcu-row-h);
    display: grid;
    place-items: center;
}

/* ── Feature rows ── */
.ngp-wcu-rows { position: relative; z-index: 1; }

.ngp-wcu-row {
    height: var(--wcu-row-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wcu-line);
}

/* ── Left text column ── */
.ngp-wcu-left {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
    /* subtract card width + cross width + right gutter from total */
    max-width: calc(100% - var(--wcu-card-w) - var(--wcu-cross-w) - 190px);
}

.ngp-wcu-feature-title {
    margin: 0 0 8px;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #031128;
}

.ngp-wcu-feature-sub {
    margin: 0;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.35;
    color: var(--wcu-muted);
    font-weight: 400;
}

/* ── Cross column (Other Providers column) ── */
.ngp-wcu-cross-col {
    width: var(--wcu-cross-w);
    margin-right: 12px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ── Icons ── */
.ngp-wcu-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    user-select: none;
    flex-shrink: 0;
}
.ngp-wcu-icon.check { background: var(--wcu-green); }
.ngp-wcu-icon.cross { background: var(--wcu-red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .ngp-wcu-wrap {
        --wcu-card-w:  114px;
        --wcu-other-w: 102px;
        --wcu-cross-w: 78px;
        --wcu-logo-h:  66px;
        --wcu-row-h:   112px;
        --wcu-card-r:  122px;
    }
    .ngp-wcu-left { max-width: calc(100% - var(--wcu-card-w) - var(--wcu-cross-w) - 150px); }
}

@media (max-width: 767px) {
    .ngp-wcu-wrap {
        --wcu-card-w:  92px;
        --wcu-other-w: 64px;
        --wcu-cross-w: 58px;
        --wcu-logo-h:  55px;
        --wcu-row-h:   120px;
        --wcu-card-r:  58px;
    }
    .ngp-wcu-title  { margin-bottom: 34px; }
    .ngp-wcu-compare {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .ngp-wcu-card { top: -15px; }
    .ngp-wcu-other-label {
        top: 17px;
        width: var(--wcu-other-w);
        right: -5px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    .ngp-wcu-other-desktop { display: none; }
    .ngp-wcu-other-mobile  { display: inline; }
    .ngp-wcu-logo-slot img { max-width: 60px; max-height: 28px; }
    .ngp-wcu-left {
        max-width: calc(100% - var(--wcu-card-w) - var(--wcu-cross-w) - 10px);
        padding-right: 10px;
    }
    .ngp-wcu-feature-title { font-size: 12px; letter-spacing: 1.2px; margin-bottom: 6px; margin-top: 18px; }
    .ngp-wcu-feature-sub   { font-size: 11px; line-height: 1.3; }
    .ngp-wcu-icon { width: 28px; height: 28px; font-size: 18px; }
    .ngp-wcu-cross-col { margin-right: 0; }
}
