 body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background-color: #0D0D0D;
            color: #ffffff;
            overflow-x: hidden;
        }
        main {
            padding-top: 80px; /* Отступ для фиксированного хедера */
        }
        .cta-button {
            background: #FF6B00;
            border: none;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        .cta-button:hover {
            background: #ff8533;
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
            transform: translateY(-3px);
        }
        .phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.phone-prefix {
    position: absolute;
    left: 1rem;
    color: #888;
    font-size: 1rem;
    pointer-events: none; /* Чтобы можно было кликнуть сквозь префикс */
}
strong {
    color: #FF6B00; /* Ваш фирменный оранжевый цвет */
    font-weight: 600; /* Делаем текст немного жирнее */
}
.ull {
    padding-left: 20px;
    list-style: none;
}

.lii {
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

.lii::before {
    content: '•';
    color: #FF6B00;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}
.modal-form input[type="tel"] {
    padding-left: 55px; /* Освобождаем место для префикса +380 */
    width: 100%;
}
        /* === СТИЛИ ХЕДЕРА === */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 5vw;
            box-sizing: border-box;
            background: rgba(13, 13, 13, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
        }
        .logo span {
            display: inline-block;
            animation: neon-flicker 3s infinite;
            animation-delay: calc(var(--i) * 0.15s);
        }
        @keyframes neon-flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow:
                    0 0 4px #fff,
                    0 0 11px #FF6B00,
                    0 0 19px #FF6B00;
                color: #fff;
            }
            20%, 24%, 55% {        
                text-shadow: none;
                color: #888;
            }
        }
        .main-nav ul {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav a {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        .main-nav a:hover {
            color: #FF6B00;
        }
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(30, 30, 30, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 250px; 
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            padding: 8px 10px;
        }
        .dropdown > a i {
            font-size: 0.7em;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        .dropdown:hover > a i {
            transform: rotate(180deg);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* === СТИЛИ ДЛЯ СТРАНИЦЫ УСЛУГ === */
        .service-block {
            padding: 100px 5vw;
            background-color: #111;
            border-bottom: 1px solid #222;
        }
        .service-block-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
        }
        .service-block.reversed .service-block-container {
            flex-direction: row-reverse;
        }
        .service-text-content { flex: 1; }
        .service-image-content { flex: 1; }
        .service-image-content img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .service-h1, .service-h2 {
            font-weight: 900;
            color: #FF6B00;
            margin-top: 0;
        }
        .service-h1 { font-size: 3.5rem; line-height: 1.2; }
        .service-h2 { font-size: 2.8rem; line-height: 1.3; }
        .service-text-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #ccc;
            max-width: 50ch;
        }
        .form-section-standalone {
            padding: 100px 5vw;
            background-color: #0D0D0D;
        }
        .form-container {
            background: #1A1A1A;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #333;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
        }
        .form-container h3 { font-size: 2rem; color: #FF6B00; margin: 0 0 15px 0; }
        .form-container p { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; }
        .modal-form { display: flex; flex-direction: column; gap: 15px; }
        .modal-form input, .modal-form textarea {
            background: #222;
            border: 1px solid #444;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }
        .modal-form input:focus, .modal-form textarea:focus {
            outline: none;
            border-color: #FF6B00;
            box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
        }
        .modal-form textarea { resize: vertical; min-height: 100px; }

        /* === АДАПТИВНОСТЬ === */
        @media (max-width: 992px) {
           .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 13, 0.98);
                backdrop-filter: blur(10px);
                padding: 20px;
                border-top: 1px solid #222;
            }
            .main-nav.is-open {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .dropdown .dropdown-menu {
                position: static;
                background: none;
                backdrop-filter: none;
                border-radius: 0;
                padding: 0 0 0 20px;
                margin-top: 0;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            .dropdown.is-open .dropdown-menu {
                display: block;
            }
            .dropdown > a i {
                float: right;
                transition: transform 0.3s ease;
            }
            .dropdown.is-open > a i {
                transform: rotate(180deg);
            }
            .mobile-menu-toggle {
                display: block;
            }
        }
        
        @media (max-width: 992px) {
            .service-block-container,
            .service-block.reversed .service-block-container {
                flex-direction: column;
            }
            .service-h1 { font-size: 2.5rem; }
            .service-h2 { font-size: 2rem; }
            .form-section-standalone { padding: 80px 20px; }
            .form-container { padding: 30px 20px; }
        }