/* ===== CTA SECTION ===== */
.cta-section {
    padding: 40px 24px;
    background: black;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    margin-bottom: 32px;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    .cta-section {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}