/* =====================================================================
   ГЛОБАЛЬНЫЕ СТИЛИ И ОБНУЛЕНИЕ
   ===================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0b1c3a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.global-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ПЛАВНАЯ ПРОКРУТКА */
html {
    scroll-behavior: smooth;
}

/* МИНИМАЛИСТИЧНЫЙ СКРОЛЛБАР СТРАНИЦЫ */
::-webkit-scrollbar {
    width: 8px; 
}
::-webkit-scrollbar-track {
    background: #0b1c3a; 
}
::-webkit-scrollbar-thumb {
    background-color: #ff6b00; 
    border-radius: 20px; 
    border: 2px solid #0b1c3a; 
}
::-webkit-scrollbar-thumb:hover {
    background-color: #e05e00; 
}

@supports (scrollbar-width: thin) {
    html { scroll-width: thin; scrollbar-color: #ff6b00 #0b1c3a; }
}

/* АНИМАЦИИ ПОЯВЛЕНИЯ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================================
   КОМПАКТНАЯ ШАПКА САЙТА И ГЕРОЙ-СЕКЦИЯ
   ===================================================================== */
.hero-viewport {
    position: relative;
    background: linear-gradient(rgba(11, 28, 58, 0.85), rgba(11, 28, 58, 0.85)), 
                url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80") !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 75vh !important;
    display: flex;
    flex-direction: column;
}

.main-header {
    width: 100%;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
    background: rgba(11, 28, 58, 0.38);
    backdrop-filter: blur(12px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-lockup {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 11px !important;
    min-width: max-content;
    white-space: nowrap;
    line-height: 1;
}

.logo-mark {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 46px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 0, 0.18));
}

.logo-text {
    display: block !important;
    color: #ff6b00 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1;
    white-space: nowrap;
}

.logo span { color: #ff6b00; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.nav-link:hover { color: #ff6b00; }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
}

.lang-btn { cursor: pointer; transition: color 0.2s; padding: 2px 4px; }
.lang-btn:hover, .lang-btn.active { color: #ff6b00; }

.phone-btn {
    background-color: #ff6b00;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.phone-btn:hover { background-color: #e05e00; transform: translateY(-2px); }

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* ГЕРОЙ КОНТЕНТ */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content { flex: 1; max-width: 590px; }

.hero-lbl {
    display: inline-block;
    color: #ff6b00;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text { color: rgba(255, 255, 255, 0.86); font-size: 17px; max-width: 560px; margin-bottom: 18px; }

.hero-form-box { width: 100%; max-width: 460px; }

.hero-points {
    
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px 0;
}

.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 28, 58, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-point-icon {
    color: #ff6b00 !important;
    font-weight: 800;
    line-height: 1;
    font-size: 14px;
}

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

/* МНОГОШАГОВАЯ КАРТОЧКА КАЛЬКУЛЯТОРА */
.extended-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    pointer-events: auto !important;
    z-index: 10 !important;
}

.form-tabs-nav {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.tab-indicator { font-size: 12px; font-weight: 700; color: #a0aec0; }
.tab-indicator.active { color: #ff6b00; }

.form-step-content { display: none; position: relative; z-index: 10; overflow: visible !important; }
.form-step-content.active { display: block !important; }

.form-step-content h3 { font-size: 20px; margin-bottom: 4px; }
.step-subtitle { font-size: 13px; color: #718096; margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: #4a5568; margin-bottom: 6px; margin-top: 15px; cursor: pointer; }

/* КАСТОМНЫЕ ДРОПДАУНЫ */
.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    z-index: 99;
    
    
}

.custom-dropdown.open { z-index: 9999 !important; }

.dropdown-trigger-box {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e0;
    padding: 12px 15px;
    border-radius: 6px;
    
    font-size: 14px;
    color: #2d3748;
    
    user-select: none;
    
    
}

.dropdown-trigger-box::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
}

.custom-dropdown.open .dropdown-trigger-box { border-color: #ff6b00; border-radius: 6px 6px 0 0; }

.dropdown-menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff !important; 
    border: 1px solid #ff6b00;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 25px rgba(11, 28, 58, 0.15) !important;
    margin: 0;
    padding: 5px 0;
    list-style: none;
    z-index: 99999 !important;
}

.custom-dropdown.open .dropdown-menu-list { display: block !important; }

.dropdown-option {
    padding: 11px 15px;
    font-size: 14px;
    cursor: pointer;
    color: #4a5568;
    background-color: #ffffff !important;
    position: relative;
    z-index: 100000 !important;
}

.dropdown-option:hover { background-color: #f7fafc !important; color: #ff6b00 !important; }
.dropdown-option.selected { background-color: #edf2f7 !important; font-weight: 600; color: #0b1c3a !important; }

.modern-input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cbd5e0;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #2d3748;
    outline: none;
}
.modern-input:focus { border-color: #ff6b00; }

/* ФИКСАТОР ПОДЖАТИЯ И ВЫРАВНИВАНИЯ ИНПУТОВ НА ПК */
.form-inline-group { 
    display: grid !important; 
    grid-template-columns: 1.1fr 1fr 0.9fr !important; 
    gap: 12px !important; 
    align-items: end !important;
}
.form-inline-group .input-cell { margin-bottom: 0 !important; }

.modern-textarea {
    width: 100%; height: 80px; background-color: #ffffff; border: 1px solid #cbd5e0;
    padding: 12px 15px; border-radius: 6px; font-size: 14px; color: #2d3748; resize: none; outline: none;
}
.modern-textarea:focus { border-color: #ff6b00; }
.input-error { border-color: #e53e3e !important; background-color: #fff5f5 !important; }

/* КНОПКИ КАЛЬКУЛЯТОРА */
.form-nav-btn { width: 100%; padding: 14px; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 20px; transition: all 0.2s; }
.form-nav-btn.next { background-color: #ff6b00; color: #ffffff; }
.form-nav-btn.next:hover { background-color: #e05e00; }
.form-nav-row-btns { display: flex; gap: 10px; }
.form-nav-btn.back { background-color: #edf2f7; color: #4a5568; width: 40%; }
.form-nav-btn.back:hover { background-color: #e2e8f0; }
.form-step-content .form-nav-row-btns .next { width: 60%; }
.form-submit-btn { width: 60%; padding: 14px; background-color: #0b1c3a; color: #ffffff; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 20px; transition: background 0.2s; }
.form-submit-btn:hover { background-color: #1a365d; }

/* =====================================================================
   СЕКЦИЯ СТАНДАРТОВ (СТРОГИЙ СТИЛЬ GEOMETRY БЕЗ ОКРУГЛЕНИЙ)
   ===================================================================== */
.standards-section {  background-color: #ffffff; }
.section-header-left { margin-bottom: 40px; }
.benefit-lbl, .section-lbl { color: #ff6b00; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.section-title-dark { font-size: 32px; margin-top: 5px; }
.standards-split-grid {
    
    
    
    
}
.comparison-visual-box h3, .standards-faq-box h3 { font-size: 20px; margin-bottom: 25px; }
.vs-cards-container { margin-bottom: 40px; }

.vs-card {
    background-color: #f7fafc;
     
    
    margin-bottom: 20px;
    
}

.vs-card.our-premium-side { 
     
    background-color: #fffaf0; 
    position: relative; 
    border-radius: 0 !important; 
}
.vs-card.our-premium-side:hover { transform: none !important; box-shadow: none !important; }

.vs-badge-top { 
    position: absolute; 
     
     
    background-color: #ff6b00; 
    color: #ffffff; 
     
    font-weight: 800; 
     
     
    text-transform: uppercase; 
}

.vs-card h5 {  margin-bottom: 15px; }

.vs-feature-item {
    
    
    
    margin-bottom: 20px;
}
.vs-feature-item:last-child {  }

.vs-icon-wrapper {
    flex: 0 0 auto;
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.vs-icon-wrapper.check {
    background-color: #e6fffa;
    color: #319795;
    border: 1px solid rgba(49, 151, 149, 0.2);
}
.vs-icon-wrapper.cross {
    background-color: #edf2f7;
    color: #a0aec0;
    border: 1px solid #e2e8f0;
}

.vs-feature-text { flex: 1; }
.vs-feature-tag {
    display: block;
    font-family: "Montserrat", sans-serif;
    
    font-weight: 700;
    color: #0b1c3a;
    text-transform: uppercase;
    
    
}

.vs-feature-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
}
.ordinary-side .vs-feature-text p { color: #718096; margin-top: 3px; }

.standards-faq-box {  flex-direction: column; }
.assurance-container {
    
    
    
    flex: none;
    
}
@media (max-width: 700px) {
    .assurance-container { grid-template-columns: 1fr; }
}

.assurance-card {
    
    
    
    background-color: #ffffff;
    
    
    
    
    
    transition: border-left-color 0.3s ease;
    
    
    
}
.assurance-card:hover {  }

.assurance-icon-box {
    flex: 0 0 auto;
    
    
    background-color: #fffaf0;
    
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.assurance-content-box {  }
.assurance-content-box h4 {
    
    
    font-weight: 700;
    
    margin-bottom: 8px;
    margin-top: 0 !important;
}
.assurance-content-box p {
    font-family: "Open Sans", sans-serif;
    
    
    
}

/* =====================================================================
   НОВЫЙ ОБЛЕГЧЕННЫЙ БЛОК СТАТИСТИКИ (ЭЛEГАНТНЫЙ МИНИМАЛИЗМ)
   ===================================================================== */
.stats-minimal-section {
    padding: 50px 0;
    background-color: #ffffff;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}
.stats-item {
    padding: 10px;
    position: relative;
}
.stats-num {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ff6b00;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.stats-lbl {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    line-height: 1.4;
    max-width: 220px;
    margin: 0 auto;
}

/* =====================================================================
   ТАБЛИЦА ЦЕН — ИНТЕРАКТИВНЫЙ БОРДЕР СЛЕВА
   ===================================================================== */
.services-minimal-section {   }
.services-min-header { margin-bottom: 40px; }
.services-table-wrapper {     }

.service-table-row {
     
     
     
    position: relative; 
    z-index: 1;
    border-left: 0 solid transparent; 
    transition: border-left 0.25s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.25s ease, background-color 0.2s ease;
}
.service-table-row:last-child {  }

.service-table-row:hover {
    background-color: #fffaf7 !important;
    border-left: 5px solid #ff6b00 !important; 
    padding-left: 25px !important; 
}

.ser-main-info {    margin-bottom: 15px; }
.ser-number { font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 800; color: #ff6b00; }
.ser-title-desc h4 { font-size: 18px; margin-bottom: 4px; }
.ser-title-desc p { font-size: 14px; color: #718096; }
.ser-meta-actions {
    
    justify-content: space-between;
    
    
    flex-wrap: wrap;
}
.ser-price {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0b1c3a;
    white-space: nowrap;
}
.ser-price span { font-size: 14px; color: #a0aec0; font-weight: 400; }
.ser-price-request {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #fff7ed;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 8px;
    color: #c2410c;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.ser-action-link {
    color: #ff6b00;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
}
.ser-action-link:hover { color: #e05e00; text-decoration: underline; }

/* =====================================================================
   СЕКЦИЯ РЕМОНТА
   ===================================================================== */
.repair-cleaning-section { padding: 80px 0; background-color: #ffffff; }
.repair-grid { display: block; }
.repair-content h2 { font-size: 32px; margin-top: 5px; margin-bottom: 20px; }
.repair-content p { font-size: 15px; color: #4a5568; margin-bottom: 25px; }
.repair-list { margin-bottom: 30px; }
.repair-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 14px; font-weight: 600; }
.repair-list li::before { content: "✓"; position: absolute; left: 0; color: #ff6b00; font-weight: 800; }
.repair-image-holder { overflow: hidden; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* =====================================================================
   СЛАЙДЕР ГАЛЕРЕИ
   ===================================================================== */
.gallery-section { padding: 80px 0; background-color: #f7fafc; }
.gallery-header { margin-bottom: 40px; }
.gallery-slider-wrapper { position: relative; width: 100%; overflow: hidden; margin-bottom: 35px; }
.gallery-track { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.gallery-item {     cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.gallery-item img {    transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-controls-block {
    display: flex !important; align-items: center !important; justify-content: center !important;
    gap: 30px !important; max-width: 500px; margin: 0 auto !important; padding: 10px 0;
}
.custom-nav-btn {
    background: #ffffff !important; border: 2px solid #edf2f7 !important; width: 50px !important; height: 50px !important;
    border-radius: 14px !important; cursor: pointer; display: flex !important; align-items: center !important; justify-content: center !important;
    box-shadow: 0 4px 12px rgba(11, 28, 58, 0.03) !important; outline: none; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.custom-nav-btn .nav-arrow-icon { font-family: "Montserrat", sans-serif; font-size: 18px !important; font-weight: 700 !important; color: #0b1c3a !important; position: relative; z-index: 2; transition: color 0.3s ease !important; }
.custom-nav-btn::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ff6b00; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; z-index: 1; }
.custom-nav-btn:hover { border-color: #ff6b00 !important; box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25) !important; transform: translateY(-2px) !important; }
.custom-nav-btn:hover::before { transform: translateY(0); }
.custom-nav-btn:hover .nav-arrow-icon { color: #ffffff !important; }
.custom-nav-btn:active { transform: translateY(1px) !important; }

.gallery-pagination-line { flex: 1; height: 4px; background-color: #edf2f7; border-radius: 10px; position: relative; overflow: hidden; }
.pagination-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: linear-gradient(90deg, #ff6b00, #e05e00); border-radius: 10px; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; }

.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11, 28, 58, 0.95); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 25px; color: #ffffff; font-size: 35px; cursor: pointer; }

/* =====================================================================
   ЛИНИЯ ПРОЦЕССА
   ===================================================================== */
.workflow-section { background-color: #ffffff !important; padding: 100px 0 !important; }
.section-header-center { text-align: center; margin-bottom: 50px; }

.workflow-grid {
    display: flex !important; flex-direction: column !important;
    gap: 45px !important; padding: 40px 0 !important; position: relative;
}
.workflow-grid::before {
    content: ""; position: absolute; top: 50px; bottom: 50px; left: 50% !important; right: auto !important; width: 2px;
    background: linear-gradient(180deg, #edf2f7 0%, #ff6b00 50%, #edf2f7 100%); z-index: 1;
}

.workflow-step {
    flex: 1 !important; 
    background: #ffffff !important; 
    border: 1px solid #edf2f7 !important; 
    border-radius: 0 !important; 
    padding: 65px 20px 30px 20px !important;
    box-shadow: 0 4px 15px rgba(11, 28, 58, 0.02) !important;
    position: relative; 
    text-align: center; 
    z-index: 2; 
    overflow: visible !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.workflow-step:hover { 
    transform: translateY(-5px) !important; 
    box-shadow: 0 12px 30px rgba(11, 28, 58, 0.06) !important; 
    background-color: #ffffff !important; 
    border-color: #ff6b00 !important; 
}

.workflow-step .step-num {
    position: absolute !important; 
    top: -35px; 
    left: 50% !important; 
    transform: translateX(-50%) !important;
    width: 65px !important; 
    height: 65px !important; 
    background: #ffffff !important; 
    border: 2px solid #edf2f7 !important;
    border-radius: 50% !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    font-family: "Montserrat", sans-serif; 
    font-size: 20px !important; 
    font-weight: 800 !important; 
    color: #0b1c3a !important;
    box-shadow: 0 4px 10px rgba(11, 28, 58, 0.04) !important; 
    z-index: 3;
    transition: all 0.35s ease !important;
}
.workflow-step:hover .step-num { 
    background: #ff6b00 !important; 
    border-color: #ff6b00 !important; 
    color: #ffffff !important; 
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.25) !important; 
}

.workflow-step h4 { font-size: 18px !important; font-weight: 800 !important; color: #0b1c3a !important; margin-bottom: 10px !important; }
.workflow-step p { font-size: 13.5px !important; color: #718096 !important; line-height: 1.5 !important; }

/* =====================================================================
   СОВРЕМЕННЫЙ МИНИМАЛИСТИЧНЫЙ АРСЕНАЛ
   ===================================================================== */
.parallax-bg-dark {
    background: linear-gradient(rgba(11, 28, 58, 0.92), rgba(11, 28, 58, 0.92)), url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=80");
    background-size: cover; background-position: center; background-attachment: fixed !important;
}
.arsenal-section { padding: 90px 0; }
.arsenal-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.arsenal-header h2 { color: #ffffff; font-size: 32px; margin-bottom: 15px; }
.arsenal-header p { color: rgba(255, 255, 255, 0.7); }
.arsenal-grid { display: block; margin-bottom: 40px; }

.arsenal-card {
    background-color: transparent; 
    border: none; 
    padding: 25px 15px; 
    text-align: center; 
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.arsenal-card:hover { transform: translateY(-3px); }

.ars-emoji-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background-color: rgba(255, 107, 0, 0.08); 
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 0 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}
.arsenal-card:hover .ars-emoji-box {
    background-color: #ff6b00;
    border-color: #ff6b00;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.arsenal-card h5 { color: #ffffff; font-size: 18px; margin-bottom: 10px; font-family: "Montserrat", sans-serif; font-weight: 700; }
.arsenal-card p { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; line-height: 1.6; }

.philosophy-quote { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 30px; }
.philosophy-quote p { font-family: "Montserrat", sans-serif; font-size: 18px; font-style: italic; color: #ff6b00; font-weight: 600; }

/* =====================================================================
   ПОДВАЛ САЙТА (ФУТЕР И СВЯЗЬ)
   ===================================================================== */
.main-footer { background-color: #0b1c3a; color: rgba(255, 255, 255, 0.75); padding: 60px 0 0 0; border-top: 3px solid #ff6b00; }
.footer-grid { display: block; padding-bottom: 40px; }
.footer-info { margin-bottom: 40px; }
.footer-info .logo { margin-bottom: 15px; }
.footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: 25px; }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }

.f-representative { 
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important; 
    font-size: 16px !important;
    color: #ffffff !important; 
}
.f-link { font-size: 15px; font-weight: 600; display: inline-block; }
.f-link:hover { color: #ff6b00; transform: translateX(4px); }

.footer-form h4 { color: #ffffff; font-size: 20px; margin-bottom: 4px; }
.footer-form p { font-size: 13px; margin-bottom: 20px; }
.footer-form { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 28px; }
.f-lead-form input { width: 100%; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); padding: 12px 15px; border-radius: 6px; color: #ffffff; font-size: 14px; margin-bottom: 12px; outline: none; }
.f-lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.f-lead-form input:focus { border-color: #ff6b00; }

.f-lead-form .f-modern-textarea {
    width: 100%;
    height: 75px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    resize: none;
    font-family: "Open Sans", sans-serif;
}
.f-lead-form .f-modern-textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.f-lead-form .f-modern-textarea:focus { border-color: #ff6b00; background-color: rgba(255, 255, 255, 0.08); }

.f-lead-form button { width: 100%; padding: 14px; background-color: #ff6b00; color: #ffffff; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease; }
.f-lead-form button:hover { box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4); transform: translateY(-1px); }
.f-lead-form button:active { transform: translateY(1px); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 0; font-size: 12px; }
.fb-inner { display: flex; flex-direction: column; gap: 10px; text-align: center; }

/* =====================================================================
   АДАПТИВНАЯ СЕТКА ЭКРАНОВ И МЕДИА-ЗАПРОСЫ
   ===================================================================== */
@media (min-width: 601px) {
    .gallery-item { flex: 0 0 calc(50% - 10px); }
    .fb-inner { flex-direction: row; justify-content: space-between; text-align: left; }
    
    .stats-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 15px; }
    .stats-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -7px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #edf2f7;
    }
}

@media (min-width: 992px) {
    .burger-menu { display: none !important; }
    .desktop-only { display: flex !important; }
    .mobile-only-assets { display: none !important; }
    
    .hero-inner { flex-direction: row; }
    .hero-title { font-size: 48px; }
    
    .standards-split-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    .vs-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
    .vs-card { margin-bottom: 0; }
    
    .service-table-row { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; }
    .service-table-row:hover { padding-left: 30px !important; }
    .ser-main-info { margin-bottom: 0; align-items: center; }
    .ser-meta-actions { gap: 40px; }
    
    .repair-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
    .gallery-item { flex: 0 0 calc(33.333% - 13.33px); }
    
    .workflow-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 25px; }
    .workflow-grid::before { content: ""; position: absolute; top: 135px; left: 50px; right: 50px; height: 2px; background: linear-gradient(90deg, #edf2f7 0%, #ff6b00 50%, #edf2f7 100%); width: auto; }
    .workflow-step { padding: 110px 25px 35px 25px !important; }
    .workflow-step .step-num { top: -30px; }

    .arsenal-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 35px !important; margin-bottom: 40px; }
    .arsenal-card { margin-bottom: 0 !important; }
    
    .footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
    
    .main-header .header-container { display: flex !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; }
    .nav-menu { display: flex !important; position: static !important; width: auto !important; background-color: transparent !important; padding: 0 !important; box-shadow: none !important; opacity: 1 !important; visibility: visible !important; transform: none !important; flex-direction: row !important; }
}

@media (max-width: 991px) {
    .desktop-only { display: none !important; }
    .burger-menu { display: flex !important; }
    
    .main-header .header-container { display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; padding: 0 15px !important; }
    .main-header .logo { flex: 0 0 auto !important; margin-right: auto !important; }
    .main-header .logo-lockup { display: inline-flex !important; flex-direction: row !important; align-items: center !important; gap: 8px !important; min-width: 0 !important; }
    .main-header .logo-mark { width: 36px !important; height: 36px !important; flex-basis: 36px !important; }
    .main-header .logo-text { display: block !important; font-size: 15px !important; letter-spacing: 0.7px !important; white-space: nowrap !important; }
    .main-header .burger-menu { order: 3 !important; margin-left: 15px !important; }
    .main-header .phone-btn { padding: 6px 12px !important; font-size: 12px !important; white-space: nowrap !important; order: 2 !important; box-shadow: none !important; }
    .main-header .lang-switcher { font-size: 11px !important; order: 1 !important; margin-right: 5px !important; display: inline-block !important; color: rgba(255, 255, 255, 0.9) !important; }

    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%; background-color: #0b1c3a; flex-direction: column; padding: 30px; gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 1000;
    }
    .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu.open .mobile-only-assets { display: flex !important; }
    .mobile-only-assets { display: none; flex-direction: column; align-items: center; gap: 20px; margin-top: 10px; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
    
    .burger-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger-menu.open span:nth-child(2) { opacity: 0; }
    .burger-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    
    .hero-viewport { background-attachment: scroll !important; }
    .parallax-bg-dark { background-attachment: scroll !important; }
    .hero-inner { flex-direction: column; }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-section .hero-title { font-size: 28px !important; line-height: 1.3 !important; text-align: center !important; }
    .hero-section .hero-text { font-size: 14px !important; text-align: center !important; margin-bottom: 18px !important; }
    .hero-points { justify-content: center; margin-bottom: 24px !important; }
    .hero-point { font-size: 12px !important; padding: 8px 10px !important; }
    .hero-form-box { max-width: 100% !important; margin: 0 auto !important; }
    .extended-form-card { padding: 20px !important; }

    .form-inline-group { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 0 !important; 
    }
    .form-inline-group .input-cell { width: 100% !important; margin-bottom: 0 !important; }

    .custom-dropdown, .dropdown-trigger-box, .dropdown-menu-list, .dropdown-option {
        -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important;
    }
    .form-step-content { border: none !important; box-shadow: none !important; }
    .dropdown-trigger-box { font-size: 13px !important; padding: 10px 12px !important; }
    .dropdown-option { font-size: 13px !important; padding: 10px 12px !important; }

    .workflow-grid { flex-direction: column !important; gap: 45px !important; }
    .workflow-grid::before { top: 50px; bottom: 50px; left: 50% !important; right: auto !important; width: 2px; height: auto; background: linear-gradient(180deg, #edf2f7 0%, #ff6b00 50%, #edf2f7 100%); }
    .workflow-step { padding: 65px 20px 30px 20px !important; }
    .workflow-step .step-num { top: -35px; }
    .gallery-controls-block { width: 100% !important; padding: 0 10px; gap: 15px !important; }
    .custom-nav-btn { width: 44px !important; height: 44px !important; border-radius: 10px !important; }

    .assurance-container { flex: none !important; }
    .assurance-card { flex: none !important; border-radius: 0 !important; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .stats-item::after { display: none !important; }
}

/* =====================================================================
   АВАРИЙНЫЙ РАЗБЛОКИРОВЩИК КЛИКОВ НА ФОРМЕ
   ===================================================================== */
.hero-form-box,
.extended-form-card {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}
.custom-dropdown { pointer-events: auto !important; cursor: pointer !important; }
.dropdown-trigger-box { pointer-events: auto !important; cursor: pointer !important; position: relative !important; z-index: 20 !important; }

/* =====================================================================
   ГЛОБАЛЬНЫЕ КНОПКИ ЗВОНКА (CTA)
   ===================================================================== */
.global-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff8c00, #ff5500);
    color: #ffffff !important;
    padding: 16px 30px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.global-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.4);
}
.pulse-btn {
    animation: cta-pulse 2s infinite;
}
@keyframes cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* =====================================================================
   LIVE CHAT — consultant panel (DIRTKILLER)
   ===================================================================== */
.floating-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    font-family: "Open Sans", sans-serif;
}
.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00, #e05e00);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.45);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.chat-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.55);
}
.chat-toggle-btn svg { position: relative; z-index: 1; width: 28px; height: 28px; }
.chat-pulse {
    position: absolute; inset: 0;
    background-color: #ff6b00; border-radius: 50%; z-index: 0;
    animation: chat-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes chat-ping {
    75%, 100% { transform: scale(1.7); opacity: 0; }
}

.chat-panel {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 420px;
    max-height: 640px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(11, 28, 58, 0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background: linear-gradient(135deg, #ff8c00 0%, #e05e00 100%);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
}
.chat-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='40' fill='%23ffe8d4'/%3E%3Ccircle cx='40' cy='30' r='14' fill='%23ff6b00'/%3E%3Cellipse cx='40' cy='62' rx='22' ry='18' fill='%23ff6b00'/%3E%3C/svg%3E") center/cover no-repeat;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.55);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
}
.chat-avatar::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid #e05e00;
}
.chat-title-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.c-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
.c-status {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    line-height: 1.3;
    margin-top: 2px;
}
#chatClose {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
}
#chatClose:hover { background: rgba(255,255,255,0.3); }

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f4f6f8;
    overflow: hidden;
    position: relative;
    min-height: 0;
}
.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 18px 16px;
    min-height: 220px;
    max-height: 340px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }

.chat-bubble {
    max-width: 84%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14.5px;
    line-height: 1.45;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    animation: msgIn 0.22s ease;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chat-bubble.operator {
    align-self: flex-start;
    background: #fff;
    color: #2d3748;
    border-bottom-left-radius: 4px;
}
.chat-bubble.user {
    align-self: flex-end;
    background: #ff6b00;
    color: #fff;
    border-bottom-right-radius: 4px;
}
.chat-bubble .chat-time {
    display: block;
    font-size: 10px;
    color: #a0aec0;
    margin-top: 4px;
    line-height: 1;
}
.chat-bubble.user .chat-time { color: rgba(255,255,255,0.75); }

.chat-bubble.typing {
    display: flex !important;
    align-items: center;
    gap: 4px;
    width: 52px;
    padding: 12px 14px;
}
.chat-bubble.typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #a0aec0;
    display: block;
    animation: dkTyping 1.4s infinite ease-in-out;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: .2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dkTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.chat-quick-actions {
    display: flex;
    gap: 8px;
    padding: 0 14px 10px;
    flex-shrink: 0;
}
.chat-quick-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border: none;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}
.chat-quick-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.chat-quick-btn.wa { background: #25D366; }
.chat-quick-btn.phone { background: #0b1c3a; }
.chat-quick-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.chat-compose {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px 8px;
    background: #fff;
    border-top: 1px solid #e8edf2;
    flex-shrink: 0;
}
.chat-compose-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.chat-compose textarea {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14.5px;
    outline: none;
    resize: none;
    background: #f7fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-height: 110px;
    min-height: 48px;
    line-height: 1.45;
}
.chat-compose textarea:focus {
    border-color: #ff6b00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.chat-compose input#chatContact {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 11px 16px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background: #f7fafc;
}
.chat-compose input#chatContact:focus {
    border-color: #ff6b00;
    background: #fff;
}
.chat-send-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(255,107,0,0.3);
    padding: 0;
    font-size: 0; /* never show text label inside round icon button */
    line-height: 0;
    overflow: hidden;
}
.chat-send-btn:hover { background: #e05e00; transform: scale(1.05); }
.chat-send-btn:disabled { background: #cbd5e0; box-shadow: none; cursor: default; transform: none; }
.chat-send-btn svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.chat-send-btn > *:not(svg) { display: none !important; }
.chat-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.chat-footer-brand {
    text-align: center;
    font-size: 10px;
    color: #a0aec0;
    padding: 6px 0 10px;
    background: #fff;
    flex-shrink: 0;
}
.chat-footer-brand span { font-weight: 700; color: #ff6b00; }

@media (max-width: 600px) {
    .floating-chat-widget { bottom: 16px; right: 16px; }
    .chat-panel { width: calc(100vw - 32px); right: 0; bottom: 76px; max-height: calc(100vh - 130px); }
    .chat-toggle-btn { width: 52px; height: 52px; }
}

/* Refined brand lockup */
.main-footer .logo-lockup { gap: 12px !important; }
.main-footer .logo-mark { width: 54px; height: 54px; flex-basis: 54px; }
.main-footer .logo-text { font-size: 22px; }
@media (max-width: 480px) {
  .main-header .logo-text { font-size: 14px !important; }
  .main-header .logo-mark { width: 34px !important; height: 34px !important; flex-basis: 34px !important; }
  .main-header .header-container { padding: 0 12px !important; }
}




/* HEADER BRAND — compact base layer */
.brand-logo {
    
    
    
    
    flex: 0 0 auto !important;
    
    
    margin-right: 22px !important;
    
    
}
.brand-logo-mark {
    
    
    
    
    
    
    
}
.brand-logo-name {
    
    
    
    
    
    
    
    
}
.main-header .header-container {
    
    justify-content: flex-start !important;
}
.main-header .nav-menu {
    flex: 1 1 auto !important;
    
    
    
}
.main-header .nav-link {
    font-size: 13px !important;
    
}
.main-header .header-right {
    flex: 0 0 auto !important;
    margin-left: 20px !important;
    gap: 14px !important;
}
.main-header .phone-btn {
    padding: 9px 16px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}
.brand-logo-footer {
    height: 60px !important;
    margin: 0 0 18px 0 !important;
    gap: 14px !important;
}
.brand-logo-footer .brand-logo-mark {
    width: 56px !important;
    height: 56px !important;
    flex-basis: 56px !important;
}
.brand-logo-footer .brand-logo-name { font-size: 25px !important; }

@media (max-width: 1180px) and (min-width: 992px) {
    .main-header .header-container { padding: 0 14px !important; }
    .brand-logo { gap: 9px !important; margin-right: 14px !important; }
    .brand-logo-mark { width: 42px !important; height: 42px !important; flex-basis: 42px !important; }
    .brand-logo-name { font-size: 21px !important; letter-spacing: .8px !important; }
    .main-header .nav-menu { gap: 12px !important; }
    .main-header .nav-link { font-size: 12px !important; }
    .main-header .header-right { margin-left: 12px !important; gap: 9px !important; }
    .main-header .phone-btn { padding: 8px 12px !important; font-size: 12px !important; }
}

@media (max-width: 991px) {
    .main-header .header-container {
        justify-content: space-between !important;
        min-height: 48px !important;
    }
    .main-header .brand-logo {
        height: 42px !important;
        margin-right: auto !important;
        gap: 9px !important;
    }
    .main-header .brand-logo-mark {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }
    .main-header .brand-logo-name {
        font-size: 19px !important;
        letter-spacing: .8px !important;
    }
}

@media (max-width: 520px) {
    .main-header .brand-logo { gap: 7px !important; }
    .main-header .brand-logo-mark { width: 34px !important; height: 34px !important; flex-basis: 34px !important; }
    .main-header .brand-logo-name { font-size: 16px !important; letter-spacing: .5px !important; }
    .brand-logo-footer .brand-logo-mark { width: 46px !important; height: 46px !important; flex-basis: 46px !important; }
    .brand-logo-footer .brand-logo-name { font-size: 21px !important; }
}


/* =====================================================================
   HEADER BRAND — grid and responsive refinements
   ===================================================================== */
.main-header .header-container {
    display: grid !important;
    
    align-items: center !important;
    
    
}

.brand-logo {
    
    flex-direction: row !important;
    
    justify-content: flex-start !important;
    
    
    
    
    white-space: nowrap !important;
    overflow: visible !important;
    line-height: 1 !important;
}

.brand-logo-mark {
    display: block !important;
    
    
    
    
    
    
    margin: 0 !important;
    
}

.brand-logo-name {
    display: block !important;
    color: #ff6b00 !important;
    font-family: "Montserrat", sans-serif !important;
    
    font-weight: 800 !important;
    
    
    white-space: nowrap !important;
    margin: 0 !important;
}

.main-header .nav-menu {
    justify-content: center !important;
    gap: 24px !important;
    min-width: 0 !important;
}

.main-header .nav-link {
    white-space: nowrap !important;
}

.main-header .header-right {
    justify-self: end !important;
    white-space: nowrap !important;
}

.footer-info .brand-logo {
    
    
    height: 52px !important;
    margin-bottom: 18px !important;
}
.footer-info .brand-logo-mark {
    
    
    min-width: 48px !important;
    
}
.footer-info .brand-logo-name {
    
}

@media (max-width: 1180px) and (min-width: 992px) {
    .main-header .header-container {
        grid-template-columns: 240px minmax(0, 1fr) auto !important;
        gap: 16px !important;
    }
    .brand-logo {
        width: 240px !important;
        min-width: 240px !important;
        gap: 10px !important;
    }
    .brand-logo-mark {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        flex-basis: 46px !important;
    }
    .brand-logo-name { font-size: 27px !important; }
    .main-header .nav-menu { gap: 15px !important; }
    .main-header .nav-link { font-size: 12px !important; }
    .main-header .header-right { gap: 10px !important; }
    .main-header .phone-btn { padding: 9px 14px !important; font-size: 12px !important; }
}

@media (max-width: 991px) {
    .main-header .header-container {
        display: flex !important;
        min-height: 56px !important;
        gap: 10px !important;
    }
    .brand-logo {
        width: auto !important;
        min-width: 0 !important;
        height: 44px !important;
        gap: 8px !important;
        margin-right: auto !important;
    }
    .brand-logo-mark {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        flex-basis: 40px !important;
    }
    .brand-logo-name { font-size: 21px !important; letter-spacing: .7px !important; }
}

@media (max-width: 480px) {
    .brand-logo-name { font-size: 17px !important; }
    .brand-logo-mark {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-basis: 36px !important;
    }
}


/* =====================================================================
   DIRTKILLER: current logo, upload and live chat
   ===================================================================== */
.main-header .header-container {
  grid-template-columns: 255px minmax(0,1fr) auto !important;
  min-height: 68px !important;
  gap: 22px !important;
}
.brand-logo {
  width: 255px !important; min-width: 255px !important; height: 58px !important;
  display: inline-flex !important; align-items: center !important; gap: 11px !important;
}
.brand-logo-mark {
  width: 58px !important; height: 58px !important; min-width: 58px !important;
  flex: 0 0 58px !important; object-fit: contain !important; object-position: center !important;
  border-radius: 0 !important; filter: none !important;
}
.brand-logo-name {font-size: 27px !important; line-height: 1 !important; letter-spacing: .8px !important;}
.footer-info .brand-logo {width:auto !important;min-width:0 !important;}
.footer-info .brand-logo-mark {width:64px !important;height:64px !important;flex-basis:64px !important;}
.footer-info .brand-logo-name {font-size:28px !important;}

/* =====================================================================
   FILE UPLOAD — compact dropzone
   ===================================================================== */
.file-upload-box {
    margin-top: 16px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 0;
    background: #f8fafc;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.file-upload-box:hover,
.file-upload-box:focus-within {
    border-color: #ff6b00;
    background: #fffaf5;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
.file-upload-box.is-dragover {
    border-color: #ff6b00;
    border-style: solid;
    background: #fff7ed;
}
.file-upload-box.has-files {
    border-style: solid;
    border-color: #e2e8f0;
    background: #fff;
}

/* Completely hide native file control */
.file-upload-box input[type="file"],
.file-upload-input {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 3 !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: transparent !important;
}
.file-upload-box.has-files input[type="file"],
.file-upload-box.has-files .file-upload-input {
    height: 72px !important;
}

.file-upload-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center;
    padding: 20px 16px 18px !important;
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.file-upload-box.has-files .file-upload-content {
    flex-direction: row !important;
    padding: 12px 14px 8px !important;
    gap: 10px !important;
    justify-content: flex-start !important;
}

.file-upload-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    border-radius: 10px;
    background: #edf2f7;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #718096;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    overflow: hidden;
}
.file-upload-box:hover .file-upload-icon,
.file-upload-box.is-dragover .file-upload-icon {
    background: #fff0e5;
    color: #ff6b00;
}
.file-upload-icon svg,
.file-upload-icon img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    display: block !important;
    flex-shrink: 0;
}
.file-upload-box.has-files .file-upload-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
}
.file-upload-box.has-files .file-upload-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.file-upload-content strong {
    display: block !important;
    font-size: 13.5px !important;
    color: #0b1c3a !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}
.file-upload-help {
    display: block !important;
    font-size: 11.5px !important;
    color: #718096 !important;
    line-height: 1.4 !important;
    max-width: 260px;
}
.file-upload-cta {
    display: inline-flex !important;
    align-items: center;
    margin-top: 4px;
    padding: 6px 14px;
    background: #0b1c3a;
    color: #fff !important;
    border-radius: 999px;
    font-size: 12px !important;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
.file-upload-box:hover .file-upload-cta { background: #ff6b00; }
.file-upload-box.has-files .file-upload-help,
.file-upload-box.has-files .file-upload-cta {
    display: none !important;
}

.file-preview-list {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px 12px;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}
.file-upload-box.has-files .file-preview-list {
    display: flex !important;
}
.file-preview-thumb {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    background: #edf2f7;
    flex-shrink: 0;
}
.file-preview-thumb:hover { border-color: #ff6b00; }
.file-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.file-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e53e3e;
    color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 6;
}
.file-preview-remove:hover { background: #c53030; }

.file-upload-meta {
    display: none !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 12px;
    position: relative;
    z-index: 5;
}
.file-upload-box.has-files .file-upload-meta {
    display: flex !important;
}
.file-upload-count {
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    font-family: "Montserrat", sans-serif;
}
.file-upload-count span { color: #ff6b00; }
.file-upload-add-more {
    font-size: 12px;
    font-weight: 700;
    color: #ff6b00;
}

.file-upload-error {
    display: none;
    margin-top: 8px;
    padding: 9px 12px;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    color: #c53030;
    font-size: 12.5px;
    font-weight: 600;
}
.file-upload-error.visible { display: block; }

@media (max-width: 480px) {
    .file-preview-thumb { width: 56px; height: 56px; }
}


/* Compact guarantee FAQ cards – less empty space */
.standards-faq-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 0;
}
.standards-faq-box .faq-item,
.standards-faq-box > div {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 0;
}
.standards-faq-box h4 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
}
.standards-faq-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}
@media (max-width: 700px) {
    .standards-faq-box { grid-template-columns: 1fr; }
}

/* Hide hero points if present */
.hero-points { display: none !important; }

/* Tighter services table after reduction to 5 */
.services-table-wrapper { margin-top: 12px; }
.service-table-row {  }


/* Services section full-bleed alignment fix */
.services-minimal-section {
    padding: 70px 0;
    background-color: #f7fafc;
}
.services-minimal-section .global-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.services-table-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11,28,58,0.04);
}
.service-table-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid #edf2f7;
    margin: 0;
}
.service-table-row:last-child { border-bottom: none; }
.service-table-row:hover {
    background: #fffaf5;
}
.ser-main-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 280px;
    min-width: 0;
}
.ser-meta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    margin-left: 0;
}

/* Standards comparison + guarantees balanced layout */
.comparison-visual-box,
.standards-faq-box {
    
    
    
    
    
    
}
.standards-faq-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
.assurance-container {
    
    
    
}
@media (min-width: 600px) {
    .assurance-container {
        grid-template-columns: 1fr 1fr;
    }
}
.assurance-card {
    
    
    flex: none !important;
    
}
.vs-cards-container {
    
    
    
}
@media (min-width: 600px) {
    .vs-cards-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Gallery real photos grid */
.gallery-section .gallery-track,
.gallery-slider-track {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    transform: none !important;
    width: 100% !important;
}
.gallery-item {
    flex: none !important;
    width: 100% !important;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #edf2f7;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-controls-block { display: none; }

/* =====================================================================
   STANDARDS / GUARANTEES — responsive layout
   Clean responsive layout, removes conflicting nested grid behavior
   ===================================================================== */
.standards-section {
    padding: 88px 0;
    background: #ffffff;
}

.standards-section .section-header-left {
    margin-bottom: 34px;
}

.standards-split-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.comparison-visual-box,
.standards-faq-box {
    display: block !important;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 20px;
    padding: 28px;
    margin: 0;
    height: auto !important;
    min-height: 0 !important;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(11, 28, 58, 0.05);
}

.comparison-visual-box h3,
.standards-faq-box h3 {
    margin: 0 0 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.35;
    color: #0b1c3a;
}

.vs-cards-container {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
}

.vs-card {
    margin: 0 !important;
    padding: 24px 22px;
    border-radius: 16px !important;
    border: 1px solid #e8edf5;
    background: #f8fafc;
    box-shadow: none;
    height: auto;
}

.vs-card h5 {
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #0b1c3a;
}

.vs-card.our-premium-side {
    background: linear-gradient(180deg, #fffaf2 0%, #fff7eb 100%);
    border: 2px solid #ff6b00;
}

.vs-card.ordinary-side {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.vs-badge-top {
    top: -12px;
    right: 18px;
    padding: 4px 10px;
    border-radius: 999px !important;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.vs-feature-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    margin: 0 0 18px;
}

.vs-feature-item:last-child {
    margin-bottom: 0;
}

.vs-icon-wrapper {
    width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 8px;
}

.vs-feature-tag {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.6px;
}

.vs-feature-text p,
.ordinary-side .vs-feature-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #556273;
}

/* Remove broken nested card styling from old rules */
.standards-faq-box > .assurance-container {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.assurance-container {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
}

.assurance-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px;
    margin: 0 !important;
    padding: 18px !important;
    background: #f8fafc;
    border: 1px solid #e8edf5 !important;
    border-left: 4px solid #0b1c3a !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    min-height: 0 !important;
    height: auto !important;
}

.assurance-card:hover {
    border-left-color: #ff6b00 !important;
}

.assurance-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px !important;
    background: #fffaf2;
    border: 1px solid rgba(255, 107, 0, 0.18);
}

.assurance-content-box {
    flex: 1;
    min-width: 0;
}

.assurance-content-box h4 {
    margin: 0 0 8px !important;
    font-family: "Montserrat", sans-serif;
    font-size: 16px !important;
    line-height: 1.35;
    color: #0b1c3a;
}

.assurance-content-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #556273;
}

@media (min-width: 768px) {
    .comparison-visual-box,
    .standards-faq-box {
        padding: 32px;
    }

    .vs-cards-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .standards-split-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .standards-section {
        padding: 72px 0;
    }

    .comparison-visual-box,
    .standards-faq-box {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .vs-card,
    .assurance-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }

    .comparison-visual-box h3,
    .standards-faq-box h3 {
        font-size: 17px;
        margin-bottom: 18px;
    }
}

/* =====================================================================
   SEO + CONVERSION CONTENT REBUILD (2026-08-12)
   Hero / header / request form intentionally untouched.
   ===================================================================== */
.section-lead {
    max-width: 760px;
    margin: 12px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

/* ---------- Transparent price guide ---------- */
.price-guide-section {
    padding: 78px 0;
    background: #f7fafc;
}
.price-services-grid {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}
.price-service-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(11, 28, 58, 0.035);
}
.price-service-number {
    font-family: "Montserrat", sans-serif;
    color: #ff6b00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}
.price-service-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.35;
}
.price-service-copy h3 a:hover { color: #ff6b00; }
.price-service-copy p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.price-service-detail {
    display: inline-block;
    margin-top: 9px;
    color: #0b1c3a;
    font-size: 13px;
    font-weight: 800;
}
.price-service-detail:hover { color: #ff6b00; }
.price-service-cost {
    min-width: 145px;
    text-align: right;
}
.price-service-from {
    display: block;
    margin-bottom: 2px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.price-service-cost strong {
    display: block;
    color: #0b1c3a;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    line-height: 1.1;
}
.price-service-quote {
    display: inline-block;
    margin-top: 8px;
    color: #ff6b00;
    font-size: 12px;
    font-weight: 800;
}
.price-guide-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 22px auto 0;
    padding: 12px 16px;
    color: #475569;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}
.price-guide-note svg,
.service-check-list svg,
.service-trust-inner svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: #ff6b00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Before / after cases ---------- */
.case-studies-section {
    padding: 80px 0;
    background: #fff;
}
.before-after-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}
.before-after-case {
    position: relative;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 16px;
    box-shadow: 0 7px 24px rgba(11, 28, 58, .05);
}
.case-kicker {
    margin-bottom: 10px;
    color: #94a3b8;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.case-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #edf2f7;
    border-radius: 10px;
}
.case-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-photo-label {
    position: absolute;
    z-index: 2;
    left: 8px;
    top: 8px;
    padding: 5px 8px;
    color: #fff;
    background: rgba(11, 28, 58, .88);
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.case-photo-label.after { background: #ff6b00; }

/* ---------- Trust proof replacing generic statistics/comparison ---------- */
.trust-proof-section {
    padding: 80px 0;
    background: #f7fafc;
}
.trust-proof-heading { max-width: 760px; }
.trust-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.trust-proof-card,
.guarantee-proof-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
}
.trust-proof-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #ff6b00;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}
.trust-proof-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.trust-proof-card h3,
.guarantee-proof-card h3 {
    margin: 1px 0 7px;
    font-size: 15px;
    line-height: 1.35;
}
.trust-proof-card p,
.guarantee-proof-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}
.guarantee-proof-wrap {
    margin-top: 18px;
    padding: 24px;
    background: #0b1c3a;
    border-radius: 16px;
}
.guarantee-proof-wrap > h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 21px;
}
.guarantee-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.guarantee-proof-card { border: 0; }

/* ---------- Real FAQ ---------- */
.seo-faq-section {
    padding: 80px 0;
    background: #fff;
}
.seo-faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    gap: 56px;
    align-items: start;
}
.seo-faq-intro {
    position: sticky;
    top: 100px;
}
.seo-faq-list {
    border-top: 1px solid #dfe7ef;
}
.seo-faq-item {
    border-bottom: 1px solid #dfe7ef;
}
.seo-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    color: #0b1c3a;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    color: #ff6b00;
    border: 1px solid #fed7aa;
    border-radius: 50%;
    font-size: 18px;
    transition: transform .2s ease;
}
.seo-faq-item[open] summary span { transform: rotate(45deg); }
.seo-faq-answer {
    padding: 0 42px 20px 0;
}
.seo-faq-answer p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* ---------- Compact equipment block ---------- */
.equipment-compact-section {
    padding: 68px 0;
    color: #fff;
    background: #0b1c3a;
}
.equipment-compact-head {
    max-width: 760px;
    margin-bottom: 24px;
}
.equipment-compact-head h2 {
    margin: 6px 0 10px;
    color: #fff;
    font-size: 28px;
}
.equipment-compact-head p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.7;
}
.equipment-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.equipment-compact-card {
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.045);
}
.equipment-compact-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 14px;
}
.equipment-compact-card p {
    color: rgba(255,255,255,.68);
    font-size: 12.5px;
    line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.content-final-cta {
    padding: 42px 0;
    background: #fff7ed;
    border-top: 1px solid #fed7aa;
    border-bottom: 1px solid #fed7aa;
}
.content-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.content-final-cta h2 {
    margin: 0 0 5px;
    font-size: 24px;
}
.content-final-cta p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* =====================================================================
   SERVICE LANDING PAGES
   ===================================================================== */
.service-overview-section {
    padding: 74px 0;
    background: #fff;
}
.service-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 24px;
    align-items: start;
}
.service-scope-card,
.service-price-card {
    padding: 30px;
    border: 1px solid #e5ebf2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(11,28,58,.045);
}
.service-scope-card h2 {
    margin: 6px 0 20px;
    font-size: 28px;
}
.service-check-list {
    display: grid;
    gap: 12px;
}
.service-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}
.service-price-card {
    position: sticky;
    top: 96px;
    background: #f8fafc;
}
.service-price-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0 12px;
}
.service-price-value small {
    color: #64748b;
    font-size: 13px;
}
.service-price-value strong {
    color: #0b1c3a;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 1;
}
.service-price-card > p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}
.service-inline-cta {
    display: block;
    margin-top: 18px;
    padding: 12px 16px;
    text-align: center;
    color: #fff;
    background: #ff6b00;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
}
.service-inline-cta:hover { background: #e05e00; }
.service-price-factors {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #dfe7ef;
}
.service-price-factors h3 {
    margin: 0 0 10px;
    font-size: 14px;
}
.service-price-factors ul {
    display: grid;
    gap: 7px;
}
.service-price-factors li {
    position: relative;
    padding-left: 14px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.5;
}
.service-price-factors li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff6b00;
}

.service-process-section {
    padding: 72px 0;
    background: #f7fafc;
}
.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.service-step-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
}
.service-step-card > span {
    display: block;
    margin-bottom: 18px;
    color: #ff6b00;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}
.service-step-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}
.service-step-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.service-trust-section {
    padding: 54px 0;
    background: #0b1c3a;
}
.service-trust-inner {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 40px;
    align-items: center;
}
.service-trust-inner h2 {
    color: #fff;
    font-size: 26px;
}
.service-trust-inner ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}
.service-trust-inner li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.55;
}

.related-services-section {
    padding: 72px 0;
    background: #f7fafc;
}
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.related-service-card {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5ebf2;
    border-radius: 12px;
}
.related-service-card span {
    color: #0b1c3a;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
.related-service-card strong {
    color: #ff6b00;
    font-size: 13px;
}
.related-service-card:hover {
    border-color: #ff6b00;
    transform: translateY(-2px);
}

@media (max-width: 1050px) {
    .trust-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .before-after-cases { grid-template-columns: 1fr; }
    .before-after-case { max-width: 760px; width: 100%; margin: 0 auto; }
    .related-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .price-guide-section,
    .case-studies-section,
    .trust-proof-section,
    .seo-faq-section,
    .service-overview-section,
    .service-process-section,
    .related-services-section { padding: 58px 0; }

    .price-service-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }
    .price-service-cost {
        grid-column: 2;
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        flex-wrap: wrap;
    }
    .price-service-from { margin: 0; }
    .price-service-cost strong { font-size: 22px; }
    .price-service-quote { margin: 0 0 0 auto; }

    .trust-proof-grid,
    .guarantee-proof-grid,
    .equipment-compact-grid,
    .service-steps-grid { grid-template-columns: 1fr; }

    .seo-faq-layout,
    .service-overview-grid,
    .service-trust-inner { grid-template-columns: 1fr; gap: 24px; }
    .seo-faq-intro,
    .service-price-card { position: static; }
    .service-trust-inner ul { grid-template-columns: 1fr; }

    .content-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .content-final-cta .global-call-btn { width: 100%; }
}

@media (max-width: 560px) {
    .section-lead { font-size: 14px; }
    .price-service-card { grid-template-columns: 1fr; }
    .price-service-number { display: none; }
    .price-service-cost { grid-column: 1; }
    .price-service-quote { margin-left: 0; width: 100%; }
    .before-after-case { padding: 12px; }
    .before-after-grid { gap: 6px; }
    .case-photo-label { left: 6px; top: 6px; font-size: 8px; }
    .trust-proof-grid { grid-template-columns: 1fr; }
    .guarantee-proof-wrap { padding: 18px; }
    .seo-faq-item summary { font-size: 14px; }
    .seo-faq-answer { padding-right: 0; }
    .service-scope-card,
    .service-price-card { padding: 22px 18px; }
    .service-scope-card h2 { font-size: 23px; }
    .related-services-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   REAL WORK GALLERY — replaces artificial before/after pairing
   ===================================================================== */
.work-gallery-section {
    padding: 88px 0;
    background: #ffffff;
}

.work-gallery-section .section-heading-block {
    max-width: 760px;
    margin-bottom: 32px;
}

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

.work-gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 14px;
    background: #edf2f7;
    border: 1px solid #e5eaf0;
    aspect-ratio: 4 / 3;
}

.work-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

@media (hover:hover) {
    .work-gallery-item:hover img { transform: scale(1.025); }
}

@media (max-width: 900px) {
    .work-gallery-section { padding: 68px 0; }
    .work-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .work-gallery-section { padding: 52px 0; }
    .work-gallery-section .section-heading-block { margin-bottom: 22px; }
    .work-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .work-gallery-item { border-radius: 12px; }
}

/* =====================================================================
   ACCESSIBILITY / FORM CONTROL CONSOLIDATION — 2026-09-05
   ===================================================================== */
button.dropdown-trigger-box {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-family: inherit;
    line-height: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.dropdown-trigger-box:focus-visible,
.dropdown-option:focus-visible,
.gallery-item img:focus-visible,
.work-gallery-item img:focus-visible,
.lightbox-close:focus-visible {
    outline: 3px solid rgba(255, 107, 0, 0.42);
    outline-offset: 2px;
}
.dropdown-option[aria-selected="true"] {
    background-color: #edf2f7 !important;
    font-weight: 600;
    color: #0b1c3a !important;
}
button.lightbox-close {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}


/* =====================================================================
   CUSTOMER REVIEWS
   ===================================================================== */
.reviews-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 92px;
    background:
        radial-gradient(circle at 92% 7%, rgba(255, 107, 0, .11), transparent 28%),
        linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.reviews-showcase-section::before {
    content: "“";
    position: absolute;
    top: -92px;
    right: 4vw;
    color: rgba(11, 28, 58, .035);
    font-family: Georgia, serif;
    font-size: 360px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.reviews-showcase-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 34px;
}

.reviews-showcase-head .section-heading-block {
    max-width: 760px;
    margin: 0;
}

.reviews-showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    grid-column: span 5;
    position: relative;
    display: flex;
    min-height: 270px;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px 28px 24px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(11, 28, 58, .09);
    border-radius: 20px;
    box-shadow: 0 14px 42px rgba(11, 28, 58, .075);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card-wide { grid-column: span 7; }

.review-card::after {
    content: "“";
    position: absolute;
    right: 18px;
    bottom: -47px;
    color: rgba(255, 107, 0, .07);
    font-family: Georgia, serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.review-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.review-author {
    color: #0b1c3a;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.review-stars {
    color: #ff6b00;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #22324d;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.72;
}

.review-card footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid #edf1f5;
    color: #718096;
    font-size: 11px;
    font-weight: 700;
}

.review-card footer span:first-child {
    color: #0b1c3a;
}

.review-card footer span + span::before {
    content: "•";
    margin-right: 14px;
    color: #ff6b00;
}

@media (hover:hover) {
    .review-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 107, 0, .22);
        box-shadow: 0 20px 52px rgba(11, 28, 58, .10);
    }
}

@media (max-width: 900px) {
    .reviews-showcase-section { padding: 68px 0 72px; }
    .reviews-showcase-head { align-items: flex-start; }
    .review-card,
    .review-card-wide { grid-column: span 6; }
}

@media (max-width: 640px) {
    .reviews-showcase-section { padding: 52px 0 56px; }
    .reviews-showcase-head { display: block; margin-bottom: 24px; }
    .reviews-showcase-grid { grid-template-columns: 1fr; gap: 12px; }
    .review-card,
    .review-card-wide {
        grid-column: 1;
        min-height: 0;
        padding: 22px 20px 20px;
        border-radius: 16px;
    }
    .review-card blockquote { font-size: 14px; line-height: 1.68; }
    .review-card footer { margin-top: 21px; }
}


/* =====================================================================
   FEATURED BEFORE / AFTER WORK SHOWCASE — 2026-09-10
   ===================================================================== */
.transformation-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, .8fr);
    gap: 18px;
    margin: 0 0 28px;
}

.transformation-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 16px 42px rgba(11, 28, 58, .08);
}

.transformation-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 76px;
    padding: 16px 18px 15px;
    background: #ffffff;
}

.transformation-kicker {
    display: block;
    margin-bottom: 4px;
    color: #f26a21;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .14em;
}

.transformation-card-head h3 {
    margin: 0;
    color: #0b1c3a;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.15;
}

.transformation-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    background: #dce3eb;
}

.work-gallery-item.transformation-shot {
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: 0;
    background: #e8edf3;
}

.work-gallery-item.transformation-shot img {
    object-fit: cover;
}

.transformation-photo-label {
    position: absolute;
    z-index: 2;
    top: 11px;
    left: 11px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(11, 28, 58, .84);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .09em;
    box-shadow: 0 5px 18px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.transformation-shot.is-after .transformation-photo-label {
    background: rgba(242, 106, 33, .92);
}

.transformation-video-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    background: #0b1c3a;
}

.transformation-video-frame {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: #0b1c3a;
}

.transformation-video-frame video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    background: #0b1c3a;
}

.transformation-secondary-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.transformation-showcase + .work-gallery-grid {
    margin-top: 18px;
}

@media (hover:hover) {
    .transformation-card {
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .transformation-card:hover {
        transform: translateY(-2px);
        border-color: #d5dde7;
        box-shadow: 0 20px 52px rgba(11, 28, 58, .11);
    }
}

@media (max-width: 900px) {
    .transformation-showcase {
        grid-template-columns: minmax(0, 1.45fr) minmax(230px, .75fr);
        gap: 14px;
    }
    .transformation-secondary-grid { gap: 14px; }
    .transformation-card-head { min-height: 70px; padding: 14px 15px 13px; }
    .transformation-card-head h3 { font-size: 18px; }
    .transformation-video-frame video { min-height: 360px; }
}

@media (max-width: 700px) {
    .transformation-showcase { grid-template-columns: 1fr; }
    .transformation-video-card { min-height: 0; }
    .transformation-video-frame {
        aspect-ratio: 9 / 14;
        max-height: 620px;
    }
    .transformation-video-frame video { min-height: 0; }
    .transformation-secondary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .transformation-showcase { gap: 12px; margin-bottom: 20px; }
    .transformation-secondary-grid { gap: 12px; }
    .transformation-card { border-radius: 14px; }
    .transformation-card-head { min-height: 62px; padding: 12px 13px 11px; }
    .transformation-card-head h3 { font-size: 17px; }
    .transformation-kicker { font-size: 9px; }
    .transformation-photo-label { top: 7px; left: 7px; padding: 5px 7px; font-size: 8px; }
    .work-gallery-item.transformation-shot { aspect-ratio: 3 / 4; }
    .transformation-video-frame { max-height: 560px; }
}

/* Work showcase correction: keep the primary before/after card flush with the video card. */
@media (min-width: 701px) {
    .transformation-feature-card {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .transformation-feature-card .transformation-pair {
        flex: 1 1 auto;
        min-height: 0;
    }

    .transformation-feature-card .work-gallery-item.transformation-shot {
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
    }
}
