.page--service .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    align-items: stretch;
}

.page--service .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 122px;
    padding: 24px 18px;
    text-align: center;
    border: 2px solid rgba(255, 245, 235, 0.72);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.page--service .service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
    border-color: rgba(255, 245, 235, 0.92);
}

.page--service .service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto;
}

.page--service .service-card__icon svg {
    width: 40px;
    height: 40px;
}

.page--service .service-card__title,
.page--service .service-card h3 {
    margin: 0;
    line-height: 1.35;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .page--service .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page--service .service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .page--service .service-card {
        min-height: 104px;
        padding: 20px 16px;
    }

    .page--service .service-card__icon {
        width: 44px;
        height: 44px;
    }

    .page--service .service-card__icon svg {
        width: 34px;
        height: 34px;
    }

    .page--service .service-card__title,
    .page--service .service-card h3 {
        font-size: 0.98rem;
    }
}