/* Стили посадочных страниц (услуги, цены, поездка, о клинике).
   Отдельный файл: style.css весит 86 КБ и правится вручную — новые страницы
   не должны его задевать. Цвета взяты из style.css: #1A76D1 — основной,
   #2C2D3F — тёмный. */

/* Пунктов в меню стало шесть (добавились «Цены», «О поездке», «Контакты»),
   и при исходных отступах (margin-right 15px + padding 12px по бокам —
   почти 40px на пункт) последний переносился на вторую строку. Уплотняем
   только на десктопе: на мобильных меню отдаёт slicknav, там это не влияет. */
@media only screen and (min-width: 992px) {
    .header .nav li {
        margin-right: 4px;
    }

    .header .nav li a {
        padding-left: 9px;
        padding-right: 9px;
    }
}

/* Второй слайд на главной: его заголовок переведён с h1 на h2, чтобы на
   странице остался один H1. Правила повторяют .slider .single-slider h1 из
   style.css и css/responsive.css — включая те же брейкпоинты, — так что
   внешний вид слайдера не меняется. */
.slider .single-slider h2 {
    color: #2C2D3F;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 42px;
}

.slider .single-slider h2 span {
    color: #1a76d1;
}

.owl-item.active .single-slider h2 {
    animation: fadeInUp 1s both 0.6s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider .single-slider h2 {
        font-size: 28px;
        font-weight: 600;
        line-height: 35px;
    }
}

@media only screen and (min-width: 768px) {
    .slider .single-slider h2 {
        font-size: 28px;
        font-weight: 600;
        line-height: 35px;
    }
}

@media only screen and (max-width: 450px) {
    .slider .single-slider h2 {
        font-size: 30px;
        font-weight: 600;
        line-height: 35px;
    }
}

.page-hero {
    background: linear-gradient(135deg, #1A76D1 0%, #2C2D3F 100%);
    padding: 70px 0 60px;
    color: #fff;
}

.page-hero h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
}

.page-hero .bread-list {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.page-hero .bread-list li {
    display: inline-block;
    color: rgba(255, 255, 255, .75);
    margin-right: 6px;
}

.page-hero .bread-list li a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
}

.page-hero .bread-list li a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-section {
    padding: 55px 0;
}

.page-section.alt {
    background: #f7f9fc;
}

.page-section h2 {
    color: #2C2D3F;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 22px;
}

.page-section h3 {
    color: #2C2D3F;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 10px;
}

.page-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.page-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    border-left: 4px solid #1A76D1;
    padding: 4px 0 4px 22px;
    margin-bottom: 10px;
}

/* Списки с галочками */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding: 0 0 0 32px;
    margin-bottom: 14px;
    color: #555;
    font-size: 16px;
    line-height: 1.65;
}

.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 9px;
    border-left: 3px solid #1A76D1;
    border-bottom: 3px solid #1A76D1;
    transform: rotate(-45deg);
}

/* Карточки */
.info-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    padding: 26px 24px;
    height: 100%;
    margin-bottom: 26px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.info-card:hover {
    box-shadow: 0 10px 28px rgba(26, 118, 209, .13);
    transform: translateY(-3px);
}

.info-card p {
    margin: 0;
    font-size: 15px;
}

.info-card .contact-value {
    font-size: 17px;
    font-weight: 600;
    color: #2C2D3F;
    margin-bottom: 8px;
}

.info-card .contact-value a {
    color: #1A76D1;
    text-decoration: none;
}

.info-card .contact-value a:hover {
    text-decoration: underline;
}

/* Нумерованные шаги */
.step-item {
    position: relative;
    padding: 0 0 0 66px;
    margin-bottom: 30px;
}

.step-item .step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    background: #1A76D1;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.step-item p {
    margin: 0;
    font-size: 15px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e4e9f0;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.faq-item p {
    margin: 0;
    font-size: 15px;
}

/* Блок призыва к действию */
.page-cta {
    background: #1A76D1;
    color: #fff;
    border-radius: 10px;
    padding: 38px 34px;
    text-align: center;
}

.page-cta h2 {
    color: #fff;
    margin-bottom: 12px;
}

.page-cta p {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    margin-bottom: 22px;
}

.page-cta .cta-btn {
    display: inline-block;
    background: #fff;
    color: #1A76D1;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 4px;
    margin: 6px 8px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.page-cta .cta-btn:hover {
    background: #2C2D3F;
    color: #fff;
    text-decoration: none;
}

.page-cta .cta-btn.ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .8);
    padding: 11px 32px;
}

.page-cta .cta-btn.ghost:hover {
    background: #fff;
    color: #1A76D1;
}

/* Перелинковка */
.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links li a {
    color: #1A76D1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.related-links li a:hover {
    text-decoration: underline;
}

/* Сетка услуг на странице-хабе */
.svc-tile {
    display: block;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    padding: 22px 20px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.svc-tile:hover {
    text-decoration: none;
    border-color: #1A76D1;
    box-shadow: 0 10px 28px rgba(26, 118, 209, .13);
    transform: translateY(-3px);
}

.svc-tile strong {
    display: block;
    color: #2C2D3F;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

.svc-tile span {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 45px 0 40px;
    }

    .page-hero h1 {
        font-size: 27px;
    }

    .page-section {
        padding: 38px 0;
    }

    .page-section h2 {
        font-size: 23px;
    }

    .page-cta {
        padding: 28px 20px;
    }

    .step-item {
        padding-left: 56px;
    }
}
