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

:root {
    --green: #4CAF50;
    --green-dark: #388E3C;
    --green-light: #81C784;
    --green-pale: #E8F5E9;
    --dark: #1a1a2e;
    --dark-secondary: #16213e;
    --text: #2d2d2d;
    --text-light: #666;
    --text-muted: #999;
    --white: #fff;
    --bg: #f7f8fa;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --radius: 12px;
    --radius-sm: 8px;
    --tr: .3s cubic-bezier(.4, 0, .2, 1)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.marquee-bar {
    background: var(--green);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500
}

.marquee-track {
    display: inline-flex;
    animation: marquee 45s linear infinite
}

.marquee-track span {
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.marquee-track span i {
    color: rgba(255, 255, 255, .7);
    font-size: 10px
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    padding: 10px 0
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px
}

.top-bar-left a {
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--tr)
}

.top-bar-left a:hover {
    color: var(--green-light)
}

.top-bar-left a i {
    color: var(--green)
}

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

.top-bar-right .schedule {
    display: flex;
    align-items: center;
    gap: 6px
}

.top-bar-right .schedule i {
    color: var(--green)
}

.messengers {
    display: flex;
    gap: 10px
}

.messengers a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all var(--tr)
}

.messengers a.wa {
    background: #E4405F
}

.messengers a.tg {
    background: #0088cc
}

.messengers a.vb {
    background: #7360f2
}

.messengers a:hover {
    transform: scale(1.15)
}

.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07)
}

.header-top {
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--border)
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--dark);
    flex-shrink: 0
}

.logo i {
    font-size: 30px;
    color: var(--green);
    background: var(--green-pale);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center
}

.logo span {
    color: var(--green)
}

.header-search {
    flex: 1;
    max-width: 420px;
    position: relative
}

.header-search input {
    width: 100%;
    padding: 12px 48px 12px 18px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--tr)
}

.header-search input:focus {
    border-color: var(--green)
}

.header-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 14px
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0
}

.header-phone-block {
    display: flex;
    align-items: center;
    gap: 10px
}

.header-phone-block .ph-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px
}

.header-phone-block .ph-nums a {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.4
}

.header-phone-block .ph-nums a:hover {
    color: var(--green)
}

.header-messengers {
    display: flex;
    gap: 8px
}

.header-messengers a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all var(--tr)
}

.header-messengers a.wa {
    background: #E4405F
}

.header-messengers a.tg {
    background: #0088cc
}

.header-messengers a.vb {
    background: #7360f2
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--tr)
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(76, 175, 80, .3)
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green)
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px
}

.burger span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px
}

.header-nav {
    padding: 0;
    border-top: 1px solid var(--border)
}

.header-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0
}

.nav-item {
    position: relative
}

.nav-link {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all var(--tr);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.nav-link i.nav-icon {
    font-size: 15px;
    color: var(--green);
    opacity: .7
}

.nav-link i.fa-chevron-down {
    font-size: 9px;
    color: var(--text-muted);
    margin-left: 2px;
    transition: transform var(--tr)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--green);
    transform: scaleX(0);
    transition: transform var(--tr)
}

.nav-link:hover, .nav-link.active {
    color: var(--green)
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1)
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg)
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 100;
    padding: 8px 0
}

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

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--tr)
}

.nav-dropdown a:hover {
    background: var(--green-pale);
    color: var(--green);
    padding-left: 24px
}

.nav-dropdown a i {
    font-size: 14px;
    color: var(--green);
    opacity: .6;
    width: 20px;
    text-align: center
}

.nav-dropdown .dd-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 16px
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: var(--white)
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: all var(--tr)
}

.footer-socials a:hover {
    background: var(--green);
    color: var(--white)
}

.footer h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    transition: color var(--tr);
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-links a:hover {
    color: var(--green-light)
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px
}

.footer-contact-item i {
    color: var(--green);
    margin-top: 3px
}

.footer-legal {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 24px
}

.footer-legal-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap
}

.footer-legal .legal-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    max-width: 700px
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr)
}

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

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    width: 90%;
    max-width: 440px;
    position: relative;
    transform: scale(.9);
    transition: transform var(--tr)
}

.modal-overlay.active .modal-box {
    transform: scale(1)
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light)
}

.modal-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px
}

.modal-box .modal-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 16px
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--tr)
}

.form-group input:focus {
    border-color: var(--green)
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
    flex-shrink: 0;
    cursor: pointer
}

.consent-group label {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer
}

.consent-group label a {
    color: var(--green);
    text-decoration: underline
}

