/* ── CTA Component ──────────────────────────────────────────────────────────── */

.cta {
    padding-block: clamp(3.5rem, 8vw, 6rem);
    background: var(--color-surface);
}

.cta__inner {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, var(--color-secondary)));
    border-radius: var(--radius-md);
    padding: clamp(2.5rem, 6vw, 4rem);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Background shapes */
.cta__bg-shapes { pointer-events: none; }

.cta__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta__shape--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta__shape--2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 10%;
}

/* Content */
.cta__content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 260px;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.625rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    max-width: 52ch;
}

/* CTA Button */
.btn--cta {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--color-primary);
    border: none;
    flex-shrink: 0;
    font-size: 0.9375rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--cta:hover {
    background: #fff;
    filter: brightness(0.97);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
