/* 
* Итоговые стили для премиум хедера
* Click2Dance - Тёмная тема с градиентами и эффектом стекла
* RTL поддержка для иврита
*/

/* CSS Variables - ИЗМЕНЕН ГРАДИЕНТ */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d0;
    --text-muted: #8a8aa8;
    /* Новый градиент - более благородный фиолетово-синий */
    --accent-gradient: linear-gradient(135deg, #8B5CF6, #EC4899, #3B82F6);
    --accent-gradient-hover: linear-gradient(135deg, #9F7AEA, #F472B6, #60A5FA);
    --glass-bg: rgba(20, 20, 35, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(12px);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20b859;
    --transition-smooth: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elegant: all 0.3s ease-in-out;
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
    --gold-accent: linear-gradient(135deg, #ffd700, #ffa500);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Heebo', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* ========== PREMIUM HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-elegant);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ========== PREMIUM LOGO ========== */
.logo-link {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.logo-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========== PREMIUM PHONE ========== */
.header-phone {
    margin-left: auto;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.phone-link:hover {
    border-color: transparent;
    color: white;
}

.phone-link:hover::before {
    left: 0;
}

.phone-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* ========== DESKTOP NAVIGATION ========== */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
        margin-right: auto;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.nav-list > .menu-item {
    position: relative;
}

.nav-list > .menu-item > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    transition: var(--transition-elegant);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    border-radius: 6px;
}

.nav-list > .menu-item > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list > .menu-item > a:hover {
    color: var(--text-primary);
}

.nav-list > .menu-item > a:hover::before {
    transform: scaleX(1);
}

/* ========== DROPDOWN MENU - FIXED VERSION ========== */
.menu-item-has-children {
    position: relative;
}

/* Невидимый мост между пунктом меню и подменю */
.menu-item-has-children::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: 101;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 280px;
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    list-style: none;
    z-index: 100;
    box-shadow: var(--shadow-elegant);
    pointer-events: none;
    border-top: 2px solid transparent;
    border-image: var(--accent-gradient);
    border-image-slice: 1;
    /* УБРАН СКРОЛЛ - теперь высота автоматическая */
    max-height: none;
    overflow-y: visible;
}

/* Показываем подменю при наведении на родительский пункт ИЛИ на само подменю */
.menu-item-has-children:hover .sub-menu,
.sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px) scale(1);
    pointer-events: all;
    transition-delay: 0.1s;
}

/* Декоративный треугольник */
.sub-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-has-children:hover .sub-menu::after,
.sub-menu:hover::after {
    opacity: 1;
}

/* Каскадная анимация пунктов подменю */
.sub-menu li {
    padding: 0.3rem 1.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index));
}

.menu-item-has-children:hover .sub-menu li,
.sub-menu:hover li {
    opacity: 1;
    transform: translateX(0);
}

/* Счетчики для каскадной анимации */
.sub-menu li:nth-child(1) { --item-index: 1; }
.sub-menu li:nth-child(2) { --item-index: 2; }
.sub-menu li:nth-child(3) { --item-index: 3; }
.sub-menu li:nth-child(4) { --item-index: 4; }
.sub-menu li:nth-child(5) { --item-index: 5; }
.sub-menu li:nth-child(6) { --item-index: 6; }
.sub-menu li:nth-child(7) { --item-index: 7; }
.sub-menu li:nth-child(8) { --item-index: 8; }
.sub-menu li:nth-child(9) { --item-index: 9; }
.sub-menu li:nth-child(10) { --item-index: 10; }
.sub-menu li:nth-child(11) { --item-index: 11; }
.sub-menu li:nth-child(12) { --item-index: 12; }
.sub-menu li:nth-child(13) { --item-index: 13; }
.sub-menu li:nth-child(14) { --item-index: 14; }
.sub-menu li:nth-child(15) { --item-index: 15; }

/* Стили для ссылок в подменю - УБРАНО ПОДЧЕРКИВАНИЕ */
.sub-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: block;
    padding: 0.7rem 0;
    /* Убрано border-bottom */
    border-bottom: none;
    transition: var(--transition-elegant);
    position: relative;
    padding-right: 1.8rem;
    font-weight: 500;
    text-decoration: none; /* Явно убираем подчеркивание */
}

