.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.service-detail {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.service-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}
.detail-image {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
.detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.detail-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}
.detail-text p {
    margin-bottom: 15px;
}
.service-properties {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
}
.price-block {
    font-size: 1.5rem;
    color: #2a5bd7;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #2a5bd7;
}
.price-block strong {
    color: #666;
    font-weight: 600;
    margin-right: 10px;
}
.icon-block {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ff6b00;
}
.icon-block strong {
    color: #666;
    font-weight: 600;
    margin-right: 10px;
}
.seo-text {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}
.seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}
.seo-text h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #333;
}
.features {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}
.features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}
.features li:last-child {
    border-bottom: none;
}
.features li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-brands-block {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.service-brands-block h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
    text-align: center;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.brand-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: #2a5bd7;
    box-shadow: 0 10px 25px rgba(42,91,215,0.15);
}
.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
.brand-name {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .service-detail-container {
        padding: 20px 15px;
    }

    .service-detail {
        padding: 25px 20px;
    }

    .service-detail h1 {
        font-size: 2rem;
    }

    .service-properties {
        padding: 20px;
    }

    .service-brands-block {
        padding: 25px 20px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .brand-card {
        padding: 15px;
        height: 80px;
    }

    .brand-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail h1 {
        font-size: 1.8rem;
    }

    .price-block {
        font-size: 1.3rem;
    }
}

.service-detail-grid {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.service-detail-left {
    flex: 1;
    min-width: 280px;
}

.service-detail-right {
    flex: 1.5;
    min-width: 280px;
}

.service-detail-left .service-properties {
    margin-top: 0;
}

@media (max-width: 768px) {
    .service-detail-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-left,
    .service-detail-right {
        flex: auto;
    }
}


.service-detail-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.service-detail-left {
    flex: 1.5;
    min-width: 280px;
}
.service-detail-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.heading h1 {
    margin: 0;
    font-size: 2rem;
}
.price-badge {
    background: #2a5bd7;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.features-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
}
.features-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.description {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.service-form {
    margin-top: 25px;
}
.hero-form-polytic {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}
.hero-form-polytic a {
    color: #2a5bd7;
    text-decoration: underline;
}

.service-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-detail-grid {
        flex-direction: column;
    }
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .heading h1 {
        font-size: 1.6rem;
    }
    .price-badge {
        align-self: flex-start;
    }
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-header-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.service-header-left {
    flex: 1.5;
    min-width: 280px;
}
.service-header-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.heading h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #333;
}
.price-badge {
    background: #2a5bd7;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.features-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
}
.features-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.description {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.5;
}
.hero-form .cta-form {
    margin-top: 20px;
}
.hero-form-polytic {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}
.hero-form-polytic a {
    color: #2a5bd7;
    text-decoration: underline;
}
.service-main-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timer {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}
.timer__caption {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.timer__caption span {
    font-weight: bold;
    color: #ff6b00;
}
.timer__last {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}
.timer__timer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    font-weight: bold;
}
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.timer-number {
    font-size: 2rem;
    font-weight: 700;
    background: white;
    padding: 10px 5px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #2a5bd7;
}
.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-top: 5px;
}
.timer-sep {
    font-size: 2rem;
    font-weight: bold;
    color: #2a5bd7;
    align-self: center;
}
@media (max-width: 768px) {
    .timer-unit {
        min-width: 50px;
    }
    .timer-number {
        font-size: 1.5rem;
        padding: 5px;
    }
    .timer-label {
        font-size: 0.6rem;
    }
}
.service-benefits, .service-pricing, .online-calculator, .repair-stages {
    margin: 50px 0;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}
.service-benefits h2, .service-pricing h2, .online-calculator h2, .repair-stages h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}
.service-benefits ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.service-benefits li {
    padding: 12px 0 12px 30px;
    position: relative;
}
.service-benefits li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.pricing-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    margin: 30px 0;
}
.pricing-item {
    flex: 1;
    min-width: 150px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pricing-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2a5bd7;
}
.pricing-label {
    font-size: 1rem;
    color: #6c757d;
}
.pricing-subnote {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 20px;
}
.online-calculator {
    text-align: center;
}
.calc-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b00;
    margin: 20px 0;
}
.calc-discount {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}
.calc-discount span {
    background: #ff6b00;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
}
.calc-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.calc-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 250px;
}
.calc-btn {
    background: #2a5bd7;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.repair-stages .stages-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-header-grid {
        flex-direction: column;
    }
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .heading h1 {
        font-size: 1.8rem;
    }
    .pricing-columns {
        flex-direction: column;
        align-items: center;
    }
    .calc-form {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================
   УЛУЧШЕННЫЙ СТИЛЬ ДЛЯ СТРАНИЦЫ УСЛУГИ
   ============================================ */

/* Основной контейнер */
.service-extra-content {
    margin-top: 60px;
    padding: 40px 0px;
    background: #ffffff;
    border-radius: 20px;

    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.8;
}

/* Декоративный элемент сверху */


@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Заголовки */
.service-extra-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #0f172a;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.service-extra-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a5bd7, #6c8ef5);
    border-radius: 4px;
}

