/* =============================================================
   pxl-cta-banner-horner — Blue CTA Banner + Why We Are Best
   ============================================================= */

.bha-cta-banner {
    width: 100%;
}

/* ── Top: blue heading block ── */
.bha-cta-banner__top {
    background: #486ee2;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
}

/* Subtle blob decoration */
.bha-cta-banner__blob {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.bha-cta-banner__top-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.bha-cta-banner__heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    max-width: 700px;
    letter-spacing: -0.3px;
}

.bha-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.bha-cta-banner__btn:hover {
    background: #0d0d1e;
    color: #ffffff;
}

/* ── Bottom: Why We Are Best ── */
.bha-cta-banner__why {
    background: #3a5cd4;
    padding: 52px 20px;
}

.bha-cta-banner__why-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
}

/* Left: label + heading */
.bha-cta-banner__why-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
}

.bha-cta-banner__why-heading {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Right: features grid */
.bha-cta-banner__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bha-cta-banner__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
}

/* Checkmark circle */
.bha-cta-banner__check {
    flex-shrink: 0;
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 11px;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
    .bha-cta-banner__why-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bha-cta-banner__heading {
        font-size: 30px;
    }
}

/* ── Responsive: mobile ── */
@media (max-width: 600px) {
    .bha-cta-banner__top {
        padding: 56px 20px;
    }

    .bha-cta-banner__heading {
        font-size: 26px;
    }

    .bha-cta-banner__features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bha-cta-banner__why-heading {
        font-size: 20px;
    }
}
