/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-features {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-headline h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.3;
}

.cta-bullets {
    margin-bottom: 3rem;
}

.cta-bullets ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.cta-bullets li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #ffce00;
    font-size: 1.2rem;
}

.cta-action {
    text-align: center;
}

/* ===== RESPONSIVE CTA ===== */
@media (max-width: 1024px) {
    .cta-bullets ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-bullets ul {
        grid-template-columns: 1fr;
    }

    .cta-headline h2 {
        font-size: 1.8rem;
    }
}