.cta-section {
    background-color: var(--bg-secondary);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efekt Parallax */
    text-align: center;
    padding: clamp(80px, 10vw, 120px) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section > .container > p {
    max-width: 600px;
    margin: 0 auto 15px;
    font-size: 16px;
    color: var(--text-main);
}

.cta-section .cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-section {
        background-attachment: scroll; /* Wyłączenie parallax na mobile dla wydajności */
    }
}