/* Добавляем тонкий разделитель через псевдоэлемент вместо border-bottom */
.sub-menu li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.sub-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
}

.sub-menu a:hover {
    color: var(--text-primary);
    transform: translateX(-8px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.sub-menu a:hover::before {
    opacity: 1;
    right: -5px;
}

/* ========== DROPDOWN ARROW ========== */
.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-right: 0.3rem;
}

.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg) translateY(-2px);
}

/* Альтернативная треугольная стрелка */
.triangle-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    margin-right: 0.3rem;
}

.menu-item-has-children:hover .triangle-arrow {
    transform: rotate(180deg);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp-color);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: var(--whatsapp-hover);
}

.whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* ========== BURGER MENU ========== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background: linear-gradient(90deg, #9F7AEA, #F472B6);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background: linear-gradient(90deg, #9F7AEA, #F472B6);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 100px 2rem 2rem;
    overflow-y: auto;
}

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

.mobile-nav-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

/* Анимация появления пунктов мобильного меню */
.mobile-menu-item {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.5s ease forwards;
}

.mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-item:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu-item:nth-child(7) { animation-delay: 0.7s; }
.mobile-menu-item:nth-child(8) { animation-delay: 0.8s; }
.mobile-menu-item:nth-child(9) { animation-delay: 0.9s; }
.mobile-menu-item:nth-child(10) { animation-delay: 1s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.mobile-menu-item > a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    transition: var(--transition-elegant);
}

.mobile-menu-item > a:hover {
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Мобильное подменю */
.mobile-sub-menu {
    list-style: none;
    padding-right: 1.5rem;
    margin: 0.5rem 0 1rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.mobile-menu-item-has-children.active .mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li {
    margin-bottom: 0.5rem;
    animation: slideDown 0.3s ease forwards;
    transform-origin: top;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.mobile-sub-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-elegant);
    position: relative;
    padding-right: 1rem;
    /* Убираем подчеркивание */
    border-bottom: none;
}

/* Добавляем тонкий разделитель для мобильного меню */
.mobile-sub-menu li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.mobile-sub-menu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gradient);
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
}

.mobile-sub-menu a:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

.mobile-sub-menu a:hover::before {
    opacity: 1;
    width: 8px;
    height: 8px;
}

/* Мобильная стрелка */
.mobile-dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-item-has-children.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Мобильный телефон */
.mobile-phone {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
}

