.services-page {
    padding: 150px 6% 80px;
    color: #fff;
}

.services-inner {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.services-heading {
    max-width: 850px;
    margin-bottom: 4rem;
}

.services-heading h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.services-heading > p {
    max-width: 680px;
    color: rgba(255,255,255,0.75);
    font-size: 1.08rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid rgba(0,255,200,0.16);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.4rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #010106;
    background: linear-gradient(135deg, #00ffc8, #4d7cff);
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(0,255,200,0.18);
}

.service-card h2 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.service-card p {
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.service-card ul {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: rgba(255,255,255,0.76);
    line-height: 1.5;
}

.service-card li::before {
    content: "✦";
    margin-right: 0.65rem;
    color: #00ffc8;
}

.services-cta {
    padding: 20px 6% 110px;
    color: #fff;
}

.services-cta-box {
    width: min(100%, 950px);
    max-width: 85%;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(0,255,200,0.18);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.services-cta-box h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.services-cta-box p {
    max-width: 650px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

@media (max-width: 950px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-heading {
        text-align: center;
        margin-inline: auto;
    }

    .services-heading > p {
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    .services-page {
        padding: 125px 6% 70px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-cta-box {
        padding: 3rem 1.5rem;
    }

    .services-cta-box .btn {
        width: 100%;
        max-width: 90%;
    }
}