/* === Sekcja: Rozwiązujemy problemy === */
.problems-section {
    background-color: var(--brand-dark);
}

.problems-section h2 {
    color: #fff;
    font-size: 1.75rem;
}

/* Pojedynczy box */
.problem-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.problem-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--brand-primary);
}

/* Ikony */
.problem-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(17, 102, 45, 0.15);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.problem-box:hover .problem-icon {
    background-color: var(--brand-primary);
    color: #fff;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .problem-box {
        padding: 1.5rem;
    }

    .problems-section h2 {
        font-size: 1.5rem;
    }
}

/* CTA pod krokami */
.problems-section .btn-brand-primary,
.problems-section .btn-outline-brand {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
}