.mobile-phone-link:hover {
    border-color: transparent;
    background: var(--accent-gradient);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ========== VIEW ALL CITIES ========== */
.view-all-cities {
    color: transparent !important;
    background: var(--accent-gradient);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 700 !important;
    position: relative;
    text-decoration: none !important;
}

.view-all-cities::after {
    content: '→';
    margin-right: 0.5rem;
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 0.3s ease;
}

.view-all-cities:hover::after {
    transform: translateX(-5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-container {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-link {
        font-size: 1.6rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-menu-item > a {
        font-size: 1.2rem;
    }

    .mobile-sub-menu a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 1rem;
    }

    .logo-link {
        font-size: 1.4rem;
    }

    .mobile-menu {
        padding: 80px 1rem 2rem;
    }

    .mobile-menu-item > a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }

    .mobile-phone-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes subtlePulse {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

.sub-menu:hover {
    animation: subtlePulse 2s infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sub-menu {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 30, 45, 0.98));
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* ========== RTL SPECIFIC ========== */
.rtl .sub-menu {
    right: 0;
    left: auto;
}

.rtl .sub-menu a {
    padding-right: 1.8rem;
    padding-left: 0;
}

.rtl .sub-menu a::before {
    right: 0;
    left: auto;
    content: '←'; /* Меняем направление стрелки для RTL */
}

.rtl .mobile-sub-menu {
    padding-right: 1.5rem;
    padding-left: 0;
}

.rtl .mobile-sub-menu a {
    padding-right: 1rem;
    padding-left: 0;
}

.rtl .mobile-sub-menu a::before {
    right: 0;
    left: auto;
}

.rtl .view-all-cities::after {
    margin-right: 0.5rem;
    margin-left: 0;
    content: '←'; /* Меняем направление стрелки для RTL */
}

.rtl .sub-menu a:hover {
    transform: translateX(8px); /* Меняем направление для RTL */
}

.rtl .mobile-sub-menu a:hover {
    transform: translateX(5px); /* Меняем направление для RTL */
}





/* ========== PREMIUM FOOTER ========== */
.site-footer {
    position: relative;
    margin-top: 4rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
    transition: var(--transition-elegant);
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Сетка футера */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Колонки */
.footer-col {
    position: relative;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Меню футера */
.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.6rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-elegant);
    position: relative;
    display: inline-block;
    padding-right: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
    padding-right: 5px;
}

.footer-link:hover::before {
    opacity: 1;
    right: -20px;
}

/* Контактная информация */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.8rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-elegant);
    padding: 0.3rem 0;
}

.contact-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

.contact-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    transition: var(--transition-elegant);
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.whatsapp-contact {
    color: var(--whatsapp-color);
    font-weight: 600;
}

.whatsapp-contact:hover {
    color: var(--whatsapp-hover);
}

.address {
    cursor: default;
}

.address:hover {
    transform: none;
    color: var(--text-secondary);
}

/* Нижняя строка футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-copyright {
    font-weight: 500;
}

.footer-bottom-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bottom-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-elegant);
    position: relative;
}

.bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bottom-link:hover {
    color: var(--text-primary);
}

.bottom-link:hover::after {
    transform: scaleX(1);
}

.separator {
    color: var(--glass-border);
    font-weight: 300;
}

.age-restriction {
    background: var(--accent-gradient);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

/* ========== RTL SPECIFIC FOR FOOTER ========== */
.rtl .footer-title::after {
    right: 0;
    left: auto;
}

.rtl .footer-link::before {
    content: '←';
    right: auto;
    left: -15px;
}

.rtl .footer-link:hover {
    transform: translateX(5px);
    padding-right: 0;
    padding-left: 5px;
}

.rtl .footer-link:hover::before {
    right: auto;
    left: -20px;
}

.rtl .contact-link:hover {
    transform: translateX(5px);
}

.rtl .bottom-link::after {
    left: auto;
    right: 0;
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-link {
        display: inline-block;
    }

    .contact-link {
        justify-content: center;
    }

    .footer-bottom-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}

/* Анимация для age-restriction */
@keyframes pulseAge {
    0% {
        box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
    }
    100% {
        box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    }
}

.age-restriction {
    animation: pulseAge 2s infinite;
}

/* Украшательство: декоративная линия над футером */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.5), 
        rgba(236, 72, 153, 0.5), 
        rgba(59, 130, 246, 0.5), 
        transparent
    );
}








/* ========== PREMIUM HERO SECTION ========== */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d0;
    --text-muted: #8a8aa8;
    --accent-gradient: linear-gradient(135deg, #8B5CF6, #EC4899, #3B82F6);
    --accent-gradient-hover: linear-gradient(135deg, #9F7AEA, #F472B6, #60A5FA);
    --glass-bg: rgba(20, 20, 35, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20b859;
    --transition-smooth: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elegant: all 0.3s ease-in-out;
    --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Hero Section Base */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

/* ========== VIDEO CONTAINERS ========== */
.hero-videos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-video-container.active {
    opacity: 1;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.2);
    transform: scale(1.02);
    transition: transform 10s ease;
}

.hero-video-container.active .hero-video {
    transform: scale(1.05);
}

.hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary), #1a1a2a);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.9) 100%
    );
    z-index: 3;
}

/* Декоративные элементы */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 20%);
    z-index: 4;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
    animation: glowPulse 8s ease infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* ========== VIDEO INDICATORS ========== */
.video-indicators {
    position: absolute;
    bottom: 120px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 35, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-elegant);
    min-width: 140px;
}

.video-indicator:hover {
    background: rgba(20, 20, 35, 0.8);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(-5px);
}

.video-indicator.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-gradient);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition-elegant);
}

.video-indicator.active .indicator-dot {
    background: var(--accent-gradient);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.indicator-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-elegant);
}

.video-indicator.active .indicator-label {
    color: var(--text-primary);
    font-weight: 700;
}

/* ========== CONTENT CONTAINER ========== */
.hero-container {
    position: relative;
    z-index: 5;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glass Content */
.hero-content {
    max-width: 1000px;
    margin: 0 0 0 auto;
    padding: 4rem;
    background: rgba(20, 20, 35, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px 60px 60px 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: heroFadeIn 1.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.2), transparent 70%);
    pointer-events: none;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Badge */
.hero-badge {
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

/* Title */
.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-subtitle-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-secondary);
}

.subtitle-highlight {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-glow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--accent-gradient), transparent);
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-btn:hover .btn-bg {
    transform: scale(1.2);
}

.btn-icon, .btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: rotate(5deg) scale(1.1);
}

/* WhatsApp Button */
.hero-btn.whatsapp-btn {
    background: var(--whatsapp-color);
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.hero-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Call Button */
.hero-btn.call-btn {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.hero-btn.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

/* Quick Links */
.hero-quick-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-elegant);
    padding: 0.5rem 0;
}

.quick-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

.quick-link.vip {
    color: transparent;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

.quick-link svg {
    transition: transform 0.3s ease;
}

.quick-link:hover svg {
    transform: translateX(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gradient), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.3); opacity: 0.3; }
}

/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 6;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -5px 20px rgba(0, 0, 0, 0.3));
}

/* ========== RTL STYLES ========== */
.rtl .hero-content {
    margin: 0 auto 0 0;
    border-radius: 60px 60px 0 60px;
}

.rtl .video-indicators {
    right: auto;
    left: 40px;
}

.rtl .video-indicator:hover {
    transform: translateX(5px);
}

.rtl .title-line {
    transform: translateX(30px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rtl .quick-link:hover {
    transform: translateX(5px);
}

.rtl .quick-link:hover svg {
    transform: translateX(3px);
}

/* ========== DESKTOP (1200px+) ========== */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 1000px;
        padding: 4rem;
    }
    
    .title-line {
        font-size: 3.2rem;
    }
}