.modal-box .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(76, 175, 80, .4);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--tr);
    z-index: 100
}

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

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4, 0, .2, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* =========================================================
   SEARCH DROPDOWN
   ========================================================= */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 500;
    overflow: hidden;
    display: none;
    min-width: 320px
}

.search-results-dropdown.active {
    display: block
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: background var(--tr);
    cursor: pointer;
    text-decoration: none
}

.search-result-item:last-child {
    border-bottom: none
}

.search-result-item:hover {
    background: var(--green-pale)
}

.search-result-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--bg);
    flex-shrink: 0
}

.sr-info .sr-type {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px
}

.sr-info .sr-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3
}

.search-no-results, .search-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px
}

.search-no-results i, .search-loading i {
    margin-right: 6px
}

/* =========================================================
   404 PAGE
   ========================================================= */
.page-404 {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    background: var(--bg)
}

.p404-icon {
    font-size: 64px;
    color: var(--green);
    margin-bottom: 16px;
    animation: float404 3s ease-in-out infinite
}

@keyframes float404 {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

.p404-num {
    font-size: 120px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px
}

.p404-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark)
}

.p404-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6
}

.p404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px
}

/* =========================================================
   THANK YOU PAGE — страница благодарности (после отправки формы)
   ========================================================= */
.page-thankyou {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    background: var(--bg)
}

.ty-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: float404 3s ease-in-out infinite
}

.ty-icon i {
    font-size: 42px;
    color: var(--green)
}

.ty-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
    line-height: 1.25
}

.ty-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6
}

.ty-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px
}

.ty-contacts {
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-light)
}

.ty-contacts a {
    color: var(--green);
    font-weight: 700
}

@media (max-width: 576px) {
    .ty-title {
        font-size: 24px
    }

    .ty-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto
    }
}

/* =========================================================
   PRIVACY PAGE
   ========================================================= */
.privacy-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 0
}

.privacy-wrap h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark)
}

.privacy-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border)
}

.privacy-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--dark)
}

.privacy-wrap p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px
}

.privacy-wrap ul {
    padding-left: 24px;
    list-style: disc;
    margin-bottom: 16px
}

.privacy-wrap ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 6px
}


.mobile-menu-close {
    display: none
}

/* =========================================================
   RESPONSIVE — шапка и меню
   ========================================================= */
@media (max-width: 1024px) {
    .header-search {
        max-width: 240px
    }

    .header-messengers {
        display: none
    }

    .nav-link {
        padding: 13px 14px;
        font-size: 13px
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden
    }

    /* Убираем лишнее из top-bar */
    .top-bar-right .schedule {
        display: none
    }

    .top-bar-left a span {
        max-width: 40px;
        overflow-x: hidden;
        text-wrap: nowrap;

        position: relative;
    }

    .top-bar-left a span::after {
        content: '';
        width: 15px;
        height: 100%;

        position: absolute;
        top: 0;
        right: 0;

        background: linear-gradient(transparent, var(--dark));
    }

    .top-bar-left a:hover span {
        max-width: max-content;
    }

    .top-bar-left a:hover span::after {
        background: none;
    }

    .top-bar .container {
        justify-content: left;
    }

    .top-bar {
        padding: 8px 0
    }

    /* Перестраиваем шапку */
    .header-top {
        padding: 12px 0
    }

    .header-top .container {
        display: grid;
        grid-template-columns:1fr auto auto;
        align-items: center;
        gap: 10px;
        padding: 0 16px;
        box-sizing: border-box
    }

    .header-search, .header-contacts {
        display: none
    }

    .burger {
        display: flex
    }

    .logo {
        font-size: 19px;
        gap: 8px
    }

    .logo i {
        width: 38px;
        height: 38px;
        font-size: 20px
    }

    /* Кнопка заказать звонок — компактно */
    #callbackOpen {
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
        gap: 6px
    }

    /* ── МОБИЛЬНОЕ МЕНЮ — полный экран ──────────────────────── */
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 10000;
        overflow-y: auto;
        overflow-x: hidden;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav.open {
        display: flex
    }

    /* Псевдо-шапка внутри меню */
    .header-nav .container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        padding-top: 70px;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-item {
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link::after {
        display: none
    }

    .nav-link i.nav-icon {
        order: -1;
        font-size: 18px;
        opacity: 1;
        flex-shrink: 0
    }

    .nav-link i.fa-chevron-down {
        margin-left: auto;
        transition: transform .3s;
        font-size: 12px
    }

    .nav-item.open .nav-link i.fa-chevron-down {
        transform: rotate(180deg)
    }

    /* Подменю */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border);
        background: var(--bg);
        padding: 4px 0 8px;
        display: none;
        width: 100%;
    }

    .nav-item.open .nav-dropdown {
        display: block
    }

    .nav-dropdown a {
        padding: 14px 20px 14px 56px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box
    }

    .nav-dropdown a:hover {
        padding-left: 60px
    }

    /* Кнопка закрытия — показывается только когда меню открыто на мобильном */
    .mobile-menu-close {
        display: none
    }

    /* Футер */
    .footer-grid {
        grid-template-columns:1fr;
        gap: 24px
    }

    .footer {
        padding: 40px 0 0
    }

    .footer-legal-inner {
        flex-direction: column;
        gap: 12px
    }
}

