/* БАЗОВЫЕ СТИЛИ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* КОНТЕЙНЕР */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ШАПКА С ФОНОВОЙ КАРТИНКОЙ */
        header {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('img/header-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
            padding: 50px 20px;
            overflow: hidden;
        }
        
        /* Затемнение фона для читаемости текста */
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 74, 158, 0.7);
            z-index: 1;
        }
        
        header > * {
            position: relative;
            z-index: 2;
        }
        
        .emergency-phone {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            display: inline-block;
            padding: 10px 20px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .phone-header {
            font-size: 32px;
            font-weight: bold;
            margin: 15px 0;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        .hero-text {
            font-size: 20px;
            margin: 15px 0;
        }
        
        /* КНОПКИ */
        .btn {
            display: inline-block;
            background: #ffcc00;
            color: #000;
            padding: 16px 32px;
            margin: 15px 0;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
            transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #e6b800;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .btn-secondary {
            background: #28a745;
        }
        
        .btn-secondary:hover {
            background: #218838;
        }
        
        /* СЕКЦИИ */
        .section {
            background: white;
            border-radius: 12px;
            padding: 35px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        h1, h2, h3 {
            color: #0d4a9e;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 36px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 28px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
        }
        
        h3 {
            font-size: 22px;
            margin: 15px 0;
        }
        
        /* СЕТКА КАРТОЧЕК */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        /* НЕ РЕКОМЕНДУЕМ - СТИЛЬ */
        .card.not-recommended {
            border: 2px dashed #c62828;
            background: #fff5f5;
        }

        .not-recommended-badge {
            background: #c62828;
            color: #fff;
            padding: 5px 12px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
        }
        
        /* ЕДИНЫЙ ФОРМАТ КАРТИНОК */
        .image-container {
            width: 100%;
            height: 240px;
            overflow: hidden;
            background: #f0f4f8;
            position: relative;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .image-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ffcc00;
            color: #000;
            padding: 5px 12px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
            display: inline-block;
            white-space: nowrap;
        }
        
        .card-content {
            padding: 22px;
        }
        
        .price {
            font-size: 24px;
            font-weight: bold;
            color: #0d4a9e;
            margin: 12px 0;
        }
        
        .price small {
            font-size: 16px;
            font-weight: normal;
            color: #666;
        }
        
        /* СПИСКИ */
        .features {
            list-style-type: none;
            padding-left: 5px;
        }
        
        .features li {
            padding: 10px 0 10px 28px;
            position: relative;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .features li:last-child {
            border-bottom: none;
        }
        
        .features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 18px;
        }
        
        .features li.danger:before {
            content: "!";
            color: #c62828;
        }

        .features li.danger {
            color: #c62828;
            font-weight: bold;
        }
        
        /* ВЫДЕЛЕННЫЕ БЛОКИ */
        .highlight {
            background: #e3f2fd;
            border-left: 5px solid #0d4a9e;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            font-weight: 500;
        }
        
        .warning {
            background: #ffebee;
            border-left: 5px solid #ef5350;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            font-weight: 500;
        }
        
        .seo-block {
            background: #f0f7ff;
            border-left: 5px solid #0d4a9e;
            padding: 22px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        
        .delivery-info {
            background: #fff8e1;
            border: 2px solid #ffcc00;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
        }
        
        .delivery-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffcc00;
            color: #000;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* ВИДЕО БЛОК */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            margin: 25px 0;
            background: #000;
        }
        
        .video-container video,
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-description {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        /* ПРЕИМУЩЕСТВА */
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
        }
        
        .advantage-icon {
            width: 60px;
            height: 60px;
            background: #0d4a9e;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 15px;
        }
        
        /* РАЗМЕРЫ КОСТЫЛЕЙ */
        .size-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .size-table th {
            background: #0d4a9e;
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .size-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .size-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .formula-box {
            background: #e8f4ff;
            border: 2px dashed #0d4a9e;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }
        
        .formula-box code {
            font-size: 20px;
            font-weight: bold;
            color: #0d4a9e;
            background: white;
            padding: 10px 20px;
            border-radius: 5px;
        }
        
        /* FOOTER */
        footer {
            background: #0d2a54;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        
        .social-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 6px;
            background: #1a6dcc;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #ffcc00;
            color: #000;
        }
        
        /* ФИКСИРОВАННАЯ КНОПКА */
        .sticky-call {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        .sticky-call a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: #0d4a9e;
            color: white;
            border-radius: 50%;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(229, 57, 53, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
        }
        
        /* МОБИЛЬНАЯ АДАПТАЦИЯ */
        @media (max-width: 768px) {
            h1 {
                font-size: 26px;
            }
            
            h2 {
                font-size: 22px;
            }
            
            .phone-header {
                font-size: 24px;
            }
            
            .section {
                padding: 25px 20px;
            }
            
            .grid {
                grid-template-columns: 1fr;
            }
            
            .advantage-grid {
                grid-template-columns: 1fr;
            }
            
            .table-responsive {
                overflow-x: auto;
            }
            
            .sticky-call a {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }
        /* Навигация и внутренние страницы */
        .top-services-nav {
            background: #0d2a54;
            padding: 12px 0;
            font-size: 13px;
            position: relative;
            z-index: 10;
        }
        .top-services-nav .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            justify-content: center;
            align-items: center;
        }
        .top-services-nav a {
            color: #e3f2fd;
            text-decoration: none;
            white-space: nowrap;
        }
        .top-services-nav a:hover,
        .top-services-nav a[aria-current="page"] {
            color: #ffcc00;
            text-decoration: underline;
        }
        header.inner-page {
            min-height: auto;
            padding: 36px 20px 48px;
        }
        header.inner-page h1 {
            color: #fff;
            text-shadow: 0 1px 3px rgba(0,0,0,0.4);
        }
        .breadcrumb {
            font-size: 14px;
            margin-bottom: 18px;
            opacity: 0.95;
        }
        .breadcrumb a {
            color: #fff;
            text-decoration: underline;
        }
        .related-pages {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        .related-pages a {
            display: inline-block;
            background: #e3f2fd;
            color: #0d4a9e;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }
        .related-pages a:hover {
            background: #0d4a9e;
            color: #fff;
        }

        /* МОБИЛЬНАЯ АДАПТАЦИЯ */
        @media (max-width: 768px) {
            /* Навигация — горизонтальный скролл, компактная */
            .top-services-nav {
                position: sticky;
                top: 0;
                z-index: 1000;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 8px 0;
            }
            .top-services-nav .container {
                flex-wrap: nowrap;
                justify-content: flex-start;
                gap: 6px;
                padding: 0 12px;
                min-width: max-content;
            }
            .top-services-nav a {
                font-size: 0.8rem;
                padding: 4px 8px;
            }

            /* Шапка — компактная на мобильном, сразу видно предложение */
            header {
                min-height: 60vh;
                padding: 20px 15px 30px;
            }
            header h1 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }
            .hero-text {
                font-size: 0.95rem;
                margin: 10px 0;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
            .emergency-phone {
                padding: 8px 12px;
                margin-bottom: 10px;
            }
            .section {
                padding: 20px 15px;
                margin: 15px 0;
            }
            h2 {
                font-size: 1.3rem;
            }
            .grid {
                grid-template-columns: 1fr;
            }
            .advantage-grid {
                grid-template-columns: 1fr;
            }
            .table-responsive {
                overflow-x: auto;
            }
            .sticky-call a {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }
