  /* --- 1. ОБЩИЕ СТИЛИ И ПЕРЕМЕННЫЕ --- */
        :root {
            --primary-color: #1a365d;    /* Доверительный синий */
            --secondary-color: #ff6b35;  /* Акцентный оранжевый */
            --bg-light: #f4f7f9;         /* Светлый фон */
            --text-dark: #333333;        /* Темный текст */
            --text-muted: #718096;       /* Серый текст */
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

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

        /* Компонент общей кнопки */
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: #ffffff;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.1s ease;
        }

        .btn:hover {
            background-color: #e0531c;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Заголовки секций */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        section {
            padding: 70px 0;
        }

        /* --- 2. ШАПКА САЙТА (HEADER) --- */
        .header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 8px 0;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        /* Блок логотипа с названием */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-img {
            height: 55px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }

        /* Главная навигация */
        .nav {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 15px 15px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--secondary-color);
        }

        .has-dropdown > .nav-link::after {
            content: ' ▾';
            font-size: 12px;
            vertical-align: middle;
        }

        /* Выпадающий список */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 280px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-radius: 8px;
            list-style: none;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            border-top: 3px solid var(--secondary-color);
        }

        .dropdown li a {
            display: block;
            padding: 10px 20px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s ease, color 0.2s ease;
            cursor: pointer;
        }

        .dropdown li a:hover {
            background-color: var(--bg-light);
            color: var(--secondary-color);
            padding-left: 25px;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Контакты в шапке */
        .header-contacts {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-shrink: 0;
        }

        .phone-block {
            text-align: right;
        }

        .phone-link-wrapper {
            display: flex;
            align-items: center;
            gap: 6px;
            justify-content: flex-end;
            text-decoration: none;
        }

        .phone-icon {
            width: 16px;
            height: 16px;
            fill: var(--secondary-color);
        }

        .header-phone {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.2s ease;
        }

        .phone-link-wrapper:hover .header-phone {
            color: var(--secondary-color);
        }

        .header-worktime {
            font-size: 11px;
            color: var(--text-muted);
            display: block;
        }

        /* --- 3. ГЛАВНЫЙ ЭКРАН (HERO SECTION) --- */
        .hero {
            background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
            color: #ffffff;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: url('/templates/provodok/images/background.avif') no-repeat center right/cover;
            opacity: 0.15;
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
            max-width: 650px;
        }

        .hero-text h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #e2e8f0;
        }

        .hero-features {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 14px;
            backdrop-filter: blur(5px);
        }

        /* Форма захвата */
        .hero-form {
            background: #ffffff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 400px;
            color: var(--text-dark);
        }

        .hero-form h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
            text-align: center;
        }

        .hero-form p {
            font-size: 14px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 15px;
            outline: none;
        }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--primary-color);
        }

        .hero-form .btn {
            width: 100%;
            margin-top: 10px;
        }

        /* --- 4. СЕКЦИЯ: КАК МЫ РАБОТАЕМ --- */
        .workflow {
            background-color: #ffffff;
            border-bottom: 1px solid #eef2f5;
        }

        .workflow-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            position: relative;
        }

        .workflow-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 10px;
        }

        /* Стрелочки между шагами (кроме последнего) */
        .workflow-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            top: 30px;
            right: -15px;
            font-size: 24px;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .step-icon-box {
            width: 70px;
            height: 70px;
            background-color: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 28px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 2px solid #ffffff;
            transition: transform 0.3s ease;
        }

        .workflow-step:hover .step-icon-box {
            transform: translateY(-5px);
            background-color: var(--primary-color);
        }

        .step-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .step-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* --- 5. СЕКЦИЯ: О КОМПАНИИ И ПРЕИМУЩЕСТВА --- */
        .about {
            background-color: var(--bg-light);
        }

        .about-intro {
            max-width: 800px;
            margin: 0 auto 45px auto;
            text-align: center;
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Сетка карточек преимуществ */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .advantage-card {
            background: #ffffff;
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            border-top: 4px solid var(--primary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            border-top-color: var(--secondary-color);
        }

        .advantage-icon {
            font-size: 36px;
            margin-bottom: 15px;
            display: block;
        }

        .advantage-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .advantage-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Статистика */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            border-top: 1px solid #e2e8f0;
            padding-top: 40px;
        }
        .stat-card {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.01);
        }
        .stat-card h4 {
            font-size: 32px;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 800;
        }
        .stat-card p {
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* --- 6. СЕКЦИЯ: НАШИ УСЛУГИ --- */
        .services {
            background-color: #ffffff;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eef2f5;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-color: #cbd5e1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--bg-light);
            border-radius: 50%;
            margin-bottom: 20px;
            line-height: 70px;
            font-size: 32px;
            color: #2b6cb0;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .service-card:hover .service-icon {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        .service-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 12px;
        }

        .service-price {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .service-price strong {
            color: #e53e3e;
            font-size: 16px;
        }

        /* --- 7. СЕКЦИЯ: ОТЗЫВЫ --- */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border-left: 4px solid var(--secondary-color);
        }

        .review-author {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .review-tech {
            font-size: 13px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .review-text {
            font-size: 14px;
            font-style: italic;
            color: var(--text-dark);
        }

        /* --- 8. СЕКЦИЯ: ТЕКСТОВОЕ SEO ОПИСАНИЕ --- */
        .seo-section {
            background-color: #edf2f7;
            padding: 40px 0;
            border-top: 1px solid #e2e8f0;
        }

        .seo-content {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 13px;
            color: #4a5568;
            line-height: 1.6;
            text-align: justify;
        }

        .seo-content h2 {
            font-size: 18px;
            color: var(--primary-color);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .seo-content p {
            margin-bottom: 10px;
        }

        /* --- 9. КОНТАКТЫ И ПОДВАЛ (FOOTER) --- */
        .footer {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 60px 0 30px 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo-block {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .footer-title {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-map {
            width: 100%;
            height: 180px;
            background-color: #2d3748;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            border: 1px dashed #4a5568;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #2d3748;
            padding-top: 20px;
        }

      /* --- 10. О КОМПАНИИ --- */

/* О компании */
.about-hero {
    padding: 40px 0 15px; /* Уменьшили верхний и нижний отступы */
    text-align: center;
}

.about-hero-header h1 {
    font-size: 36px; /* Чуть уменьшили размер для баланса */
    color: #1e3d59;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
}

.about-extended-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 30px; /* Прижали текст ближе к карточкам */
    text-align: center; /* Центрируем, чтобы сочеталось с верхним блоком */
}

.about-extended-text p {
    margin-bottom: 10px;
}

/* Перебиваем старый большой паддинг из главной страницы */
.about {
    padding-top: 10px !important; 
}

.about-cta {
    margin-top: 40px; /* Прижали синюю плашку ближе к цифрам */
    background: #1e3d59;
    color: #ffffff;
    padding: 35px; /* Сделали саму плашку чуть компактнее по высоте */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-cta p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #e2e8f0;
    opacity: 0.9;
}

.about-cta-btn {
    display: inline-block;
    width: auto;
    padding: 12px 35px;
}
/* Стили для страницы Контакты */
.contacts-page {
    padding: 40px 0;
}

.contacts-header {
    text-align: center;
    margin-bottom: 40px;
}

.contacts-header h1 {
    font-size: 36px;
    color: #1e3d59;
    font-weight: 700;
    margin-bottom: 15px;
}

.contacts-header p {
    font-size: 18px;
    color: #4a5568;
}

.contacts-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.contacts-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacts-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contacts-icon {
    font-size: 24px;
    background: #eef2f5;
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.contacts-item-text h3 {
    font-size: 16px;
    color: #718096;
    margin-bottom: 5px;
    font-weight: 500;
}

.contacts-item-text p, 
.contacts-item-text a {
    font-size: 18px;
    color: #1e3d59;
    font-weight: 600;
    text-decoration: none;
}

.contacts-item-text a:hover {
    color: #ff6f61;
}

.contacts-item-text .contacts-subtext {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 400;
    margin-top: 2px;
}

.contacts-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}
        /* --- 12. АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ --- */
        @media (max-width: 992px) {
            .header .container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .logo-img {
                height: 50px;
            }
            .nav {
                justify-content: center;
                flex-wrap: wrap;
            }
            .nav-link {
                padding: 10px 12px;
            }
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                display: none;
                transform: none;
                box-shadow: none;
                background: var(--bg-light);
                width: 100%;
            }
            .nav-item:hover .dropdown {
                display: block;
            }
            .header-contacts {
                text-align: center;
                flex-direction: column;
                gap: 10px;
            }
            .phone-block {
                text-align: center;
            }
            .workflow-steps {
                flex-direction: column;
                gap: 30px;
            }
            .workflow-step:not(:last-child)::after {
                content: '↓';
                top: auto;
                bottom: -25px;
                right: 50%;
                transform: translateX(50%);
            }
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 32px;
            }
            .hero .container {
                flex-direction: column;
            }
            .hero-form {
                max-width: 100%;
            }
            section {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .about-stats {
                grid-template-columns: 1fr;
            }
            
    .about-hero { padding: 40px 0 10px; }
    .about-hero-header h1 { font-size: 28px; }
    .about-hero-text { font-size: 16px; }
    .about-extended-text { font-size: 16px; margin-bottom: 30px; }
    .about-cta { padding: 30px 20px; margin-top: 40px; }
    .about-cta h3 { font-size: 22px; }
    .about-cta p { font-size: 15px; }

  .contacts-header h1 { font-size: 26px; }
    .contacts-header p { font-size: 15px; }
    .contacts-grid { flex-direction: column; gap: 20px; }
    .contacts-map { min-height: 300px; }
    .contacts-item { padding: 15px; }
            
        /* --- ИДЕАЛЬНАЯ ДВУХРЯДНАЯ МОБИЛЬНАЯ ШАПКА --- */
    .header {
        padding: 8px 0 !important;
    }

    /* Главный контейнер шапки переключаем в вертикальный стек для двух рядов */
    .header .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    /* РЯД 1: Логотип и кнопка «Заказать звонок» */
    .logo-container {
        margin: 0 !important;
    }
    .logo-img {
        width: 28px !important;
        height: auto !important;
    }
    .logo-text {
        font-size: 18px !important;
    }

    /* Навигация (меню) — делаем компактную строчку по центру */
    .nav {
        width: 100% !important;
        justify-content: center !important;
        gap: 15px !important;
        margin: 2px 0 !important;
        padding: 0 !important;
    }
    .nav-link {
        font-size: 14px !important;
    }

    /* Перестраиваем блок контактов на два независимых ряда */
    .header-contacts {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    /* Формируем первый ряд: Логотип остается на своем месте, а кнопку двигаем в самый верх контактов к нему */
    .header-contacts .btn {
        position: absolute !important;
        top: 10px !important;
        right: 15px !important;
        width: auto !important;
        padding: 6px 14px !important;
        font-size: 13px !important;
        margin: 0 !important;
        border-radius: 4px !important;
    }

    /* РЯД 2: Телефон и мессенджеры в одну линию на всю ширину */
    .phone-block {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        text-align: left !important;
        border-top: 1px solid #e2e8f0 !important; /* Легкая разделительная полоса */
        padding-top: 8px !important;
    }

    .phone-link-wrapper {
        display: flex !important;
        align-items: center !important;
    }

    .header-phone {
        font-size: 16px !important;
        font-weight: 700 !important;
    }

    .header-worktime {
        display: none !important; /* Убираем время работы, чтобы не перегружать */
    }

    /* Переносим иконки мессенджеров во второй ряд к телефону вправо */
    .header-messengers {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    .header-messengers img {
        width: 26px !important;
        height: 26px !important;
    }
    /* --- КОНЕЦ МОБИЛЬНОЙ ШАПКИ --- */    
            
        }

/**********СТРЕЛКА**************/
.form-group {
  position: relative; /* Чтобы стрелка позиционировалась внутри этого блока */
  width: 100%;
}

.form-group select {
  width: 100% !important; /* Меню будет на всю ширину */
  border: 1px solid #ccd1e1 !important;
  border-radius: 6px !important;
  padding: 12px !important;
  padding-right: 45px !important; /* Место, чтобы текст не налезал на стрелку */
  font-size: 15px !important;
  outline: none !important;

  /* Скрываем упрямую стандартную стрелку */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Рисуем точно такую же стрелку-галочку */
.form-group::after {
  content: "";
  position: absolute;
  top: 50%;
  
  /* РЕГУЛИРОВКА: меняйте это число, чтобы двигать стрелку влево/вправо */
  right: 25px; 
  
  /* Размеры галочки */
  width: 6px;
  height: 6px;
  
  /* Цвет стрелки (серый/темный, как в стандарте) */
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  
  /* Поворачиваем её углом вниз и центрируем */
  transform: translateY(-70%) rotate(45deg);
  
  /* Чтобы клик по стрелке открывал сам список */
  pointer-events: none; 
}

/* Убираем стрелку у полей, где внутри находится input, а не select */
.form-group:not(:has(select))::after {
  display: none !important;
}

/**********Политика конфиденциальности**************/
.site-privacy-policy {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.7;
        color: #333333;
        max-width: 900px;
        margin: 20px auto;
        padding: 15px;
    }
    .policy-header {
        border-bottom: 2px solid #0056b3;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    .policy-header h1 {
        font-size: 28px;
        color: #1a1a1a;
        margin: 0 0 10px 0;
        font-weight: 700;
        line-height: 1.3;
    }
    .policy-date {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
        font-style: italic;
    }
    .policy-section {
        margin-bottom: 25px;
    }
    .policy-section h2 {
        font-size: 18px;
        color: #0056b3;
        margin-top: 0;
        margin-bottom: 12px;
        font-weight: 600;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 6px;
    }
    .policy-section p {
        font-size: 15px;
        margin: 0 0 12px 0;
        text-align: justify;
    }
    .policy-list {
        margin: 0 0 15px 0;
        padding-left: 20px;
    }
    .policy-list li {
        font-size: 15px;
        margin-bottom: 6px;
        position: relative;
    }
    .policy-operator-card {
        background-color: #f4f7f6;
        border-left: 4px solid #0056b3;
        padding: 20px;
        border-radius: 0 6px 6px 0;
        margin: 15px 0;
    }
    .policy-operator-card .card-title {
        font-weight: bold;
        color: #1a1a1a;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .policy-operator-card p {
        margin-bottom: 6px !important;
        font-size: 14px;
    }
    .policy-operator-card p:last-child {
        margin-bottom: 0 !important;
    }
    .policy-link {
        color: #0056b3;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .policy-link:hover {
        color: #003d82;
        text-decoration: underline;
    }

/* Кнопка Наверх (Фирменный стиль Provodok.by) */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff5000 100%); /* Ваш оранжевый градиент */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 80, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999; /* Чтобы кнопка всегда была поверх карт и окон */
}

/* Эффект наведения на ПК */
.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 80, 0, 0.4);
    background: linear-gradient(135deg, #ff851a 0%, #ff5c0d 100%);
}

/* Кнопка активна (показывается) */
.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        box-shadow: 0 3px 8px rgba(255, 80, 0, 0.3);
    }
    .scroll-top-btn:hover {
        transform: none; /* Убираем ховер-эффект на смартфонах */
    }
}


/* ==========================================================================
   ПОЛНЫЙ КОД СЛАЙДЕРА ОТЗЫВОВ (PROVODOK.BY)
   ========================================================================== */

/* Общая секция */
.reviews-slider-section {
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #f8fafc; /* Легкий фоновый тон для выделения блока */
}

/* Наружный контейнер с отступами под боковые стрелки */
.reviews-slider-outer {
    position: relative;
    max-width: 1140px;
    margin: 40px auto 0;
    padding: 0 65px;
    box-sizing: border-box;
}

/* Окно просмотра (прячет скрытые слайды) */
.reviews-slider-container {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Подвижная лента со слайдами */
.reviews-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    box-sizing: border-box;
}

/* Один слайд (на ПК разделен на 2 равные колонки через Grid) */
.reviews-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Карточка отзыва */
.review-slide-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    box-sizing: border-box;
    border-left: 4px solid #ff6f61; /* Ваша фирменная оранжевая полоса */
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* Автор отзыва */
.review-author {
    font-weight: 700;
    font-size: 18px;
    color: #1e3d59; /* Ваш фирменный синий */
    margin-bottom: 5px;
}

/* Вид техники */
.review-tech {
    font-size: 14px;
    color: #ff6f61;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Текст отзыва */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
}

/* Боковые круглые навигационные стрелки */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1e3d59;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.prev-btn { left: 5px; padding-right: 2px;padding-bottom: 3px; }
.next-btn { right: 5px; padding-left: 2px;padding-bottom: 3px; }

.slider-nav-btn:hover {
    background: linear-gradient(135deg, #ff7a00 0%, #ff5000 100%);
    transform: translateY(-50%) scale(1.05);
}

/* Круглые точки пагинации под слайдером */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dots .dot.active {
    background: #ff5000;
    transform: scale(1.2);
}

/* ==========================================================================
   АДАПТИВНОСТЬ ДЛЯ СМАРТФОНОВ И ПЛАНШЕТОВ
   ========================================================================== */
@media (max-width: 850px) {
    .reviews-slider-outer {
        padding: 0 50px;
    }
    
    /* Переключаем слайд в 1 колонку */
    .reviews-slide {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Жестко скрываем второй отзыв в слайде на мобилках */
    .reviews-slide .review-slide-card:nth-child(2) {
        display: none !important;
    }

    .review-slide-card {
        padding: 20px;
    }

    .review-text {
        font-size: 14px;
    }

    .slider-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .reviews-slider-outer {
        padding: 0 45px;
    }
}


/* Контейнер мессенджеров */
.header-messengers {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Отступ между иконками */
}

/* Стили для ссылок-иконок */
.msg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

/* Сами картинки внутри ссылок */
.msg-icon img {
    display: block;
    width: 26px;  /* Жестко контролируем размер в пикселях */
    height: 26px;
    object-fit: contain;
}

/* Эффект увеличения для ПК */
@media (min-width: 769px) {
    .msg-icon:hover {
        transform: scale(1.15); /* Плавное увеличение на 15% */
    }
}