.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.service-card h3 {
    margin: 10px 0;
    font-size: 18px;
}
.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;
}
.service-pricing {
    margin: 10px 0;
    font-size: 16px;
}

.price {
    font-weight: 700;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}
.service-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: black;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.service-button:hover {
    background: #333;
}
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.service-card {
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.prices-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.price-group {
    margin-bottom: 40px;
}

.price-group h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.price-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    color: #333;
}

.price-value {
    font-weight: 600;
    white-space: nowrap;
}
.price-note {
    color: #777;
    margin-bottom: 25px;
}

/* ============================================
   VIOC-style (Valvoline) оформление
   ============================================ */

:root {
    --vioc-orange: #E85C0D;
    --vioc-orange-hover: #d14a09;
    --vioc-dark: #1a1a1a;
    --vioc-dark-alt: #2d2d2d;
    --vioc-text: #333;
    --vioc-text-muted: #666;
    --vioc-bg-alt: #f5f5f5;
    --vioc-border: #e8e8e8;
    --vioc-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --vioc-radius: 8px;
}

/* --- Страница услуг (VIOC-style) --- */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.services-page .services-group {
    margin-bottom: 56px;
}

.services-page .services-group:first-child {
    margin-top: 24px;
}

.services-page .services-group h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange);
    display: inline-block;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.services-page .service-card {
    background: #fff;
    border-radius: var(--vioc-radius);
    padding: 28px 24px;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(232, 92, 13, 0.12);
    border-color: rgba(232, 92, 13, 0.25);
}

.services-page .service-card .service-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.services-page .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.services-page .service-card p {
    color: var(--vioc-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.services-page .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-orange);
    margin-top: auto;
}

.services-page .service-card .service-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--vioc-orange);
    color: #fff !important;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.services-page .service-card .service-link:hover {
    background: var(--vioc-orange-hover);
    color: #fff !important;
}

/* Вся карточка кликабельна через stretched link */
.service-card {
    cursor: pointer;
}
.service-card .service-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.service-card .service-button,
.service-card .js-open-booking {
    position: relative;
    z-index: 2;
}

/* --- Страница цен (VIOC-style) --- */
.prices-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.prices-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange);
    display: inline-block;
}

.prices-page .price-note {
    color: var(--vioc-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 32px;
}

.prices-page .price-group h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.prices-page .price-table {
    background: #fff;
    border-radius: var(--vioc-radius);
    overflow: hidden;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
}

.prices-page .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--vioc-border);
    transition: background 0.15s ease;
}

.prices-page .price-row:hover {
    background: rgba(232, 92, 13, 0.04);
}

.prices-page .price-row:last-child {
    border-bottom: none;
}

.prices-page .price-name {
    color: var(--vioc-text);
    font-size: 1rem;
}

.prices-page .price-value {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--vioc-orange);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .services-page .services-grid {
        grid-template-columns: 1fr;
    }
    .prices-page .price-row {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* --- Contact Form 7 --- */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.wpcf7 input[type="submit"] {
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.wpcf7 input[type="submit"]:hover {
    background: #333;
}

/* --- Футер в стиле Valvoline --- */
.footer-contact-block {
    background: #1a1a1a;
    color: #fff;
    padding: 32px 24px;
}
.footer-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 28px 40px;
}
.footer-contact-col {
    flex: 0 1 auto;
    min-width: 200px;
}
.footer-contact-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: #fff;
}
.footer-hours,
.footer-contact-col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}
.footer-call-label {
    font-size: 13px;
    margin-bottom: 6px !important;
    color: rgba(255,255,255,0.85);
}
.footer-phone-list {
    font-size: 18px;
    font-weight: 600;
}
.footer-phone-list a,
.footer-contact-email a {
    color: #fff;
    text-decoration: none;
}
.footer-phone-list a:hover,
.footer-contact-email a:hover {
    color: var(--vioc-orange, #e85c0d);
}
.footer-phone-item {
    display: inline-block;
    margin-right: 12px;
}
.footer-phone-item a[href^="tel:"] {
    margin-right: 4px;
}

/* Копирайт внутри footer-contact-block */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Скрыть стандартный site-info от GP (если остался) */
.site-footer .copyright-bar,
footer.site-info {
    display: none !important;
}

/* Тёмный фон для всего футера */
.site-footer {
    background: var(--vioc-dark, #1a1a1a) !important;
    color: #fff;
}
.site-footer .inside-site-info {
    background: transparent;
}

/* Sticky footer: прижат к низу, если контента мало */
html {
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#page {
    flex: 1 0 auto;
    width: 100%;
}
.site-footer {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-contact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact-col {
        min-width: 100%;
    }
}

/* --- FAQ page (VIOC-like style) --- */
.page-template-page-faq .site-content,
.page-template-page-faq .content-area,
.page-template-page-faq .site-main,
.page-template-page-faq #primary {
    min-width: 0;
}

.page-template-page-faq .site-content {
    display: block;
}

.page-template-page-faq .content-area {
    width: 100% !important;
    margin: 0 !important;
}

.page-template-page-faq .site-main {
    margin: 0 !important;
}

.page-template-page-faq .is-right-sidebar,
.page-template-page-faq .is-left-sidebar,
.page-template-page-faq .widget-area {
    display: none !important;
}

.sto-faq-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    box-sizing: border-box;
}

