/* =========================================================
   TRISHA WEB
   FACEBOOK ADS — TRUST & ACHIEVEMENTS
========================================================= */

.tw-fbads-whychoose {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 95px 0;
    background-color: #f5f8ff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tw-fbads-whychoose-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #ffffff;
    pointer-events: none;
}

.tw-fbads-whychoose .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.tw-fbads-whychoose-header {
    max-width: 850px;
    margin: 0 auto 52px;
    text-align: center;
}

.tw-fbads-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 8px 16px;
    border: 1px solid rgba(24, 119, 242, .18);
    border-radius: 50px;
    background: rgba(24, 119, 242, .07);
    color: #1877f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.tw-fbads-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    font-size: 13px;
}

.tw-fbads-whychoose-title {
    margin: 0 0 17px;
    color: #102a56;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.tw-fbads-whychoose-description {
    max-width: 760px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   TRUST GRID
========================================================= */

.tw-fbads-trust-grid {
    position: relative;
}

.tw-fbads-trust-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    min-height: 145px;
    padding: 26px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 30px rgba(16, 24, 40, .06);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.tw-fbads-trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 119, 242, .25);
    box-shadow: 0 18px 40px rgba(16, 24, 40, .11);
}

.tw-fbads-trust-icon {
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(24, 119, 242, .10);
    color: #1877f2;
    font-size: 21px;
    transition: all .3s ease;
}

.tw-fbads-trust-card:hover .tw-fbads-trust-icon {
    background: #1877f2;
    color: #ffffff;
    transform: translateY(-2px);
}

.tw-fbads-trust-content {
    flex: 1;
    min-width: 0;
}

.tw-fbads-trust-content h3 {
    margin: 2px 0 9px;
    color: #102a56;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
}

.tw-fbads-trust-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   ACHIEVEMENTS / STATS
========================================================= */

.tw-fbads-achievements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 52px;
    padding-top: 42px;
    border-top: 1px solid rgba(16, 24, 40, .10);
}

.tw-fbads-achievement {
    position: relative;
    padding: 10px 20px;
    text-align: center;
}

.tw-fbads-achievement:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: rgba(16, 24, 40, .12);
}

.tw-fbads-achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: rgba(24, 119, 242, .09);
    color: #1877f2;
    font-size: 19px;
}

.tw-fbads-achievement-number {
    margin-bottom: 4px;
    color: #102a56;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.tw-fbads-achievement-label {
    color: #475467;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tw-fbads-whychoose {
        padding: 80px 0;
    }

    .tw-fbads-whychoose-header {
        margin-bottom: 42px;
    }

    .tw-fbads-achievements {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .tw-fbads-achievement:nth-child(2)::after {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tw-fbads-whychoose {
        padding: 65px 0;
    }

    .tw-fbads-whychoose-header {
        margin-bottom: 34px;
    }

    .tw-fbads-whychoose-title {
        font-size: 32px;
        letter-spacing: -.6px;
    }

    .tw-fbads-whychoose-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .tw-fbads-trust-card {
        min-height: auto;
        padding: 22px;
    }

    .tw-fbads-achievements {
        margin-top: 40px;
        padding-top: 34px;
    }

    .tw-fbads-achievement {
        padding: 10px 8px;
    }

    .tw-fbads-achievement:not(:last-child)::after {
        display: none;
    }

    .tw-fbads-achievement-number {
        font-size: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tw-fbads-whychoose {
        padding: 55px 0;
    }

    .tw-fbads-whychoose-title {
        font-size: 28px;
    }

    .tw-fbads-badge {
        padding: 7px 12px;
        font-size: 10px;
        letter-spacing: .6px;
    }

    .tw-fbads-badge-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .tw-fbads-trust-card {
        gap: 14px;
        padding: 19px;
        border-radius: 17px;
    }

    .tw-fbads-trust-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 13px;
        font-size: 18px;
    }

    .tw-fbads-trust-content h3 {
        font-size: 16px;
    }

    .tw-fbads-trust-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .tw-fbads-achievement-number {
        font-size: 22px;
    }

    .tw-fbads-achievement-label {
        font-size: 12px;
    }
}