/* =========================
   SERVICES (NEW LAYOUT)
   Only affects .services section
========================= */

.services {
    position: relative;
    padding: 86px 0 90px;
    background: #ffffff;
}

.services-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.services-head {
    text-align: center;
    margin-bottom: 34px;
}

.services-kicker {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 18px;
    color: #e51b27;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.05;
    color: #0b0b0b;
    margin: 0;
}

/* checklist line under title (like reference layout) */
.services-checks {
    margin-top: 14px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1b1b1b;
}

.services-check-ico {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid #e51b27;
    color: #e51b27;
    line-height: 1;
    font-weight: 900;
    font-size: 14px;
}

/* ✅ GRID: 6 cols desktop -> 3 items on first row (each spans 2 cols)
   last 2 items -> span 3 cols each -> 2 items on second row */
.services-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 44px 34px;
    align-items: start;
}

/* SERVICE ITEM */
.svc-item {
    text-align: center;
    grid-column: span 2;
    /* ✅ 3 items per row */
}

/* ✅ last 2 items become bigger and fill row 2 as 2 items */
.services-grid>.svc-item:nth-child(n + 4) {
    grid-column: span 3;
    /* ✅ 2 items on second row */
}

.svc-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: #e51b27;
}

.svc-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

.svc-title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0b0b0b;
    margin: 0 0 12px;
}

.svc-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.svc-points li {
    position: relative;
    padding-left: 16px;
    text-align: left;

    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: #2a2a2a;
}

.svc-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #e51b27;
    font-weight: 900;
}

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

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    /* reset spans for tablet */
    .svc-item,
    .services-grid>.svc-item:nth-child(n + 4) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 62px 0 70px;
    }

    .services-inner {
        width: min(1200px, calc(100% - 28px));
    }

    .services-title {
        font-size: 38px;
    }

    .services-check {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 30px;
    }

    /* reset spans for mobile */
    .svc-item,
    .services-grid>.svc-item:nth-child(n + 4) {
        grid-column: auto;
    }

    .svc-icon {
        margin-bottom: 10px;
    }

    .svc-title {
        font-size: 17px;
    }

    .svc-points li {
        font-size: 15px;
    }
}