.sto-faq-page .sto-faq-title {
    margin: 0 0 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--vioc-orange, #e85c0d);
    color: var(--vioc-dark, #1a1a1a);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.sto-faq-list {
    display: block;
    width: 100%;
    border-top: 1px solid var(--vioc-border, #e8e8e8);
}

.sto-faq-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--vioc-border, #e8e8e8);
    margin: 0;
    padding: 0;
}

.sto-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 18px 0;
    color: var(--vioc-dark, #1a1a1a);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.sto-faq-question::-webkit-details-marker {
    display: none;
}

.sto-faq-question::marker {
    content: "";
}

.sto-faq-question::after {
    content: "+";
    flex: 0 0 auto;
    margin-left: 8px;
    color: var(--vioc-orange, #e85c0d);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.sto-faq-item[open] .sto-faq-question::after {
    content: "−";
}

.sto-faq-answer {
    margin: 0;
    padding: 0 0 18px;
    color: var(--vioc-text, #333);
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sto-faq-answer p:last-child {
    margin-bottom: 0;
}

.sto-faq-empty {
    color: var(--vioc-text-muted, #666);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 640px) {
    .sto-faq-page {
        padding: 28px 16px 44px;
    }

    .sto-faq-page .sto-faq-title {
        margin-bottom: 22px;
        font-size: 1.65rem;
    }

    .sto-faq-question {
        padding: 16px 0;
        font-size: 1rem;
    }

    .sto-faq-question::after {
        font-size: 1.35rem;
    }

    .sto-faq-answer {
        padding-bottom: 16px;
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* ============================================
   Service card micro-benefits
   ============================================ */
.service-card-benefits {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-card-benefits li {
    font-size: 0.8125rem;
    color: var(--vioc-text, #333);
    background: var(--vioc-bg-alt, #f5f5f5);
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1.3;
    white-space: nowrap;
}

.service-card-benefits li::before {
    content: "\2713\00a0";
    color: var(--vioc-orange);
    font-weight: 700;
}

/* ============================================
   Service card actions (page-services)
   ============================================ */
.service-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.service-card-actions .service-button {
    margin-top: 0;
}

/* ============================================
   Sticky booking button
   ============================================ */
.sticky-booking-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vioc-orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(232,92,13,0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-booking-btn:hover {
    background: var(--vioc-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,92,13,0.45);
}

.sticky-booking-btn svg {
    flex-shrink: 0;
}

/* ============================================
   Booking modal (popup CF7)
   ============================================ */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.booking-modal-overlay.is-active {
    display: flex;
}

.booking-modal {
    position: relative;
    background: #fff;
    border-radius: var(--vioc-radius, 8px);
    padding: 32px 28px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: bookingModalIn 0.25s ease;
}

@keyframes bookingModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.15s;
}

.booking-modal-close:hover {
    color: var(--vioc-dark, #1a1a1a);
}

.booking-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 20px;
}

/* ============================================
   Homepage — full-width, no sidebar
   ============================================ */
body.home .site-content,
body.home.right-sidebar .site-content {
    display: block !important;
}

body.home .site-content .content-area,
body.home.right-sidebar .site-content .content-area,
body.home .content-area,
body.home #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.home .site-main,
body.home.right-sidebar .site-main {
    margin: 0 !important;
    width: 100% !important;
}

body.home #right-sidebar,
body.home .widget-area,
body.home .is-right-sidebar {
    display: none !important;
}

/* --- Homepage sections layout --- */
.sto-home {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sto-hero {
    text-align: center;
    padding: 64px 0 48px;
}

.sto-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    line-height: 1.2;
}

.sto-hero-subtitle {
    font-size: 1.15rem;
    color: var(--vioc-text-muted, #666);
    margin: 0 0 28px;
}

.sto-hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--vioc-orange, #E85C0D);
    color: #fff !important;
    border-radius: var(--vioc-radius, 8px);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.sto-hero-cta:hover {
    background: var(--vioc-orange-hover, #cf4e08);
    transform: translateY(-2px);
}

.sto-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--vioc-dark, #1a1a1a);
    text-align: center;
    margin: 0 0 32px;
}

.sto-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.sto-promo-card {
    background: #fff;
    border-radius: var(--vioc-radius, 8px);
    padding: 28px 24px;
    box-shadow: var(--vioc-shadow, 0 2px 12px rgba(0,0,0,.06));
    text-align: center;
}

.sto-promo-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.sto-promo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 8px;
}

.sto-promo-text {
    font-size: 0.9375rem;
    color: var(--vioc-text-muted, #666);
    line-height: 1.5;
    margin: 0;
}

.sto-popular {
    padding: 48px 0;
}

.sto-popular-grid {
    max-width: 100%;
}

.sto-cta {
    text-align: center;
    padding: 32px 0 64px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sto-cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: var(--vioc-orange, #E85C0D);
    color: #fff !important;
    border-radius: var(--vioc-radius, 8px);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.sto-cta-button:hover {
    background: var(--vioc-orange-hover, #cf4e08);
    transform: translateY(-2px);
}

.sto-cta-button-outline {
    background: transparent;
    color: var(--vioc-orange, #E85C0D) !important;
    border: 2px solid var(--vioc-orange, #E85C0D);
}

.sto-cta-button-outline:hover {
    background: var(--vioc-orange, #E85C0D);
    color: #fff !important;
}

@media (max-width: 768px) {
    .sto-home {
        padding: 0 16px;
    }

    .sto-hero {
        padding: 40px 0 32px;
    }

    .sto-hero-title {
        font-size: 1.75rem;
    }

    .sto-hero-subtitle {
        font-size: 1rem;
    }

    .sto-section-title {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }

    .sto-popular {
        padding: 32px 0;
    }

    .sto-cta {
        padding: 24px 0 48px;
        flex-direction: column;
        align-items: center;
    }

    .sto-cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* ============================================
   Services archive page — full-width, no sidebar
   ============================================ */
body.page-template-page-services .site-content,
body.page-template-page-services.right-sidebar .site-content {
    display: block !important;
}

body.page-template-page-services .site-content .content-area,
body.page-template-page-services.right-sidebar .site-content .content-area,
body.page-template-page-services .content-area,
body.page-template-page-services #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.page-template-page-services .site-main,
body.page-template-page-services.right-sidebar .site-main {
    margin: 0 !important;
    width: 100% !important;
}

body.page-template-page-services #right-sidebar,
body.page-template-page-services .widget-area,
body.page-template-page-services .is-right-sidebar {
    display: none !important;
}

/* ============================================
   Single service page — full-width, no sidebar
   ============================================ */
body.single-services .site-content,
body.single-services.right-sidebar .site-content {
    display: block !important;
}

body.single-services .site-content .content-area,
body.single-services.right-sidebar .site-content .content-area,
body.single-services .content-area,
body.single-services #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.single-services .site-main,
body.single-services.right-sidebar .site-main {
    margin: 0 !important;
    width: 100% !important;
}

body.single-services #right-sidebar,
body.single-services .widget-area,
body.single-services .is-right-sidebar {
    display: none !important;
}

/* Contacts page — full-width, no sidebar */
body.page-template-page-contacts-php.right-sidebar .site-content,
body.page-template-page-contacts-php .site-content {
    display: block !important;
}

body.page-template-page-contacts-php .site-content .content-area,
body.page-template-page-contacts-php.right-sidebar .site-content .content-area,
body.page-template-page-contacts-php .content-area,
body.page-template-page-contacts-php #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.page-template-page-contacts-php .site-main,
body.page-template-page-contacts-php.right-sidebar .site-main {
    margin: 0 !important;
}

body.page-template-page-contacts-php #right-sidebar,
body.page-template-page-contacts-php .widget-area,
body.page-template-page-contacts-php .is-right-sidebar {
    display: none !important;
}

.sto-contacts-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.sto-contacts-map {
    margin-top: 24px;
}

.sto-contacts-map iframe {
    display: block;
    width: 100%;
    border-radius: var(--vioc-radius, 8px);
}

.service-single .service-single-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.service-breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.8125rem;
    color: var(--vioc-text-muted, #666);
}

.service-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-breadcrumbs-list li:not(:last-child)::after {
    content: "/";
    color: var(--vioc-border, #ccc);
    font-weight: 400;
    pointer-events: none;
}

.service-breadcrumbs-list a {
    color: var(--vioc-orange);
    text-decoration: none;
}

.service-breadcrumbs-list a:hover {
    text-decoration: underline;
}

.service-breadcrumbs-list li[aria-current="page"] {
    color: var(--vioc-text, #333);
    font-weight: 600;
    max-width: 100%;
}

.service-single-header {
    position: relative;
    margin-bottom: 20px;
}

.service-single-header .promo-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.service-single-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-single .entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0;
    line-height: 1.2;
}

.service-hero-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 24px;
    padding: 18px 20px;
    background: var(--vioc-bg-alt, #f5f5f5);
    border-radius: var(--vioc-radius, 8px);
    border-left: 4px solid var(--vioc-orange);
}

.service-hero-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
    flex: 1;
    min-width: 0;
}

.service-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.service-hero-cta .service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.service-hero-cta .service-button:not(.service-button-outline) {
    background: var(--vioc-orange);
    color: #fff;
    border-color: var(--vioc-orange);
}

.service-hero-cta .service-button:not(.service-button-outline):hover {
    background: var(--vioc-orange-hover);
    border-color: var(--vioc-orange-hover);
}

.service-hero-cta .service-button-outline {
    background: #fff;
    color: var(--vioc-orange);
    border-color: var(--vioc-orange);
}

.service-hero-cta .service-button-outline:hover {
    background: var(--vioc-orange);
    color: #fff;
}

.service-single-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 10px;
}

.service-price-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vioc-text-muted, #666);
    text-transform: lowercase;
}

.service-single-price-block .old-price {
    font-size: 1rem;
}

.service-single-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vioc-orange);
}

.service-single-price-request {
    font-size: 1.0625rem;
    font-weight: 600;
}

.service-single-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vioc-text, #333);
}

.service-single-duration svg {
    color: var(--vioc-orange);
}

.service-single-desc {
    color: var(--vioc-text-muted, #666);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.service-single .entry-content {
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-single .entry-content h2,
.service-single .entry-content h3 {
    margin-top: 28px;
    color: var(--vioc-dark, #1a1a1a);
}

/* Features checklist */
.service-features {
    margin-bottom: 32px;
}

.service-features h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.service-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--vioc-border, #e8e8e8);
    font-size: 1rem;
    color: var(--vioc-text, #333);
    line-height: 1.5;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ on single service (reuses sto-faq-* from page-faq) */
.service-faq {
    margin-bottom: 32px;
}

.service-faq h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

/* Related services ("Часто ремонтируем вместе") */
.service-related {
    margin-bottom: 32px;
}

.service-related h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vioc-dark, #1a1a1a);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vioc-orange);
    display: inline-block;
}

.service-related-intro {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--vioc-text-muted, #666);
    margin: 0 0 16px;
    max-width: 640px;
}

.service-related-grid {
    display: grid;
    gap: 12px;
}

.service-related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--vioc-border, #e8e8e8);
    border-radius: var(--vioc-radius, 8px);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-related-card:hover {
    border-color: rgba(232, 92, 13, 0.3);
    box-shadow: 0 4px 16px rgba(232, 92, 13, 0.08);
}

.service-related-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-related-info {
    flex: 1;
    min-width: 0;
}

.service-related-title {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--vioc-dark, #1a1a1a);
    line-height: 1.3;
}

.service-related-price {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--vioc-orange);
    margin-top: 2px;
}

.service-related-arrow {
    flex-shrink: 0;
    color: var(--vioc-orange);
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-related-card:hover .service-related-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* "Why us" banner (VIOC blue-style full-width) */
:root {
    --vioc-blue: #00316d;
    --vioc-blue-light: #087aaf;
}

.service-why-banner {
    background: var(--vioc-blue);
    color: #fff;
    padding: 64px 24px;
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.service-why-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-why-banner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
    color: #fff;
}

.service-why-banner h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vioc-orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

.service-why-banner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .service-why-banner {
        padding: 44px 16px;
    }

    .service-why-banner h2 {
        font-size: 1.35rem;
    }

    .service-why-banner p {
        font-size: 1rem;
    }
}

/* CTA block (footer) */
.service-single-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--vioc-border, #e8e8e8);
}

.service-single-cta .service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.service-single-cta .service-button:not(.service-button-outline) {
    background: var(--vioc-orange);
    color: #fff;
    border-color: var(--vioc-orange);
}

.service-single-cta .service-button:not(.service-button-outline):hover {
    background: var(--vioc-orange-hover);
    border-color: var(--vioc-orange-hover);
}

.service-single-cta .service-button-outline {
    background: transparent;
    color: var(--vioc-orange);
    border-color: var(--vioc-orange);
}

.service-single-cta .service-button-outline:hover {
    background: var(--vioc-orange);
    color: #fff;
}

/* ============================================
   Mobile: single service + sticky + modal
   ============================================ */
@media (max-width: 640px) {
    .sticky-booking-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .booking-modal {
        padding: 24px 16px;
        border-radius: 12px 12px 0 0;
        max-height: 85vh;
        align-self: flex-end;
    }

    .service-single .service-single-inner {
        padding: 20px 16px 44px;
    }

    .service-single .entry-title {
        font-size: 1.5rem;
    }

    .service-hero-panel {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .service-hero-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-cta {
        flex-direction: column;
    }

    .service-hero-cta .service-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .service-single-price {
        font-size: 1.35rem;
    }

    .service-single-cta {
        flex-direction: column;
    }

    .service-single-cta .service-button {
        width: 100%;
        text-align: center;
    }

    .service-card-actions {
        flex-direction: column;
    }

    .service-card-actions .service-link,
    .service-card-actions .service-button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Car mark/model autocomplete in booking modal
   ============================================ */
.car-select-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.car-ac-wrap {
    position: relative;
}

.car-ac-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: var(--vioc-text, #333);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.car-ac-input:disabled {
    background-color: var(--vioc-bg-alt, #f5f5f5);
    color: #999;
    cursor: not-allowed;
}

.car-ac-input:focus {
    border-color: var(--vioc-orange, #E85C0D);
    outline: none;
    box-shadow: 0 0 0 2px rgba(232, 92, 13, 0.15);
}

.car-ac-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    z-index: 100010;
    -webkit-overflow-scrolling: touch;
}

.car-ac-option {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--vioc-text, #333);
    cursor: pointer;
    transition: background .15s;
}

.car-ac-option:hover {
    background: var(--vioc-bg-alt, #f5f5f5);
}

.car-ac-header {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--vioc-orange, #E85C0D);
    background: var(--vioc-bg-alt, #f9f9f9);
    border-bottom: 1px solid #eee;
    pointer-events: none;
}

.car-ac-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #999;
    text-align: center;
}

/* Главная: блок доверия «Почему выбирают нас» */
.trust-block {
    padding: 60px 20px;
    background: #f7f7f7;
}

.trust-block .container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-block h2 {
    text-align: center;
    margin-bottom: 20px;
}

.trust-lead .trust-text {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    color: #555;
    line-height: 1.55;
}

.trust-lead .trust-text:last-child {
    margin-bottom: 0;
}

.trust-lead {
    margin-bottom: 30px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.trust-photo {
    margin: 32px 0 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.trust-photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Главная: отзывы (скрины переписок / карты) */
.sto-reviews-block {
    padding: 56px 20px 64px;
    background: #fff;
}

.sto-reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sto-reviews-heading {
    text-align: center;
    margin: 0 0 12px;
}

.sto-reviews-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
    color: #555;
    line-height: 1.5;
}

.sto-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sto-review-card {
    margin: 0;
}

.sto-review-figure {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.sto-review-image-link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    outline-offset: 2px;
}

.sto-review-image-link:focus-visible {
    outline: 2px solid #333;
}

.sto-review-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.sto-review-badge--chat {
    background: #2563eb;
}

.sto-review-badge--maps {
    background: #059669;
}

.sto-review-badge--other {
    background: #4b5563;
}

.sto-review-img {
    display: block;
    width: 100%;
    height: auto;
}

.sto-review-zoom-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 10px 10px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.sto-review-image-link:hover .sto-review-zoom-hint,
.sto-review-image-link:focus-visible .sto-review-zoom-hint {
    opacity: 1;
}

.sto-review-caption {
    padding: 12px 14px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sto-review-caption-text {
    font-weight: 600;
}

.sto-review-source-note {
    font-size: 12px;
    color: #777;
}

@media (max-width: 900px) {
    .sto-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .sto-reviews-grid {
        grid-template-columns: 1fr;
    }

    .sto-review-zoom-hint {
        opacity: 0.85;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sto-review-zoom-hint {
        transition: none;
    }
}

/* ============================================
   VIOC refresh: palette + key UI components
   ============================================ */
:root {
    --vioc-orange: #e22014;
    --vioc-orange-hover: #c71b11;
    --vioc-blue: #0f206c;
    --vioc-blue-light: #0083cb;
    --vioc-dark: #111827;
    --vioc-dark-alt: #0b163f;
    --vioc-text: #1f2937;
    --vioc-text-muted: #4b5563;
    --vioc-bg-alt: #f3f6fb;
    --vioc-border: #dbe3ef;
    --vioc-shadow: 0 10px 28px rgba(15, 32, 108, 0.12);
    --vioc-radius: 10px;
}

body {
    color: var(--vioc-text);
    background: #f7f9fc;
}

/* --- White header (VIOC-style) --- */
.site-header,
#masthead {
    background: #fff !important;
    border-bottom: 1px solid var(--vioc-border);
    box-shadow: 0 2px 8px rgba(15, 32, 108, 0.06);
}

.inside-header {
    min-height: 70px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Logo and site title - blue */
.site-header .site-logo a,
.site-header .main-title a,
.site-branding a {
    color: var(--vioc-blue) !important;
    font-weight: 700;
}

.site-header .site-logo a:hover,
.site-header .main-title a:hover {
    color: var(--vioc-blue-light) !important;
}

.site-header .site-description {
    color: var(--vioc-text-muted) !important;
    font-size: 0.85rem;
}

/* Navigation - white background, blue text */
#site-navigation,
#site-navigation.main-navigation,
.main-navigation,
.nav-float-right #site-navigation {
    background: #fff !important;
}

#site-navigation .main-nav > ul > li > a,
.main-navigation .main-nav > ul > li > a,
#site-navigation .menu-bar-item > a,
.main-navigation .menu-bar-item > a {
    color: var(--vioc-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#site-navigation .main-nav > ul > li > a:hover,
.main-navigation .main-nav > ul > li > a:hover,
#site-navigation .menu-bar-item > a:hover,
.main-navigation .menu-bar-item > a:hover {
    color: var(--vioc-blue) !important;
    background: rgba(15, 32, 108, 0.04);
}

#site-navigation .main-nav > ul > li.current-menu-item > a,
.main-navigation .main-nav > ul > li.current-menu-item > a {
    color: var(--vioc-blue) !important;
    background: rgba(15, 32, 108, 0.06);
}

/* Dropdown menus */
.main-navigation .main-nav ul ul {
    background: #fff !important;
    border-top: 3px solid var(--vioc-orange);
    box-shadow: 0 12px 24px rgba(15, 32, 108, 0.15);
    border-radius: 0 0 8px 8px;
}

.main-navigation .main-nav ul ul li a {
    color: var(--vioc-dark) !important;
    font-weight: 500;
}

.main-navigation .main-nav ul ul li a:hover {
    color: var(--vioc-blue) !important;
    background: rgba(15, 32, 108, 0.04);
}

/* Mobile menu toggle */
.menu-toggle,
#site-navigation .menu-toggle,
#mobile-menu-control-wrapper .menu-toggle {
    color: var(--vioc-blue) !important;
    background: transparent;
    border: 2px solid var(--vioc-border);
    border-radius: 6px;
    padding: 8px 12px;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    color: var(--vioc-orange) !important;
    border-color: var(--vioc-orange);
}

#mobile-menu-control-wrapper {
    background: #fff !important;
}

/* Search icon */
#site-navigation .search-item a,
.navigation-search input {
    color: var(--vioc-blue) !important;
}

#site-navigation .search-item a:hover {
    color: var(--vioc-orange) !important;
}

/* CTA button in header */
.site-header .vioc-cta,
.site-header .header-widget .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--vioc-orange) !important;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(226, 32, 20, 0.25);
    transition: all 0.2s ease;
}

.site-header .vioc-cta:hover,
.site-header .header-widget .button:hover {
    background: var(--vioc-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 32, 20, 0.35);
}

.site-header .vioc-cta,
.site-header .header-widget .button,
.service-button,
.sto-hero-cta,
.sto-cta-button,
.service-hero-cta .service-button:not(.service-button-outline),
.service-single-cta .service-button:not(.service-button-outline),
.wpcf7 input[type="submit"] {
    background: var(--vioc-orange) !important;
    border-color: var(--vioc-orange) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(226, 32, 20, 0.24);
}

.site-header .vioc-cta:hover,
.site-header .header-widget .button:hover,
.service-button:hover,
.sto-hero-cta:hover,
.sto-cta-button:hover,
.service-hero-cta .service-button:not(.service-button-outline):hover,
.service-single-cta .service-button:not(.service-button-outline):hover,
.wpcf7 input[type="submit"]:hover {
    background: var(--vioc-orange-hover) !important;
    border-color: var(--vioc-orange-hover) !important;
}

.sto-cta-button-outline,
.service-hero-cta .service-button-outline,
.service-single-cta .service-button-outline {
    color: var(--vioc-blue) !important;
    border-color: var(--vioc-blue);
}

.sto-cta-button-outline:hover,
.service-hero-cta .service-button-outline:hover,
.service-single-cta .service-button-outline:hover {
    background: var(--vioc-blue);
    border-color: var(--vioc-blue);
    color: #fff !important;
}

.services-page .service-card,
.prices-page .price-table,
.sto-promo-card,
.service-related-card,
.trust-item,
.sto-review-figure {
    border: 1px solid var(--vioc-border);
    border-radius: var(--vioc-radius);
    box-shadow: var(--vioc-shadow);
}

.services-page .service-card:hover,
.service-related-card:hover {
    box-shadow: 0 14px 32px rgba(15, 32, 108, 0.18);
}

.services-page .services-group h2,
.prices-page h1,
.prices-page .price-group h2,
.service-features h2,
.service-faq h2,
.service-related h2,
.sto-faq-page .sto-faq-title {
    border-bottom-color: var(--vioc-blue-light);
}

.service-why-banner {
    background: linear-gradient(135deg, var(--vioc-blue) 0%, #132c8f 100%);
}

.service-why-banner h2::after {
    background: var(--vioc-blue-light);
}

/* ============================================
   VIOC Stage 2: Hero + Features + Trust refresh
   ============================================ */

/* --- Hero redesign --- */
.sto-hero {
    position: relative;
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--vioc-blue) 0%, #132c8f 50%, var(--vioc-dark-alt) 100%);
    border-radius: 0 0 var(--vioc-radius) var(--vioc-radius);
    margin: 0 -20px 40px;
    overflow: hidden;
}

.sto-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.sto-hero-title {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.sto-hero-subtitle {
    position: relative;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.92);
    margin: 0 0 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.sto-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: var(--vioc-orange) !important;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(226, 32, 20, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sto-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(226, 32, 20, 0.45);
    background: var(--vioc-orange-hover) !important;
}

.sto-hero-cta::after {
    content: "→";
    font-size: 1.2em;
    transition: transform 0.2s ease;
}

.sto-hero-cta:hover::after {
    transform: translateX(4px);
}

/* --- Features bar --- */
.sto-features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: -30px auto 48px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.sto-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 50px;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vioc-dark);
}

.sto-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vioc-blue-light) 0%, var(--vioc-blue) 100%);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.sto-feature-icon svg {
    width: 20px;
    height: 20px;
}

/* --- Section titles redesign --- */
.sto-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--vioc-dark);
    text-align: center;
    margin: 0 0 40px;
    position: relative;
    padding-bottom: 16px;
}

.sto-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vioc-orange) 0%, var(--vioc-blue-light) 100%);
    border-radius: 2px;
}

/* --- Trust block redesign --- */
.trust-block {
    padding: 64px 20px;
    background: linear-gradient(180deg, #fff 0%, var(--vioc-bg-alt) 100%);
    border-radius: var(--vioc-radius);
    margin-bottom: 40px;
}

.trust-block h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--vioc-dark);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.trust-block h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vioc-orange) 0%, var(--vioc-blue-light) 100%);
    border-radius: 2px;
}

.trust-lead {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--vioc-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.trust-item {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--vioc-radius);
    text-align: center;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 32, 108, 0.15);
}

.trust-item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vioc-blue-light) 0%, var(--vioc-blue) 100%);
    border-radius: 50%;
    color: #fff;
    margin: 0 auto 16px;
}

.trust-item-icon svg {
    width: 28px;
    height: 28px;
}

.trust-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin: 0 0 8px;
}

.trust-item-desc {
    font-size: 0.95rem;
    color: var(--vioc-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Promo cards redesign --- */
.sto-promo {
    margin-bottom: 48px;
}

.sto-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sto-promo-card {
    background: #fff;
    border-radius: var(--vioc-radius);
    padding: 32px 28px;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.sto-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 32, 108, 0.18);
}

.sto-promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vioc-orange) 0%, var(--vioc-blue-light) 100%);
}

