.services-page {
    background: #111;
}

.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 6% 85px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.94),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/hero.jpg") center / cover no-repeat;
}

.services-hero-content {
    max-width: 780px;
}

.page-label,
.section-label {
    margin-bottom: 14px;
    color: #d62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-hero h2 {
    margin-bottom: 22px;
    font-size: clamp(46px, 7vw, 78px);
    line-height: 1;
}

.services-hero p:last-child {
    max-width: 680px;
    color: #d0d0d0;
    font-size: 20px;
    line-height: 1.7;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 5vw, 56px);
}

.section-heading > p:last-child {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.7;
}

/* Service cards */

.services-list {
    padding: 115px 6%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 1250px;
    margin: 0 auto;
}

.service-detail-card {
    padding: 38px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.65);
    background:
        linear-gradient(
            145deg,
            rgba(214, 40, 40, 0.09),
            rgba(255, 255, 255, 0.02)
        );
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.service-card-top span {
    color: rgba(255, 255, 255, 0.18);
    font-size: 34px;
    font-weight: 700;
}

.service-card-top h3 {
    font-size: 27px;
}

.service-detail-card > p {
    margin-bottom: 24px;
    color: #bdbdbd;
    line-height: 1.75;
}

.service-detail-card ul {
    margin: 0 0 30px 20px;
    color: #d0d0d0;
    line-height: 1.9;
}

.service-detail-card li::marker {
    color: #d62828;
}

.service-detail-card a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.service-detail-card a:hover {
    color: #ef4444;
}

/* Process */

.services-process {
    padding: 110px 6%;
    background: #181818;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1250px;
    margin: 0 auto;
}

.process-grid article {
    padding: 32px;
    background: rgba(255, 255, 255, 0.025);
    border-top: 2px solid #d62828;
}

.process-grid span {
    display: block;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 34px;
    font-weight: 700;
}

.process-grid h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.process-grid p {
    color: #aaa;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-hero,
    .services-list,
    .services-process {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-detail-card {
        padding: 28px 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}