/* =========================================
   WHY CHOOSE FACEBOOK ADS
========================================= */

.tw-fbads-whychoose {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0;
    background-color: #f7f9fc;
    background-repeat: no-repeat;
    background-size: cover;
}

.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 55px;
    text-align: center;
}

.tw-fbads-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(24, 119, 242, .18);
    border-radius: 50px;
    background: rgba(24, 119, 242, .07);
    color: #1877f2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.tw-fbads-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #1877f2;
    color: #fff;
    font-size: 13px;
}

.tw-fbads-whychoose-title {
    margin: 0 0 18px;
    color: #101828;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

.tw-fbads-whychoose-description {
    max-width: 760px;
    margin: 0 auto;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================
   TRUST CARDS
========================================= */

.tw-fbads-trust-grid {
    position: relative;
}

.tw-fbads-trust-card {
    position: relative;
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 28px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 35px rgba(16, 24, 40, .07);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.tw-fbads-trust-card:hover {
    transform: translateY(-7px);
    border-color: rgba(24, 119, 242, .25);
    box-shadow: 0 20px 45px rgba(16, 24, 40, .12);
}

.tw-fbads-trust-icon {
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(24, 119, 242, .10);
    color: #1877f2;
    font-size: 22px;
    transition: .3s ease;
}

.tw-fbads-trust-card:hover .tw-fbads-trust-icon {
    background: #1877f2;
    color: #fff;
    transform: rotate(-5deg);
}

.tw-fbads-trust-content {
    flex: 1;
}

.tw-fbads-trust-content h3 {
    margin: 2px 0 9px;
    color: #101828;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.tw-fbads-trust-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   ACHIEVEMENTS
========================================= */

.tw-fbads-achievements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 55px;
    padding-top: 45px;
    border-top: 1px solid rgba(16, 24, 40, .10);
}

.tw-fbads-achievement {
    position: relative;
    padding: 15px 20px;
    text-align: center;
}

.tw-fbads-achievement:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: rgba(16, 24, 40, .10);
}

.tw-fbads-achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 13px;
    border-radius: 14px;
    background: rgba(24, 119, 242, .09);
    color: #1877f2;
    font-size: 19px;
}

.tw-fbads-achievement-number {
    margin-bottom: 4px;
    color: #101828;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.tw-fbads-achievement-label {
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tw-fbads-whychoose {
        padding: 80px 0;
    }

    .tw-fbads-whychoose-header {
        margin-bottom: 45px;
    }

    .tw-fbads-achievements {
        grid-template-columns: repeat(2, 1fr);
    }

    .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: 35px;
    }

    .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 {
        padding: 22px;
    }

    .tw-fbads-achievements {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 40px;
        padding-top: 35px;
    }

    .tw-fbads-achievement {
        padding: 12px 8px;
    }

    .tw-fbads-achievement-number {
        font-size: 25px;
    }

    .tw-fbads-achievement:not(:last-child)::after {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .tw-fbads-whychoose-title {
        font-size: 28px;
    }

    .tw-fbads-badge {
        font-size: 11px;
        padding: 7px 12px;
    }

    .tw-fbads-trust-card {
        gap: 15px;
        padding: 20px;
    }

    .tw-fbads-trust-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .tw-fbads-trust-content h3 {
        font-size: 17px;
    }

    .tw-fbads-trust-content p {
        font-size: 13px;
    }

    .tw-fbads-achievement-number {
        font-size: 22px;
    }

    .tw-fbads-achievement-label {
        font-size: 12px;
    }

}