.services__page {
    padding: 80px 80px 120px;
}

.page__hero {
    max-width: 760px;
    margin-bottom: 50px;
}

.page__label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-weight: 600;
}

.page__hero h1 {
    margin: 0 0 20px;
    font-size: 56px;
    line-height: 1.1;
}

.page__hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

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

.services__card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    text-decoration: none;
    transition: .3s ease;
}

.services__card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(56, 189, 248, .12);
}

.services__icon {
    margin-bottom: 22px;
    font-size: 38px;
    line-height: 1;
}

.services__card-title {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.3;
}

.services__card-text {
    margin: 0 0 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

.services__card-link {
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
}

.services__empty {
    color: var(--text-muted);
}


/* =========================
   SERVICE SHOW
========================= */
.service-show {
    padding: 80px 80px 120px;
}

.service-show__hero {
    max-width: 820px;
    margin-bottom: 60px;
    flex-direction: column;
    gap: 15px;
}

.service-show__back {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--text-muted);
    text-decoration: none;
    transition: .3s ease;
}

.service-show__back:hover {
    color: var(--accent);
}

.service-show__label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 600;
}

.service-show__title {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.1;
}

.service-show__subtitle {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.6;
}

.service-show__content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: flex-start;
}

.service-show__main {
    display: grid;
    gap: 28px;
}

.service-show__section {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
}

.service-show__heading {
    margin: 0 0 22px;
    font-size: 32px;
}

.service-show__text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-show__list {
    display: grid;
    gap: 16px;
}

.service-show__item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
}

.service-show__item-icon {
    display: flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #020617;
    font-weight: 700;
}

.service-show__item-text {
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

.service-show__stages {
    display: grid;
    gap: 18px;
}

.service-show__stage {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .03);
}

.service-show__stage-number {
    color: var(--accent);
    font-size: 18px;
    font-weight: 800;
}

.service-show__stage-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-show__aside {
    position: sticky;
    top: 110px;
}

.service-show__card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
}

.service-show__card-title {
    margin: 0 0 14px;
    font-size: 24px;
}

.service-show__card-text {
    margin: 0 0 26px;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-show__button {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent);
    color: #020617;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.service-show__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(56, 189, 248, .25);
}


/* =========================
   ADAPTIVE
========================= */

@media(max-width: 992px) {
    .services__page,
    .service-show {
        padding: 60px 30px 90px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page__hero h1 {
        font-size: 42px;
    }

    .service-show {
        padding: 60px 30px 90px;
    }

    .service-show__content {
        grid-template-columns: 1fr;
    }

    .service-show__aside {
        position: static;
    }

    .service-show__title {
        font-size: 44px;
    }
}

@media(max-width: 600px) {
    .services__page,
    .service-show {
        padding: 40px 20px 70px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__card {
        min-height: auto;
        padding: 28px;
    }

    .page__hero h1,
    .service-show__title {
        font-size: 36px;
    }

    .page__hero p,
    .service-show__subtitle {
        font-size: 17px;
    }

     .service-show {
        padding: 40px 20px 70px;
    }

    .service-show__section,
    .service-show__card {
        padding: 26px;
    }

    .service-show__title {
        font-size: 36px;
    }

    .service-show__subtitle {
        font-size: 17px;
    }

    .service-show__stage {
        flex-direction: column;
        gap: 10px;
    }
}