.services-section {
    background: #d8d8d8;
    padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(2.6rem, 6vw, 4.8rem);
}

.services-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.4rem);
    display: grid;
    grid-template-columns: minmax(240px, 430px) 1fr;
    align-items: center;
    gap: clamp(1.2rem, 4vw, 3rem);
}

.services-copy {
    color: #16300f;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.4rem;
    min-height: 2.35rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: #58e71f;
    color: #10270d;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
}

.services-title {
    margin: 2.15rem 0 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.services-list {
    display: grid;
    gap: 0.45rem;
}

.services-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #1d3c12;
    font-size: clamp(1rem, 1.45vw, 1.55rem);
    line-height: 1.1;
    padding: 0.3rem 0.15rem 0.65rem 0;
    border-bottom: 2px solid rgba(29, 60, 18, 0.75);
    transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.services-item i {
    font-size: 0.9em;
    line-height: 1;
}

.services-item:hover {
    color: #0c2208;
    transform: translateX(3px);
    border-color: #0c2208;
}

.services-cards {
    display: grid;
    place-items: center;
    min-height: clamp(250px, 30vw, 420px);
    perspective: 900px;
}

.services-cards__inner {
    position: relative;
    width: min(100%, 520px);
    height: clamp(220px, 28vw, 360px);
    transform-style: preserve-3d;
}

.services-card {
    position: absolute;
    width: clamp(160px, 20vw, 250px);
    height: clamp(220px, 28vw, 340px);
    border-radius: 18px;
    background: #b5b5b5;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 12px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.18s ease;
}

.services-card--back {
    left: 26%;
    top: 2%;
    background: #acacac;
    transform: rotate(-3deg);
}

.services-card--front {
    left: 45%;
    top: 0;
    background: #9f9f9f;
    transform: rotate(8deg);
}

@media (max-width: 992px) {
    .services-shell {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .services-copy {
        max-width: 640px;
    }

    .services-title {
        margin: 1.35rem 0 1.35rem;
    }

    .services-cards {
        justify-items: start;
    }

    .services-cards__inner {
        width: min(100%, 420px);
        height: 250px;
    }

    .services-card {
        width: 180px;
        height: 240px;
    }

    .services-card--back {
        left: 18%;
    }

    .services-card--front {
        left: 38%;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 1.7rem 0 2rem;
    }

    .services-shell {
        padding-inline: 0.9rem;
        gap: 1rem;
    }

    .services-badge {
        min-width: 5.4rem;
        min-height: 2rem;
        font-size: 0.82rem;
    }

    .services-title {
        margin: 1rem 0 1rem;
        font-size: 1.75rem;
    }

    .services-item {
        font-size: 1rem;
        padding-bottom: 0.45rem;
    }

    .services-cards {
        min-height: 190px;
    }

    .services-cards__inner {
        width: 100%;
        height: 180px;
    }

    .services-card {
        width: 120px;
        height: 165px;
        border-radius: 14px;
    }

    .services-card--back {
        left: 30%;
        top: 5px;
    }

    .services-card--front {
        left: 50%;
        top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-item,
    .services-card {
        transition: none;
    }
}
