   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #090A0B;
            color: #EDEDED;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        :root {
            --accent: #E85D1A;
            --accent-dark: #C2410C;
            --accent-glow: rgba(232, 93, 26, 0.25);
            --dark-bg: #090A0B;
            --card-bg: #111215;
            --border-dim: #23262B;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            padding: 14px 32px;
            font-weight: 600;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(232, 93, 26, 0.4);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -7px rgba(232, 93, 26, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        header {
            padding: 18px 0;
            border-bottom: 1px solid var(--border-dim);
            position: sticky;
            top: 0;
            backdrop-filter: blur(14px);
            background: rgba(9, 10, 11, 0.85);
            z-index: 110;
        }

        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        /* Hero */
        .hero {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 70px 0 90px;
            flex-wrap: wrap;
        }

        .hero-left {
            flex: 1.1;
        }

        .hero-left img {
            width: 100%;
            border-radius: 28px;
            box-shadow: 0 30px 45px -12px rgba(0,0,0,0.8);
            object-fit: cover;
            aspect-ratio: 1 / 0.9;
            display: block;
            border: 1px solid var(--border-dim);
        }

        .hero-right {
            flex: 1;
        }

        .badge {
            background: rgba(232, 93, 26, 0.12);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid rgba(232,93,26,0.3);
        }

        .hero-right h1 {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .highlight {
            color: var(--accent);
            border-bottom: 3px solid var(--accent);
        }

        .hero-desc {
            font-size: 1.13rem;
            color: #b5b5b5;
            margin-bottom: 28px;
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .stat-item h3 {
            font-size: 2rem;
            font-weight: 800;
        }

        .stat-item p {
            color: #999;
            font-size: 0.85rem;
        }

        .btn-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-sub {
            color: #aaa;
            margin-bottom: 48px;
            font-size: 1.05rem;
            max-width: 700px;
        }

        /* Карточка услуги со своим мини-слайдером */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 35px;
            margin-bottom: 80px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 28px;
            overflow: hidden;
            transition: 0.25s ease;
            border: 1px solid var(--border-dim);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent);
            box-shadow: 0 20px 30px -12px black;
        }

        .service-slider {
            position: relative;
        }

        .service-main-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            cursor: pointer;
        }

        .service-thumbnails {
            display: flex;
            gap: 8px;
            padding: 10px;
            overflow-x: auto;
            background: #0A0B0E;
        }

        .service-thumb {
            width: 70px;
            height: 55px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            opacity: 0.6;
            transition: 0.2s;
            border: 2px solid transparent;
        }

        .service-thumb.active-thumb {
            opacity: 1;
            border-color: var(--accent);
        }

        .service-info {
            padding: 22px;
        }

        .service-info h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .price-tag {
            color: var(--accent);
            font-weight: 800;
            margin: 10px 0;
            font-size: 1.25rem;
        }

        /* Общая галерея (слайдер с превью) */
        .gallery-section {
            background: #0C0D0F;
            border-radius: 32px;
            padding: 60px 0;
            margin: 40px 0 70px;
            border-top: 1px solid var(--border-dim);
            border-bottom: 1px solid var(--border-dim);
        }

        .slider-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-slider {
            border-radius: 28px;
            overflow: hidden;
            background: black;
            aspect-ratio: 16/9;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .main-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-wrapper {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 10px 0;
        }

        .thumbnail {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 14px;
            cursor: pointer;
            opacity: 0.5;
            transition: 0.2s;
            border: 2px solid transparent;
        }

        .thumbnail.active {
            opacity: 1;
            border-color: var(--accent);
        }

        /* Модальное окно для увеличенных фото (универсальное) */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.96);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(8px);
        }

        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }

        .modal-slider {
            width: 80vw;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 20px;
        }

        .modal-thumbnails {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .modal-thumb {
            width: 70px;
            height: 50px;
            border-radius: 10px;
            cursor: pointer;
            border: 2px solid #333;
            opacity: 0.7;
        }

        .modal-thumb.active-modal {
            border-color: var(--accent);
            opacity: 1;
        }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 44px;
            color: white;
            cursor: pointer;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .modal-nav button {
            background: rgba(0,0,0,0.6);
            border: none;
            font-size: 2.2rem;
            color: white;
            cursor: pointer;
            padding: 10px 18px;
            border-radius: 60px;
        }

        /* Блок преимуществ */
        .features-block {
            background: var(--card-bg);
            border-radius: 32px;
            padding: 48px 42px;
            margin: 60px 0;
            border: 1px solid var(--border-dim);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 28px;
            margin-top: 30px;
        }

        .feature-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 16px;
        }

        /* Контакты + карта */
        .contact-map-block {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            background: var(--card-bg);
            border-radius: 32px;
            padding: 48px;
            margin: 70px 0;
            border: 1px solid var(--border-dim);
        }

        .contact-info {
            flex: 1.2;
        }

        .contact-info p {
            margin: 16px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-info i {
            width: 28px;
            color: var(--accent);
            font-size: 1.3rem;
        }
		.contact-info .btn-primary i {
            width: 28px;
            color: #fff;
            font-size: 1.3rem;
        }

        .map-container {
            flex: 1.5;
            min-height: 300px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border-dim);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            border: 0;
        }

        .footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-dim);
            text-align: center;
            color: #777;
        }

        @media (max-width: 880px) {
            .hero { flex-direction: column; }
            .hero-left { order: 2; }
            .hero-right h1 { font-size: 2.3rem; }
            .section-title { font-size: 2rem; }
            .services-grid { grid-template-columns: 1fr; }
        }