.sto-promo-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.sto-promo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin: 0 0 12px;
}

.sto-promo-text {
    font-size: 1rem;
    color: var(--vioc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Popular services redesign --- */
.sto-popular {
    padding: 64px 0;
    background: #fff;
    border-radius: var(--vioc-radius);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: #fff;
    border-radius: var(--vioc-radius);
    padding: 28px;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 32, 108, 0.15);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vioc-orange) 0%, var(--vioc-blue-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vioc-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.service-card p {
    color: var(--vioc-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

.service-card-benefits {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card-benefits li {
    font-size: 0.8rem;
    color: var(--vioc-blue);
    background: rgba(15, 32, 108, 0.06);
    padding: 6px 12px;
    border-radius: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.service-card-benefits li::before {
    content: "✓";
    color: var(--vioc-orange);
    font-weight: 700;
    margin-right: 4px;
}

.service-price {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--vioc-border);
}

.service-price .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--vioc-orange);
}

.service-price .old-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 8px;
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--vioc-orange) 0%, #ff6b4a 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(226, 32, 20, 0.3);
}

.service-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.service-card-actions .service-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    color: var(--vioc-blue) !important;
    border: 2px solid var(--vioc-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-card-actions .service-link:hover {
    background: var(--vioc-blue);
    color: #fff !important;
}

.service-card-actions .service-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--vioc-orange);
    color: #fff !important;
    border: 2px solid var(--vioc-orange);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-card-actions .service-button:hover {
    background: var(--vioc-orange-hover);
    border-color: var(--vioc-orange-hover);
}

/* --- CTA section redesign --- */
.sto-cta {
    text-align: center;
    padding: 48px 20px 64px;
    background: linear-gradient(135deg, var(--vioc-bg-alt) 0%, #fff 100%);
    border-radius: var(--vioc-radius);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sto-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--vioc-orange);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(226, 32, 20, 0.3);
    transition: all 0.2s ease;
}

.sto-cta-button:hover {
    background: var(--vioc-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(226, 32, 20, 0.4);
}

.sto-cta-button-outline {
    background: transparent;
    color: var(--vioc-blue) !important;
    border: 2px solid var(--vioc-blue);
    box-shadow: none;
}

.sto-cta-button-outline:hover {
    background: var(--vioc-blue);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(15, 32, 108, 0.25);
}

/* --- Reviews section redesign --- */
.sto-reviews-block {
    padding: 64px 20px;
    background: linear-gradient(180deg, var(--vioc-bg-alt) 0%, #fff 100%);
    border-radius: var(--vioc-radius);
    margin-bottom: 40px;
}

.sto-reviews-heading {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--vioc-dark);
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 16px;
}

.sto-reviews-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vioc-orange) 0%, var(--vioc-blue-light) 100%);
    border-radius: 2px;
}

