/* =============================================================
   COMMERCIAL PAGE — Scoped page styles
   Only loaded on commercial.php
   ============================================================= */

/* ── Story stats area — spacing & custom label size ── */
.commercial-stats-wrap {
    margin-top: 2rem;
}

.commercial-stat-label {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ── CTA button wrap — top spacing ── */
.commercial-cta-wrap {
    margin-top: 2.5rem;
}

/* ── Process section background override ── */
.commercial-process-section {
    background: var(--accent-color);
}

/* ── Process step cards — 2×2 grid layout ── */
.commercial-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.commercial-process-step {
    text-align: left;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.commercial-process-step-icon {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}

/* ── Checklist spacing inside commercial steps ── */
.commercial-checklist {
    margin-bottom: 0;
    margin-top: 1rem;
}

/* ── Lord-icon step sizing ── */
.lordicon-step {
    width: 36px;
    height: 36px;
}

/* ── Responsive: single column on mobile ── */
@media (max-width: 768px) {
    .commercial-process-steps {
        grid-template-columns: 1fr;
    }
}
