.services {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
}

.services__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.services__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-white-45);
    pointer-events: none;
    z-index: 2;
}

.services__inner {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    z-index: 3;
}

.services__title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 64px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.services__card--center-left {
    grid-column: 1 / 2;
    justify-self: end;
}

.services__card--center-right {
    grid-column: 2 / 3;
    justify-self: start;
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__card--center-left,
    .services__card--center-right {
        grid-column: auto;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.services__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 12px 30px var(--color-shadow-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--color-shadow-strong);
}

.services__card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.services__card-desc {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 18px;
}

.services__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services__card-item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
}

.services__card-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-light);
    font-weight: 700;
}