/* ========================================
   WHY BUILDFRAME SECTION
======================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

/* ========================================
   WHY CARD
======================================== */

.why-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.95rem;
}


/* ========================================
   SECTION ACCENT SUPPORT
======================================== */

.section-accent .why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 154, 108, 0.25);
}

.section-accent .why-card p {
    color: #e2e8f0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}