/* CTA Banner — cta */
.cta-wrap {
    background-color: var(--primary, #3b82f6);
    border-radius: 20px;
    padding: 80px 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    /* align-items and max-width are injected by Elementor controls at runtime */
    gap: 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0 0 16px;
}
.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 20px;
    white-space: pre-line;
}
.cta-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 36px;
    max-width: 540px;
}
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: #ffffff;
    color: var(--primary, #3b82f6);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.cta-btn-primary:hover { transform: translateY(-2px); }
.cta-btn-primary i, .cta-btn-primary svg { width: 14px; height: 14px; }

.cta-btn-secondary {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}
.cta-btn-secondary:hover { color: #fff; }

@media (max-width: 767px) {
    .cta-wrap { padding: 56px 24px; }
    .cta-buttons { flex-direction: column; align-items: stretch; text-align: center; }
}