﻿.services-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    color: black;
}

/* Заголовки */
.services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 18px;
}

/* Сетка карточек */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* Карточка */
.service-card {
    padding: 26px 26px 30px;
    border-radius: 22px;
    display: flex; 
    flex-direction: column;
    background: linear-gradient(
            135deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.04)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
            0 12px 40px rgba(0,0,0,0.35),
            inset 0 1px 0 rgba(255,255,255,0.15);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow:
            0 18px 60px rgba(0,0,0,0.45),
            inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Заголовок карточки */
.service-card h3 {
    display: flex;
    align-items: center;   /* ⬅️ важно */
    gap: 12px;

    font-size: 21px;
    line-height: 1.25;

    word-break: break-word;
    white-space: normal;
}

.service-card h3 i {
    font-size: 28px;
    color: cornflowerblue;

    background: rgba(56,178,172,0.15);
    padding: 8px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.25),
            0 4px 12px rgba(0,0,0,0.25);
}

/* Список */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #38b2ac;
    font-size: 22px;
    line-height: 1;
}

.service-card-price{
    margin-top: auto;
    text-align: center;
}
/* Футер */
.services-footer {
    margin-top: 60px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* Адаптив */
@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }

    .services-intro {
        font-size: 16px;
    }

    .services-footer {
        font-size: 18px;
    }
}