.sto-reviews-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    color: var(--vioc-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.sto-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sto-review-figure {
    background: #fff;
    border-radius: var(--vioc-radius);
    overflow: hidden;
    box-shadow: var(--vioc-shadow);
    border: 1px solid var(--vioc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sto-review-figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 32, 108, 0.15);
}

.sto-review-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sto-review-badge--chat {
    background: linear-gradient(135deg, var(--vioc-blue-light) 0%, var(--vioc-blue) 100%);
}

.sto-review-badge--maps {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* --- Responsive adjustments --- */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sto-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sto-hero {
        padding: 60px 16px 48px;
        margin: 0 -16px 32px;
    }
    
    .sto-features-bar {
        grid-template-columns: 1fr;
        margin-top: -20px;
        gap: 12px;
    }
    
    .sto-feature-pill {
        padding: 14px 18px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sto-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sto-promo-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .service-card-actions .service-link,
    .service-card-actions .service-button {
        width: 100%;
    }
    
    .sto-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .sto-cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ============================================
   About page (VIOC-inspired)
   ============================================ */
body.page-template-page-about .site-content,
body.page-template-page-about.right-sidebar .site-content {
    display: block !important;
}

body.page-template-page-about .site-content .content-area,
body.page-template-page-about.right-sidebar .site-content .content-area,
body.page-template-page-about .content-area,
body.page-template-page-about #primary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.page-template-page-about .site-main,
body.page-template-page-about.right-sidebar .site-main {
    margin: 0 !important;
    width: 100% !important;
}

body.page-template-page-about #right-sidebar,
body.page-template-page-about .widget-area,
body.page-template-page-about .is-right-sidebar {
    display: none !important;
}

.sto-about-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 36px 20px 64px;
}

.sto-about-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.sto-about-hero__content {
    background: linear-gradient(135deg, var(--vioc-blue) 0%, #132c8f 100%);
    color: #fff;
    padding: 34px;
    border-radius: var(--vioc-radius);
    box-shadow: var(--vioc-shadow);
}

.sto-about-hero__title {
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.2;
    color: #fff;
}

.sto-about-hero__text {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    line-height: 1.65;
}

.sto-about-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: var(--vioc-radius);
    box-shadow: var(--vioc-shadow);
}

.sto-about-stats {
    margin-bottom: 36px;
}

.sto-about-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sto-about-stats__item {
    background: #fff;
    border: 1px solid var(--vioc-border);
    border-radius: var(--vioc-radius);
    box-shadow: var(--vioc-shadow);
    padding: 18px 16px;
    text-align: center;
}

.sto-about-stats__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vioc-blue);
    line-height: 1.2;
}