/* ========== LAPTOP (1024px - 1199px) ========== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-content {
        max-width: 800px;
        padding: 3rem;
        margin: 0 2rem 0 auto;
        border-radius: 50px 50px 50px 0;
    }
    
    .rtl .hero-content {
        margin: 0 auto 0 2rem;
        border-radius: 50px 50px 0 50px;
    }
    
    .title-line {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-indicators {
        bottom: 100px;
        right: 30px;
    }
    
    .rtl .video-indicators {
        right: auto;
        left: 30px;
    }
    
    .video-indicator {
        padding: 0.4rem 1rem 0.4rem 1.2rem;
        min-width: 130px;
    }
}

/* ========== TABLET (768px - 1023px) ========== */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        max-width: 700px;
        padding: 2.5rem;
        margin: 0 auto;
        border-radius: 40px;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-subtitle-wrapper {
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-subtitle-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Video indicators horizontal */
    .video-indicators {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        padding: 1rem 0;
        gap: 0.8rem;
    }
    
    .video-indicator {
        flex-direction: column;
        padding: 0.8rem;
        min-width: 80px;
        text-align: center;
    }
    
    .indicator-label {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .video-indicator:hover {
        transform: translateY(-5px);
    }
    
    .rtl .video-indicator:hover {
        transform: translateY(-5px);
    }
    
    /* Stats */
    .hero-stats {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Buttons */
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Quick links */
    .hero-quick-links {
        gap: 1.5rem;
    }
    
    .quick-link {
        font-size: 0.9rem;
    }
    
    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }
    
    /* Video scale */
    .hero-video-container.active .hero-video {
        transform: scale(1.03);
    }
}

/* ========== SMALL TABLET (600px - 767px) ========== */
@media (min-width: 600px) and (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 30px;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-subtitle-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .subtitle-highlight {
        font-size: 0.95rem;
    }
    
    /* Video indicators */
    .video-indicators {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .video-indicator {
        padding: 0.5rem 1rem;
        min-width: auto;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .video-indicator.active .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    .indicator-label {
        font-size: 0.75rem;
    }
    
    /* Stats grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        border-radius: 30px;
    }
    
    .stat-glow {
        display: none;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Buttons column */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Quick links */
    .hero-quick-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .quick-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ========== MOBILE (до 599px) ========== */
@media (max-width: 599px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 60px;
        margin-top: -60px;
    }
    
    .hero-video-container.active .hero-video {
        transform: scale(1.02);
    }
    
    .hero-overlay {
        background: linear-gradient(
            0deg,
            rgba(10, 10, 15, 0.95) 0%,
            rgba(10, 10, 15, 0.7) 50%,
            rgba(10, 10, 15, 0.8) 100%
        );
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 0 0.8rem;
        border-radius: 24px;
        background: rgba(20, 20, 35, 0.35);
        backdrop-filter: blur(15px);
    }
    
    .hero-content::after {
        width: 80px;
        height: 80px;
    }
    
    .hero-badge {
        margin-bottom: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .title-line {
        font-size: 1.4rem;
    }
    
    .title-line:nth-child(1) { animation-delay: 0.1s; }
    .title-line:nth-child(2) { animation-delay: 0.2s; }
    .title-line:nth-child(3) { animation-delay: 0.3s; }
    
    .hero-subtitle-wrapper {
        flex-direction: column;
        gap: 0.3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle-icon {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .subtitle-highlight {
        font-size: 0.9rem;
        display: inline;
    }
    
    /* Video indicators compact */
    .video-indicators {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        gap: 0.3rem;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-indicator {
        padding: 0.4rem;
        min-width: auto;
        background: transparent;
        border: none;
    }
    
    .indicator-label {
        display: none;
    }
    
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    .video-indicator.active .indicator-dot {
        width: 12px;
        height: 12px;
    }
    
    /* Stats grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.8rem;
        margin-bottom: 1.2rem;
        border-radius: 20px;
    }
    
    .stat-glow {
        display: none;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Buttons column */
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Quick links */
    .hero-quick-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .quick-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .quick-link svg {
        width: 14px;
        height: 14px;
    }
    
    /* Hide elements */
    .scroll-indicator,
    .hero-particles {
        display: none;
    }
    
    .hero-glow {
        opacity: 0.3;
    }
}

/* ========== SMALL MOBILE (до 360px) ========== */
@media (max-width: 360px) {
    .hero-section {
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .hero-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-icon {
        width: 16px;
        height: 16px;
    }
    
    .quick-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .video-indicators {
        padding: 0.4rem;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .video-indicator.active .indicator-dot {
        width: 10px;
        height: 10px;
    }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 120vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 1.2rem;
    }
    
    .title-line {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle-wrapper {
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        margin-bottom: 1rem;
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
    
    .video-indicators {
        margin-top: 0.5rem;
        padding: 0.3rem;
    }
    
    .quick-link {
        font-size: 0.75rem;
    }
    
    .hero-glow {
        display: none;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .title-line,
    .hero-subtitle-wrapper,
    .hero-stats,
    .hero-buttons,
    .hero-quick-links,
    .video-indicators,
    .hero-video-container,
    .video-indicator {
        animation: none;
        transition: none;
    }
    
    .video-indicator:hover {
        transform: none;
    }
}

/* ========== RETINA DISPLAYS ========== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-content {
        border-width: 0.5px;
    }
    
    .badge-text {
        border-width: 0.5px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .hero-section {
        min-height: auto;
        margin-top: 0;
        padding-top: 0;
        background: white;
        color: black;
    }
    
    .hero-videos,
    .hero-overlay,
    .hero-particles,
    .hero-glow,
    .video-indicators,
    .scroll-indicator,
    .hero-wave {
        display: none;
    }
    
    .hero-content {
        background: white;
        color: black;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black;
    }
    
    .hero-btn {
        display: none;
    }
}