/* =========================
   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: #06a4f6;
    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 #06a4f6;
    color: #06a4f6;
    line-height: 1;
    font-weight: 900;
    font-size: 14px;
}

.services-grid {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px 34px;
    align-items: start;
}

.svc-item {
    text-align: center;
    width: calc((100% - 68px) / 3);
}

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

.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 16px;
    padding-bottom: 12px;
    position: relative;
}

.svc-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #06a4f6;
    border-radius: 2px;
}

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

.svc-points li {
    position: relative;
    padding-left: 0;
    text-align: center;

    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 {
    display: none;
}

.services-btn-wrap {
    text-align: center;
    margin-top: 42px;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    background: #06a4f6;
    color: #fff;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(6, 164, 246, 0.3);
}

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

@media (max-width: 1100px) {
    .services-grid {
        gap: 34px 28px;
    }

    .svc-item {
        width: calc((100% - 28px) / 2);
    }
}

@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 {
        gap: 26px;
        margin-top: 30px;
    }

    .svc-item {
        width: 100%;
    }

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

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

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