/* Сброс и базовые стили — красный, черный, белый */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #fcfcfc;
            color: #111;
            line-height: 1.5;
            font-weight: 500;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Шрифты более резкие */
        h1, h2, h3, h4, .logo, .hero-btn, .price-item .cost, .service-tag {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .section-title {
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        /* Шапка — черный с красным акцентом */
        .header {
            background: #0a0a0a;
            color: white;
            padding: 16px 0;
            border-bottom: 4px solid #d32f2f;
        }
        .header .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: #d32f2f;
        }
        .header-contacts {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .header-contacts a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3rem;
        }
        .header-contacts .badge {
            background: #d32f2f;
            color: white;
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }
        .header-contacts .sub {
            color: #aaaaaa;
            font-size: 0.85rem;
            display: block;
            font-weight: 500;
        }

        /* ГЕРОЙ — картинка фоном */
        .hero {
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.5) 100%),
                        url('../img/1%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD.jpg') center center / cover no-repeat;
            color: white;
            padding: 80px 0 70px;
            margin-bottom: 70px;
            border-bottom: 4px solid #d32f2f;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }
        .hero-content p {
            font-size: 1.2rem;
            color: #f0f0f0;
            max-width: 550px;
            margin-bottom: 28px;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        .hero-btn {
            display: inline-block;
            background: #d32f2f;
            color: white;
            padding: 16px 44px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.2s;
            box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
            border: 1px solid #b71c1c;
        }
        .hero-btn:hover {
            background: #b71c1c;
            transform: scale(1.02);
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        .hero-stats div span {
            display: block;
            font-size: 2.2rem;
            font-weight: 800;
            color: #d32f2f;
        }
        .hero-stats div small {
            color: #ccc;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Тёмные блоки-разделители между светлыми секциями */
        .divider {
            color: white;
            padding: 58px 0;
            margin-bottom: 70px;
            border-top: 4px solid #d32f2f;
            border-bottom: 4px solid #d32f2f;
            background-color: #0a0a0a;
        }
        .divider-1 {
            background: linear-gradient(90deg, rgba(10, 10, 10, 0.93) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.88) 100%),
                        url('../img/%D1%80%D0%B0%D0%B7%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%201.jpg') center center / cover no-repeat;
        }
        .divider-2 {
            background: linear-gradient(90deg, rgba(10, 10, 10, 0.93) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.88) 100%),
                        url('../img/%D1%80%D0%B0%D0%B7%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%202.jpg') center center / cover no-repeat;
        }
        .divider-3 {
            background: linear-gradient(90deg, rgba(10, 10, 10, 0.93) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.88) 100%),
                        url('../img/%D1%80%D0%B0%D0%B7%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%203.jpg') center center / cover no-repeat;
        }
        .divider .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }
        .divider h2 {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
        }
        .divider h2 span {
            color: #d32f2f;
        }
        .divider p {
            color: #e6e6e6;
            font-size: 1.05rem;
            font-weight: 500;
            max-width: 700px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        }
        .divider-btn {
            display: inline-block;
            background: #d32f2f;
            color: white;
            padding: 15px 38px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.05rem;
            white-space: nowrap;
            transition: 0.2s;
            box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
            border: 1px solid #b71c1c;
        }
        .divider-btn:hover {
            background: #b71c1c;
            transform: scale(1.02);
        }
        .divider-btn.outline {
            background: rgba(10, 10, 10, 0.5);
            border: 2px solid #d32f2f;
            box-shadow: none;
        }
        .divider-btn.outline:hover {
            background: #d32f2f;
        }
        .divider-phone a {
            display: block;
            color: white;
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            text-decoration: none;
            white-space: nowrap;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
        }
        .divider-phone small {
            display: block;
            color: #bbb;
            font-weight: 500;
            margin-top: 4px;
        }

        /* Секции — увеличенное расстояние между ними */
        .section {
            margin-bottom: 70px;
        }
        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 32px;
            letter-spacing: -0.03em;
            color: #0a0a0a;
        }
        .section-title span {
            color: #d32f2f;
        }

        /* Карточки "Почему мы" */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .card {
            background: white;
            padding: 28px 22px;
            border-radius: 28px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border: 1px solid #e0e0e0;
            transition: 0.2s;
        }
        .card:hover {
            box-shadow: 0 16px 32px rgba(211, 47, 47, 0.08);
            border-color: #d32f2f;
        }
        .card .icon {
            font-size: 2.5rem;
            margin-bottom: 14px;
        }
        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* Услуги — по 5 в строке с описанием */
        .grid-services {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .service-tag {
            background: white;
            padding: 16px 12px;
            border-radius: 16px;
            text-align: center;
            font-weight: 700;
            color: #111;
            text-decoration: none;
            border: 2px solid #0a0a0a;
            transition: 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .service-tag:hover {
            border-color: #d32f2f;
            background: #fff5f5;
            transform: translateY(-3px);
            box-shadow: 0 8px 0 #d32f2f;
        }
        .service-tag .service-icon {
            font-size: 1.8rem;
            margin-bottom: 6px;
        }
        .service-tag .service-name {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .service-tag .service-desc {
            font-size: 0.7rem;
            font-weight: 400;
            color: #555;
            line-height: 1.3;
            max-width: 100%;
        }

        /* Техника — квадратные блоки */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
        }
        .tech-item {
            background: white;
            border: 2px solid #0a0a0a;
            border-radius: 20px;
            overflow: hidden;
            padding: 0 0 20px;
            font-weight: 700;
            text-align: center;
            display: flex;
            flex-direction: column;
            font-size: 1.05rem;
            transition: 0.2s;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .tech-item img {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border-bottom: 2px solid #0a0a0a;
            margin-bottom: 18px;
        }
        .tech-item span {
            padding: 0 14px;
        }
        .tech-item:hover {
            border-color: #d32f2f;
            background: #fff5f5;
            box-shadow: 0 8px 0 #d32f2f;
        }

        /* Блок "Какие проблемы решаем" — 3 колонки */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .problem-card {
            background: white;
            border-radius: 24px;
            padding: 24px 22px 28px;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .problem-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0a0a0a;
            border-bottom: 3px solid #d32f2f;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .problem-card ul {
            list-style: none;
            padding: 0;
        }
        .problem-card ul li {
            padding: 5px 0 5px 28px;
            position: relative;
            font-weight: 500;
            border-bottom: 1px dashed #eee;
        }
        .problem-card ul li:last-child {
            border-bottom: none;
        }
        .problem-card ul li::before {
            content: "✕";
            color: #d32f2f;
            font-weight: 800;
            position: absolute;
            left: 4px;
            top: 5px;
        }

        /* Гарантии — 2 блока */
        .guarantee-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .guarantee-card {
            background: white;
            border-radius: 24px;
            padding: 30px 28px 32px;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
            transition: 0.2s;
        }
        .guarantee-card:hover {
            border-color: #d32f2f;
            box-shadow: 0 8px 0 #d32f2f;
        }
        .guarantee-card .icon {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        .guarantee-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 12px;
        }
        .guarantee-card h3 span {
            color: #d32f2f;
        }
        .guarantee-card p {
            font-weight: 500;
            color: #222;
            line-height: 1.6;
        }
        .guarantee-card .highlight {
            color: #d32f2f;
            font-weight: 700;
        }

        /* Новая секция: скорость прибытия по округам — 3 колонки */
        .speed-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .speed-item {
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: 0.2s;
        }
        .speed-item:hover {
            border-color: #d32f2f;
            background: #fff5f5;
            box-shadow: 0 6px 0 #d32f2f;
        }
        .speed-item .district {
            font-size: 1rem;
        }
        .speed-item .time {
            color: #d32f2f;
            font-weight: 700;
            font-size: 1rem;
        }

        /* Цены — по 3 в строке */
        .grid-prices {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 30px 0 20px;
        }
        /* Заголовок группы услуг внутри блока цен */
        .price-group-title {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.25;
            color: #0a0a0a;
            margin-top: 44px;
        }
        .price-group-title span {
            color: #d32f2f;
        }
        .price-group-title::after {
            content: '';
            display: block;
            width: 64px;
            height: 4px;
            background: #d32f2f;
            border-radius: 2px;
            margin-top: 10px;
        }
        .section-title + .price-group-title {
            margin-top: 0;
        }
        .price-card {
            background: white;
            border-radius: 24px;
            padding: 22px 20px;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .price-card h4 {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 14px;
            color: #0a0a0a;
            border-bottom: 3px solid #d32f2f;
            padding-bottom: 8px;
        }
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .price-item:last-child {
            border-bottom: 0;
        }
        .price-item .cost {
            font-weight: 800;
            color: #d32f2f;
        }

        /* Выезд по городам — 2 колонки */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 24px;
        }
        .city-item {
            background: white;
            padding: 14px 20px;
            border-radius: 40px;
            border: 2px solid #0a0a0a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            box-shadow: 0 3px 0 #0a0a0a;
        }
        .city-item strong {
            font-size: 1rem;
        }
        .city-item .price {
            color: #d32f2f;
            font-weight: 700;
        }

        /* Частые вопросы — по 3 в строке */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .faq-item {
            background: white;
            padding: 22px 24px;
            border-radius: 24px;
            border-left: 6px solid #d32f2f;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .faq-item strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 6px;
            font-weight: 800;
        }
        .faq-item p {
            color: #222;
            font-weight: 500;
            margin: 0;
        }

        /* Футер */
        .footer {
            background: #0a0a0a;
            color: #e0e0e0;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 4px solid #d32f2f;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }
        .footer-logo span {
            color: #d32f2f;
        }
        .footer-contacts a {
            color: #d32f2f;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .footer small {
            display: block;
            margin-top: 8px;
            color: #888;
        }

        /* Диагностика */
        .diagnostic-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: white;
            padding: 30px;
            border-radius: 40px;
            border: 2px solid #0a0a0a;
            box-shadow: 0 4px 0 #0a0a0a;
        }
        .diagnostic-grid ul {
            list-style: none;
            font-weight: 500;
        }
        .diagnostic-grid ul li {
            margin-bottom: 4px;
        }
        .diagnostic-grid h4 {
            font-weight: 800;
            margin-bottom: 10px;
        }

        /* Адаптив */
        @media (max-width: 992px) {
            .grid-prices { grid-template-columns: repeat(2, 1fr); }
            .faq-grid { grid-template-columns: repeat(2, 1fr); }
            .grid-services { grid-template-columns: repeat(3, 1fr); }
            .problems-grid { grid-template-columns: repeat(2, 1fr); }
            .guarantee-grid { grid-template-columns: 1fr; }
            .speed-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .city-grid { grid-template-columns: 1fr; }
            .diagnostic-grid { grid-template-columns: 1fr; }
            .problems-grid { grid-template-columns: 1fr; }
            .speed-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 700px) {
            .hero-content h1 { font-size: 2.2rem; }
            .divider { padding: 42px 0; margin-bottom: 50px; }
            .divider h2 { font-size: 1.6rem; }
            .divider p { font-size: 1rem; }
            .divider-phone a { font-size: 1.6rem; }
            .grid-prices { grid-template-columns: 1fr; }
            .faq-grid { grid-template-columns: 1fr; }
            .grid-services { grid-template-columns: repeat(2, 1fr); }
            .header-contacts { gap: 12px; }
            .tech-grid { grid-template-columns: 1fr; }
            .section { margin-bottom: 50px; }
        }
        @media (max-width: 480px) {
            .grid-services { grid-template-columns: repeat(2, 1fr); }
            .service-tag { min-height: 120px; padding: 12px 8px; }
            .service-tag .service-desc { font-size: 0.65rem; }
        }