/* === Sekcja: Dlaczego warto wybrać nasz system === */
.features-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Nagłówek sekcji */
.features-section h2 {
    font-size: 2rem;
    color: var(--brand-dark);
}

/* Pojedyncze boxy */
.feature-box {
    background-color: #fff;
    border: 1px solid rgba(18, 39, 56, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(17, 102, 45, 0.25);
}

/* Ikony */
.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 102, 45, 0.08);
    color: var(--brand-primary);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: var(--brand-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Tytuły i opisy w boxach */
.feature-box h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA pod boxami */
.features-section .btn-brand-primary {
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
}

.features-section .text-muted small {
    color: rgba(18, 39, 56, 0.7) !important;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .features-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0.75rem;
    }

    .feature-box h5 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    .features-section .btn-brand-primary {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1.05rem;
    }

    .features-section .text-muted small {
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
}
