/* =====================================
   HOME — УСЛУГИ
===================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .25s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 34px;
    margin: 24px 24px 14px;
}

.service-card p {
    margin: 0 24px 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #59627a;
}

.service-card .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: auto 24px 24px;

    min-height: 48px;
}

/* Hero страницы услуги */

.service-hero p,
.service-hero .service-subtitle {
    margin-bottom: 32px;
}

.service-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

/* =====================================
   SERVICE DETAIL
===================================== */

.service-hero {
    padding: 90px 0 60px;
}

.service-hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 18px 0;
}

.service-subtitle {
    font-size: 22px;
    line-height: 1.8;
    color: #59627a;
    max-width: 850px;
}

.service-content {
    padding: 70px 0;
}

.service-detail .container {
    max-width: 1100px;
    margin: auto;
}

.service-image {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 45px;
    display: block;
}

.service-text {
    max-width: 900px;
    margin: auto;
}

.service-text p {
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #59627a;
}

.service-text ul {
    margin: 30px 0;
    padding-left: 25px;
}

.service-text li {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 12px;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 991px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 220px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-hero h1 {
        font-size: 46px;
    }

    .service-text p,
    .service-text li {
        font-size: 18px;
    }

}