        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', Arial, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* ===== HEADER ===== */
        .header { background: #fff; border-bottom: 1px solid #e5e5e5; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
        .logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
        .logo img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
        .logo-name { font-size: 22px; font-weight: 700; color: #0077b6; }
        .logo-site { font-size: 11px; color: #999; margin-top: 2px; }
        .header-info { display: flex; align-items: center; gap: 30px; }
        .header-address { font-size: 12px; color: #666; line-height: 1.5; }
        .header-address strong { color: #0077b6; display: block; margin-bottom: 2px; }
        .header-phones { text-align: right; }
        .header-phones small { font-size: 11px; color: #999; display: block; margin-bottom: 2px; }
        .header-phones a { display: block; font-weight: 700; font-size: 16px; color: #1a1a2e; }
        .header-phones a:hover { color: #0077b6; }

        /* ===== NAV ===== */
        .nav { background: #0077b6; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }
        .nav-list { display: flex; }
        .nav-list li a { display: block; padding: 14px 18px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; transition: background .2s; white-space: nowrap; }
        .nav-list li a:hover, .nav-list li.active a { background: rgba(255,255,255,.15); color: #fff; }
        .burger { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; padding: 8px 12px; }
        .btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: all .2s; text-align: center; }
        .btn-blue { background: #0077b6; color: #fff; }
        .btn-blue:hover { background: #005f8a; }
        .btn-orange { background: #ff6b35; color: #fff; }
        .btn-orange:hover { background: #e55a28; }
        .btn-outline { border: 2px solid #0077b6; color: #0077b6; background: transparent; padding: 10px 24px; }
        .btn-outline:hover { background: #0077b6; color: #fff; }

        /* ===== HERO SLIDER ===== */
        .hero { position: relative; overflow: hidden; background: #000; }
        .hero-slides { display: flex; transition: transform .6s ease; }
        .hero-slide { min-width: 100%; position: relative; }
        .hero-slide img { width: 100%; height: 480px; object-fit: cover; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 60%); display: flex; align-items: center; padding: 0 60px; }
        .hero-text { color: #fff; max-width: 500px; }
        .hero-text .num { font-size: 48px; font-weight: 700; opacity: .3; margin-bottom: 8px; }
        .hero-text h2 { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
        .hero-text p.hero-text-heading { font-size: 32px; font-weight: 700; line-height: 1.3;margin-bottom: 12px; }
        .hero-text p { font-size: 15px; opacity: .85; }
        .hero-dots { position: absolute; bottom: 20px; left: 60px; display: flex; gap: 8px; }
        .hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; }
        .hero-dot.active { background: #fff; }

        
        
.breadcrumbs-section {
    
    }

.breadcrumbs {
    margin: 0;
    padding: 13px 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    color: #777;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #aaa;
}

.breadcrumbs__link {
    color: #1976b9;
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumbs__link:hover {
    color: #125887;
    text-decoration: underline;
}

.breadcrumbs__current {
    color: #555;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 0;
        font-size: 13px;
    }

    .breadcrumbs__item:not(:last-child)::after {
        margin: 0 7px;
    }
}

/* ===== DROPDOWN MENU ===== */
.nav-list li {
    position: relative;
}

.nav-list li.has-dropdown > a::after {
    content: " ▼";
    font-size: 9px;
}

/* ===== DROPDOWN MENU ===== */

.nav-list li {
    position: relative;
}

.nav-list li.has-dropdown > a::after {
    content: " ▼";
    font-size: 9px;
    margin-left: 4px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 999;
    overflow: hidden;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 12px 18px;
    color: #333 !important;
    background: #fff;
    white-space: nowrap;
    transition: .2s;
}

.dropdown li a:hover {
    background: #0077b6;
    color: #fff !important;
}

.has-dropdown:hover > .dropdown {
    display: block;
}

    /* ============================================================
   NEWS ARTICLE
   ============================================================ */

.news-article {
    padding: 50px 0 70px;
}

.news-article__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.news-article__back {
    display: inline-block;
    margin-bottom: 22px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #0077b6;
    text-decoration: none;
    transition: color .2s ease;
}

.news-article__back:hover {
    color: #005f8a;
    text-decoration: underline;
}


/* Заголовок */

.news-article h1 {
    margin: 0 0 28px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a2e;
}


/* Изображение */

.news-article__image {
    width: 100%;
    margin-bottom: 32px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.news-article__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   ARTICLE CONTENT
   ============================================================ */

.news-article__content {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    overflow-wrap: break-word;
}

.news-article__content p {
    margin: 0 0 18px;
}

.news-article__content h2 {
    margin: 38px 0 18px;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a2e;
}

.news-article__content h3 {
    margin: 30px 0 14px;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a2e;
}

.news-article__content h4 {
    margin: 26px 0 12px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a2e;
}


/* Ссылки */

.news-article__content a {
    color: #0077b6;
    text-decoration: none;
}

.news-article__content a:hover {
    color: #005f8a;
    text-decoration: underline;
}


/* Списки */

.news-article__content ul {
    list-style: disc;
    margin: 0 0 20px;
    padding-left: 24px;
}

.news-article__content ol {
    list-style: decimal;
    margin: 0 0 20px;
    padding-left: 24px;
}

.news-article__content li {
    margin-bottom: 8px;
}

.news-article__content li::marker {
    color: #0077b6;
}


/* Выделение */

.news-article__content strong,
.news-article__content b {
    font-weight: 600;
    color: #1a1a2e;
}


/* Изображения внутри статьи */

.news-article__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 0 10px 10px;
    border-radius: 10px;
}


/* Цитаты */

.news-article__content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    background: #f8f9fa;
    border-left: 4px solid #0077b6;
    border-radius: 0 8px 8px 0;
    color: #555;
}


/* Таблицы */

.news-article__content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    background: #fff;
}

.news-article__content th,
.news-article__content td {
    padding: 12px 14px;
    border: 1px solid #eee;
    text-align: left;
}

.news-article__content th {
    background: #0077b6;
    color: #fff;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {
    .news-article {
        padding: 30px 0 45px;
    }

    .news-article__inner {
        max-width: 100%;
    }

    .news-article h1 {
        margin-bottom: 22px;
    }

    .news-article__image {
        margin-bottom: 24px;
        border-radius: 10px;
    }

    .news-article__content {
        font-size: 15px;
        line-height: 1.7;
    }

    .news-article__content h2 {
        margin-top: 30px;
        font-size: 23px;
    }

    .news-article__content h3 {
        margin-top: 26px;
        font-size: 19px;
    }

    .news-article__content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

}







        /* ===== SEARCH BAR (between hero and services) ===== */
        .search-bar { background: #f5f5f5; border-bottom: 1px solid #e0e0e0; padding: 12px 0; }
        .search-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
        .search-bar-left { display: flex; gap: 32px; font-size: 13px; color: #555; }
        .search-bar-left strong { color: #333; }
        .search-bar-left a { color: #0077b6; }
        .search-form { display: flex; }
        .search-form input { padding: 9px 14px; border: 1px solid #ccc; border-right: none; border-radius: 4px 0 0 4px; font-size: 13px; width: 200px; outline: none; }
        .search-form input:focus { border-color: #0077b6; }
        .search-form button { padding: 9px 14px; background: #0077b6; color: #fff; border: 1px solid #0077b6; border-radius: 0 4px 4px 0; cursor: pointer; font-size: 15px; line-height: 1; }

        /* ===== SECTIONS ===== */
        .section-title { text-align: center; margin-bottom: 36px; }
        .section-title h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
        .section-title p { color: #777; font-size: 14px; }

        /* ===== SERVICES ===== */
        .services { padding: 60px 0; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
        .service-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 24px 18px; text-align: center; transition: all .25s; }
        .service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-3px); }
        .service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #e8f4fd, #b8ddf5); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; }
        .service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; min-height: 40px; display: flex; align-items: center; justify-content: center; }
        .service-card .desc { color: #888; font-size: 12px; margin-bottom: 8px; min-height: 32px; }
        .service-card .price { color: #0077b6; font-weight: 700; font-size: 17px; margin-bottom: 12px; }
        .service-card .price small { font-size: 11px; font-weight: 400; color: #999; }

        /* ===== SERVICES ALT (gray bg) ===== */
        .services-alt { padding: 60px 0; background: #f8f9fa; }

        /* ===== STEPS ===== */
        .steps { padding: 60px 0; background: #fff; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 36px; }
        .step { text-align: center; }
        .step-num { width: 50px; height: 50px; background: linear-gradient(135deg, #00b4d8, #0077b6); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 14px; }
        .step h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
        .step p { color: #777; font-size: 13px; }

        /* ===== ADVANTAGES ===== */
        .advantages { padding: 60px 0; background: #f8f9fa; }
        .adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .adv-item { display: flex; gap: 14px; background: #fff; padding: 20px; border-radius: 10px; border: 1px solid #eee; }
        .adv-icon { width: 36px; height: 36px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #4caf50; font-size: 18px; flex-shrink: 0; }
        .adv-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
        .adv-item p { color: #777; font-size: 12px; }

        /* ===== GALLERY ===== */
        .gallery { padding: 60px 0; }
        .gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; border-radius: 10px; overflow: hidden; }
        .gallery-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
        .gallery-item img {width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform .3s !important; }
        .gallery-item:hover img { transform: scale(1.08); }

        /* ===== REVIEWS ===== */
        .reviews { padding: 60px 0; background: #f8f9fa; }
        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
        .review-card { background: #fff; border-radius: 10px; padding: 22px; border: 1px solid #eee; }
        .review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-text { color: #555; font-size: 13px; line-height: 1.65; padding-left: 16px; border-left: 3px solid #0077b6; }

        /* ===== PRICES ===== */
        .prices { padding: 60px 0; }
        .prices h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
        .prices h3:first-child { margin-top: 0; }
        .price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,.05); }
        .price-table thead { background: #0077b6; color: #fff; }
        .price-table th { padding: 12px 16px; text-align: left; font-weight: 600; font-size: 13px; }
        .price-table td { padding: 11px 16px; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
        .price-table tbody tr:hover { background: #f8fbff; }
        .price-val { font-weight: 700; color: #0077b6; white-space: nowrap; }

        /* ===== CTA ===== */
        .cta { padding: 60px 0; background: linear-gradient(135deg, #0077b6, #00b4d8); color: #fff; text-align: center; }
        .cta h2 { font-size: 28px; margin-bottom: 10px; }
        .cta p { font-size: 15px; opacity: .9; margin-bottom: 24px; }
        .cta-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
        .cta-form input { flex: 1; padding: 13px 16px; border: none; border-radius: 6px; font-size: 14px; outline: none; }

        /* ===== FOOTER ===== */
        .footer { background: #1a1a2e; color: rgba(255,255,255,.65); padding: 48px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 32px; }
        .footer h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
        .footer p { font-size: 13px; margin-bottom: 5px; }
        .footer a { color: rgba(255,255,255,.65); transition: color .2s; }
        .footer a:hover { color: #48cae4; }
        .footer-links li { margin-bottom: 5px; }
        .footer-links a { font-size: 13px; }
        .footer-phones a { display: block; font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 4px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; text-align: center; font-size: 12px; }

        /* ===== MODAL ===== */
        .modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; align-items: center; justify-content: center; }
        .modal-bg.show { display: flex; }
        .modal-box { background: #fff; border-radius: 14px; padding: 32px; max-width: 380px; width: 92%; position: relative; }
        .modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 22px; cursor: pointer; color: #999; }
        .modal-box h3 { font-size: 20px; margin-bottom: 4px; }
        .modal-box .sub { color: #888; font-size: 13px; margin-bottom: 18px; }
        .fg { margin-bottom: 12px; }
        .fg input { width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; outline: none; }
        .fg input:focus { border-color: #0077b6; }
        .modal-box .btn { width: 100%; padding: 13px; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .header-info { display: none; }
            .burger { display: block; }
            .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0077b6; z-index: 50; }
            .nav-list.open { display: flex; }
            .nav-inner { position: relative; }
            .hero-slide img { height: 300px; }
            .hero-overlay { padding: 0 24px; }
            .hero-text h2 { font-size: 22px; }
            .steps-grid { grid-template-columns: 1fr; }
            .adv-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .search-bar-left { display: none; }
            .cta-form { flex-direction: column; }
        }