.service-extra-content h2 i {
    margin-right: 12px;
    color: #2a5bd7;
    font-size: 1.8rem;
}

.service-extra-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 40px 0 16px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-extra-content h3 i {
    color: #2a5bd7;
    font-size: 1.4rem;
}

.service-extra-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: #334155;
}

/* Параграфы */
.service-extra-content p {
    margin-bottom: 1.4em;
    font-size: 1.05rem;
    color: #334155;
}

.service-extra-content strong {
    color: #2a5bd7;
    font-weight: 600;
}

/* ============================================
   ТАБЛИЦА ЦЕН (улучшенная)
   ============================================ */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0 20px;
    border-radius: 16px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #1e293b, #2a5bd7);
    color: #fff;
}

.pricing-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-table tbody td {
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: #f8fafc;
}

.pricing-table tbody td:first-child {
    font-weight: 500;
    color: #0f172a;
}

.pricing-table tbody td:last-child {
    color: #10b981;
    font-weight: 600;
}

/* ============================================
   FAQ (аккордеон-стиль)
   ============================================ */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.faq-list li {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0;
    transition: all 0.25s ease;
    border: 1px solid #e9edf2;
    overflow: hidden;
}

.faq-list li:hover {
    border-color: #2a5bd7;
    box-shadow: 0 4px 12px rgba(42, 91, 215, 0.08);
}

.faq-list li:last-child {
    margin-bottom: 0;
}

.faq-list strong {
    display: block;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: background 0.2s;
    user-select: none;
}

.faq-list strong::after {
    content: '▾';
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-list li:hover strong {
    background: #f1f5f9;
}

.faq-list li.active strong::after {
    transform: rotate(180deg);
}

.faq-list p {
    padding: 0 24px 20px 24px;
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    display: none;
}

.faq-list li.active p {
    display: block;
}

/* ============================================
   ЗАКЛЮЧИТЕЛЬНЫЙ БЛОК (с визуальным акцентом)
   ============================================ */
.seo-closing {
    margin-top: 45px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
    border-radius: 16px;
    border-left: 6px solid #2a5bd7;
    box-shadow: 0 4px 16px rgba(42, 91, 215, 0.06);
    font-size: 1rem;
    color: #1e293b;
    position: relative;
}

.seo-closing::before {
    content: '⚡';
    position: absolute;
    top: -12px;
    left: -12px;
    background: #2a5bd7;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(42, 91, 215, 0.3);
}

.seo-closing strong {
    color: #2a5bd7;
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ УКРАШЕНИЯ (списки, цитаты)
   ============================================ */
.service-extra-content ul,
.service-extra-content ol {
    padding-left: 28px;
    margin: 20px 0 25px;
}

.service-extra-content ul li,
.service-extra-content ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #334155;
    position: relative;
}

.service-extra-content ul li::marker {
    color: #2a5bd7;
    font-weight: 600;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */
@media (max-width: 768px) {
    .service-extra-content {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .service-extra-content h2 {
        font-size: 1.6rem;
        padding-bottom: 14px;
    }

    .service-extra-content h2::after {
        width: 50px;
        height: 3px;
    }

    .service-extra-content h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .faq-list strong {
        padding: 14px 18px;
        font-size: 0.98rem;
    }

    .faq-list p {
        padding: 0 18px 16px 18px;
        font-size: 0.92rem;
    }

    .seo-closing {
        padding: 20px 18px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .service-extra-content h2 {
        font-size: 1.3rem;
    }

    .service-extra-content h3 {
        font-size: 1.1rem;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .seo-closing {
        padding: 16px 14px;
    }
}