.sto-about-stats__label {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    color: var(--vioc-text-muted);
}

.sto-about-section-title {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    margin: 0 0 18px;
    color: var(--vioc-dark);
}

.sto-about-story {
    margin-bottom: 40px;
}

.sto-about-story__text {
    background: #fff;
    border-radius: var(--vioc-radius);
    border: 1px solid var(--vioc-border);
    box-shadow: var(--vioc-shadow);
    padding: 24px;
    line-height: 1.75;
}

.sto-about-values {
    margin-bottom: 40px;
}

.sto-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sto-about-values__item {
    background: #fff;
    border: 1px solid var(--vioc-border);
    border-radius: var(--vioc-radius);
    box-shadow: var(--vioc-shadow);
    padding: 22px 18px;
}

.sto-about-values__item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--vioc-blue);
}

.sto-about-values__item p {
    margin: 0;
    color: var(--vioc-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sto-about-gallery {
    margin-bottom: 44px;
}

.sto-about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sto-about-gallery__item {
    margin: 0;
    background: #fff;
    border-radius: var(--vioc-radius);
    overflow: hidden;
    border: 1px solid var(--vioc-border);
    box-shadow: var(--vioc-shadow);
}

.sto-about-gallery__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.sto-about-gallery__item figcaption {
    padding: 10px 12px 12px;
    font-size: 0.88rem;
    color: var(--vioc-text-muted);
}

.sto-about-cta {
    background: linear-gradient(135deg, var(--vioc-blue) 0%, #132c8f 100%);
    color: #fff;
    border-radius: var(--vioc-radius);
    padding: 30px 28px;
    text-align: center;
}

.sto-about-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.sto-about-cta p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.92);
}

.sto-about-cta__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--vioc-orange);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sto-about-cta__button:hover {
    background: var(--vioc-orange-hover);
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .sto-about-hero {
        grid-template-columns: 1fr;
    }

    .sto-about-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sto-about-values__grid,
    .sto-about-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sto-about-page {
        padding: 24px 16px 120px;
    }

    .sto-about-hero__content {
        padding: 24px 18px;
    }

    .sto-about-stats__grid,
    .sto-about-values__grid,
    .sto-about-gallery__grid {
        grid-template-columns: 1fr;
    }

    .sto-about-gallery__item img {
        height: 200px;
    }
}
