/* ─── CTA BANNER ─────────────────────────────────────────────────────────────*/
.ch-cta {
    background: var(--color-bg-soft);
    padding: clamp(48px, 6vw, 72px) 0;
}

.ch-cta__card {
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-lg);
    padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--color-primary);
}

.ch-cta__card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.04;
    border-radius: 50%;
    pointer-events: none;
}

.ch-cta__card::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: 50%;
    pointer-events: none;
}

.ch-cta__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ch-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.ch-cta__title span {
    color: var(--color-primary);
}

.ch-cta__subtext {
    font-size: 15px;
    color: rgba(248,250,252,0.6);
    font-family: var(--font-body);
    margin: 0;
}

.ch-cta__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ch-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.ch-cta__phone i {
    color: var(--color-primary);
    font-size: 16px;
}

.ch-cta__phone:hover {
    color: var(--color-primary);
}


/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media ( max-width: 768px ) {
    .ch-cta__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .ch-cta__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .ch-cta__actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}