/* === Sekcja: CTA === */
.cta-section {
    background-color: #fff; /* czyste białe tło */
    color: var(--brand-dark);
    text-align: center;
}

/* Nagłówek */
.cta-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Akapit */
.cta-section p {
    color: rgba(18, 39, 56, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Przycisk brandowy */
.btn-brand-primary {
    background-color: var(--brand-primary);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-brand-primary:hover {
    background-color: #0f5b28;
    transform: translateY(-1px);
}

/* Przycisk obrysowany (outline) */
.btn-outline-brand {
    color: var(--brand-primary) !important;
    border: 2px solid var(--brand-primary);
    background-color: transparent;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-outline-brand:hover {
    background-color: var(--brand-primary);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Responsywność */
@media (max-width: 767.98px) {
    .cta-section h3 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .btn-brand-primary,
    .btn-outline-brand {
        width: 100%;
    }
}
