        
        :root {
            --primary: #ccff00; 
            --accent-color: #ccff00;
            --primary-hover: #b3e600;
            --dark-bg: #121212;
            --card-bg: #1e1e1e;
            --text-main: #e0e0e0;
            --text-white: #ffffff;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .btn { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: #000;
            padding: 15px 35px;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #000;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--text-white);
            margin-bottom: 1rem;
        }
        .section-title span { color: var(--primary); }
        .section-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            color: #aaa;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        section { padding: 80px 0; }

        
        header {
            background: rgba(18, 18, 18, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
        }
        .logo span { color: var(--primary); }
        
        .nav-menu { display: flex; gap: 30px; }
        .nav-menu a {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            transition: var(--transition);
        }
        .nav-menu a:hover { color: var(--primary); }

        .header-contacts { text-align: right; }
        .phone { font-size: 1.2rem; font-weight: 700; color: var(--text-white); display: block; }
        .work-time { font-size: 0.8rem; color: #888; }
        
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--text-white); cursor: pointer; }
.burger { display: none; color: var(--text-white); }
.mobile-overlay { display: none; }
.mobile-menu { display: none; }

        
        .hero {
            position: relative;
            min-height: 90vh;
            background-image: url('/assets/img/hero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }
        .hero > * {
            position: relative;
            z-index: 2;
        }
        .hero-content h1 {
            font-size: 3.5rem; 
            color: var(--text-white);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #ddd;
        }
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .feat-item { display: flex; align-items: center; gap: 10px; color: var(--text-white); font-weight: 700; }
        .feat-item i { color: var(--primary); }

        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: var(--card-bg);
            border: 1px solid #333;
            padding: 30px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .service-card:hover { transform: translateY(-10px); border-color: var(--primary); }
        .service-icon {
            font-size: 46px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .service-card h3 { color: var(--text-white); font-size: 1.5rem; margin-bottom: 15px; }
        .service-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
        }
        .service-list li::before {
            content: '•';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
            line-height: 1;
        }

        
        .ba-section { background: #000; }
        .ba-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            border: 4px solid #333;
            border-radius: 8px;
            overflow: hidden;
        }
        .ba-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .img-after {
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); 
            z-index: 2;
        }
        .ba-slider {
            position: absolute;
            -webkit-appearance: none;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 3;
            top: 0;
            left: 0;
            cursor: col-resize;
            margin: 0;
        }
        .ba-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 4px;
            height: 100vh; 
            background: var(--primary);
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        
        .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            pointer-events: none; 
            box-shadow: 0 0 15px var(--primary);
        }

        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .step {
            flex: 1 1 200px;
            background: var(--card-bg);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-bottom: 3px solid transparent;
        }
        .step:hover { border-bottom-color: var(--primary); }
        .step-num {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            font-family: 'Oswald';
        }
        .step h4 { color: var(--text-white); margin-bottom: 10px; }
        .step p { font-size: 0.9rem; }

        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            color: #fff;
            margin-top: 20px;
        }
        .price-table th, .price-table td {
            border: 1px solid #333;
            padding: 15px;
            text-align: left;
        }
        .price-table th { background: #222; color: var(--primary); text-transform: uppercase; }
        .price-table tr:hover { background: #1a1a1a; }
        .price-val { font-weight: 700; color: var(--text-white); }
        .price-table th:last-child,
        .price-table td:last-child {
            text-align: right;
            white-space: nowrap;
        }

        .prices-block-subtitle {
            color: #aaa;
            margin-bottom: 18px;
            font-size: 0.95rem;
        }
.price-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.price-tab {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-white);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.price-tab:hover {
    border-color: var(--accent-color);
}
.price-tab.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(180, 255, 0, 0.25);
}
        .price-content {
            display: none;
            animation: fadeIn 0.35s ease;
        }
        .price-content.active {
            display: block;
        }
        .price-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .price-table-wrap .price-table {
            min-width: 460px;
            margin-top: 0;
        }
        
        .tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
        .tab-btn {
            background: #222;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-family: 'Oswald';
        }
        .tab-btn.active { background: var(--primary); color: #000; }
        
        .tab-content { display: none; }
        .tab-content.active { display: block; animation: fadeIn 0.5s; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        .gallery-item {
            aspect-ratio: 1/1;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-item:hover img { transform: scale(1.1); opacity: 0.7; }
        .gallery-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-overlay { transform: translateY(0); }

        .advantages {
            padding: 110px 0;
            background: #0f0f0f;
            position: relative;
        }

        .advantages-head {
            text-align: center;
        }

        .advantages-grid {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .advantage-card {
            padding: 35px;
            background: #141414;
            border: 1px solid #222;
            border-radius: 14px;
            transition: 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .advantage-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .advantage-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-6px);
        }

        .advantage-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .advantage-card h3 {
            margin-bottom: 12px;
            font-size: 18px;
        }

        .highlight {
            border-color: var(--accent-color);
            background: linear-gradient(145deg, #141414, #181818);
        }
        
        
        .form-section { background: var(--card-bg); }
        .form-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, select, textarea {
            padding: 15px;
            background: #121212;
            border: 1px solid #333;
            color: #fff;
            font-family: 'Roboto';
            border-radius: 4px;
        }
        input:focus, select:focus { border-color: var(--primary); outline: none; }

        footer {
            background: #000;
            padding: 40px 0;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
        }

        
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.2rem; }
            .nav-menu { display: none; } 
            .header-contacts { display: none; }
            .mobile-menu-btn { display: block; }
            .header-inner { justify-content: center; position: relative; }
            .mobile-menu-btn { position: absolute; right: 0; }
            .logo { position: absolute; left: 0; }
            
            
            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #111;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.5);
            }
            .header-contacts.active {
                display: block;
                text-align: center;
                margin-top: 20px;
            }
        .price-tabs {
            flex-direction: column;
            gap: 20px;
            margin-bottom: 50px;
        }
        .price-tab {
            width: 100%;
            text-align: center;
        }
        .price-table-wrap .price-table {
            min-width: 420px;
        }
        }

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

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

.hero-gallery-btn {
    margin-left: 10px;
}

.img-after-tinted {
    filter: none !important;
    background: none !important;
    mix-blend-mode: normal !important;
}

.img-after-tinted::before {
    display: none !important;
}

.price-note {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}

.form-submit-btn {
    width: 100%;
}

.lead-form-glass {
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  animation: formFadeIn 0.5s ease;
}

.lead-form {
  margin-top: 10px;
}

.lead-form-row {
  margin-bottom: 20px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  font-size: 0.95rem;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  background: rgba(10, 10, 10, 0.7);
  color: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent-color, var(--primary));
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.12);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.live-estimate {
  margin: 8px 0 20px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #272727;
  background: rgba(12, 12, 12, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.live-estimate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-estimate-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: var(--accent-color, var(--primary));
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.live-estimate-text {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.dropzone {
  position: relative;
  border: 1px dashed #3a3a3a;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(12, 12, 12, 0.65);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.dropzone.is-dragover {
  border-color: var(--accent-color, var(--primary));
  background: rgba(204, 255, 0, 0.06);
  transform: translateY(-2px);
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.dropzone-subtitle {
  color: #a5a5a5;
  font-size: 0.92rem;
}

.preview-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.preview-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2b2b2b;
  aspect-ratio: 1 / 1;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.progress-wrap {
  display: none;
  margin: 8px 0 16px;
  height: 8px;
  border-radius: 999px;
  background: #1f1f1f;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #98c000, var(--accent-color, var(--primary)));
  transition: width 0.2s ease;
}

.form-send-btn {
  width: 100%;
  margin-top: 6px;
}

.form-send-btn.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-status.success {
  color: #b5ff35;
}

.form-status.error {
  color: #ff6f6f;
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-phone-line {
    margin: 10px 0;
}

.footer-phone-link {
    color: #fff;
}

.footer-social {
    font-size: 1.5rem;
    margin-top: 20px;
}

.footer-social-link {
    margin: 0 10px;
}

.footer-copy {
    margin-top: 40px;
    font-size: 0.7rem;
    opacity: 0.5;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.contact-map {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map {
        height: 320px;
    }
}

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

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

@media (max-width: 768px) {
  .lead-form-glass {
    padding: 22px;
    border-radius: 14px;
  }

  .dropzone {
    padding: 18px 12px;
  }
}

img,
iframe,
video,
canvas {
  max-width: 100%;
}

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

  header {
    padding: 12px 0;
  }

  .header-inner {
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .logo {
    position: static;
    font-size: 18px;
    max-width: calc(100% - 56px);
  }

  .header-contacts,
  .phone {
    display: none !important;
  }

  .mobile-menu-btn {
    position: static;
    display: block;
    flex: 0 0 auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 80%;
    height: 100vh;
    padding: 80px 30px 30px;
    background: #111;
    z-index: 1100;
    overflow-y: auto;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.45);
  }

  .nav-menu.active + .header-contacts {
    display: block !important;
    text-align: left;
    margin-top: 16px;
  }

  .nav-menu.active + .header-contacts .phone {
    display: block !important;
    font-size: 1.1rem;
  }

  .hero {
    padding: 120px 16px 60px;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-content .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px;
  }

  .hero-gallery-btn {
    margin-left: 0 !important;
  }

  .hero-features {
    margin-top: 24px;
    gap: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 20px;
  }

  .price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table-wrap .price-table,
  .price-table {
    min-width: 600px;
  }

  footer {
    text-align: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    z-index: 1201;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 999;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #111;
    padding: 40px 30px;
    transition: right .3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .close-menu {
    background: none;
    border: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    margin-bottom: 20px;
  }

  .mobile-menu a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 768px) {
  .price-table-wrap {
    overflow-x: visible;
  }

  .price-table-wrap .price-table,
  .price-table {
    min-width: 0;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    margin-bottom: 16px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 14px;
  }

  .price-table td {
    text-align: left !important;
    border: none !important;
    padding: 6px 0;
    font-size: 14px;
    white-space: normal;
  }

  .price-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    color: #ccff00;
    margin-bottom: 4px;
  }
}
