/* =========================================
   COMMERCIAL PAGE
========================================= */

.commercial-hero {
    padding: 70px 0;
}

.commercial-hero .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.commercial-hero .badge {
    display: inline-block;
    background: #e6fffb;
    color: #0f766e;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 15px;
}

.commercial-hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

/*.commercial-hero p {
    color: #64748b;
    margin-bottom: 20px;
}*/

.commercial-hero .hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: none !important;
}

/* =========================
   SERVICES
========================= */

.commercial-services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* reuse your existing grid/cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* =========================
   STEPS
========================= */

.commercial-process {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {

    .commercial-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .commercial-hero h1 {
        font-size: 2.1rem;
    }
}