@media (max-width: 576px) {
    /*.top-bar{display:none}*/
    .container {
        padding: 0 14px
    }

    .header-top .container {
        padding: 0 14px
    }

    .logo {
        font-size: 18px
    }

    .logo i {
        width: 34px;
        height: 34px;
        font-size: 17px
    }

    #callbackOpen {
        padding: 9px 12px;
        font-size: 11px
    }

    /* 404 */
    .p404-num {
        font-size: 80px
    }

    .p404-title {
        font-size: 22px
    }

    .p404-actions {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px
    }

    .logo {
        font-size: 16px
    }

    .logo i {
        width: 32px;
        height: 32px;
        font-size: 16px
    }

    #callbackOpen {
        padding: 9px 10px;
        font-size: 11px
    }

    #callbackOpen i {
        display: none
    }

    .p404-num {
        font-size: 64px
    }
}

/* =========================================================
   MOBILE MENU CLOSE BUTTON — только на мобильных
   ========================================================= */
@media (max-width: 768px) {
    .mobile-menu-close {
        position: fixed;
        top: 14px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg);
        border: 1px solid var(--border);
        font-size: 18px;
        cursor: pointer;
        z-index: 10001;
        display: none;
        align-items: center;
        justify-content: center;
        color: var(--dark);
    }

    .header-nav.open .mobile-menu-close {
        display: flex
    }
}

/* =========================================================
   PROMO MODAL — модальное окно акции
   ========================================================= */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

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

.promo-box {
    background: var(--white);
    border-radius: var(--radius);
    width: 90%;
    max-width: 560px;
    overflow: hidden;
    position: relative;
    transform: scale(.9) translateY(20px);
    transition: transform .4s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
}

.promo-overlay.active .promo-box {
    transform: scale(1) translateY(0)
}

.promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--tr);
}

.promo-close:hover {
    background: rgba(255, 255, 255, .3)
}

.promo-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 36px 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.promo-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
}

.promo-title span {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    display: block;
    font-weight: 600;
    margin-top: 6px
}

.promo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5
}

.promo-body {
    padding: 28px 36px 32px
}

.promo-features {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-bottom: 24px
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.promo-feature i {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0
}

.promo-actions {
    display: flex;
    gap: 12px
}

.promo-actions .btn-primary {
    flex: 1;
    justify-content: center;
    padding: 14px
}

.promo-skip {
    background: none;
    border: 2px solid var(--border);
    color: var(--text-light);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--tr);
}

.promo-skip:hover {
    border-color: var(--text-muted);
    color: var(--text)
}

.promo-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted)
}

@media (max-width: 576px) {
    .promo-header {
        padding: 28px 24px 22px
    }

    .promo-title {
        font-size: 26px
    }

    .promo-body {
        padding: 22px 24px 26px
    }

    .promo-features {
        grid-template-columns:1fr
    }

    .promo-actions {
        flex-direction: column
    }

    .promo-skip {
        text-align: center
    }
}


/* MOBILE CONTACTS BUTTON */
.mobile-contacts {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 200;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.mobile-contacts-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(76, 175, 80, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.mobile-contacts-toggle.open {
    background: var(--dark)
}

.mobile-contacts-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    max-height: 0;
    transition: max-height .35s ease, opacity .3s;
    opacity: 0
}

.mobile-contacts.open .mobile-contacts-panel {
    max-height: 400px;
    opacity: 1
}

.mc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    white-space: nowrap;
    text-decoration: none;
    transition: transform .2s
}

.mc-item:hover {
    transform: scale(1.03)
}

.mc-item i {
    font-size: 18px
}

.mc-wa {
    background: #E4405F;
    color: #fff
}

.mc-tg {
    background: #0088cc;
    color: #fff
}

.mc-vb {
    background: #7360f2;
    color: #fff
}

@media (max-width: 768px) {
    .mobile-contacts {
        display: flex
    }
}