* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ЕДИНЫЙ ТЕМНЫЙ ФОН ДЛЯ ВСЕЙ СТРАНИЦЫ */
body {
    background: #0a0a0f;
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ФОН С ЧАСТИЦАМИ */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

@keyframes gentleGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3),
                    0 0 10px rgba(16, 185, 129, 0.2),
                    0 0 15px rgba(16, 185, 129, 0.1);
    }
    50% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.4),
                    0 0 20px rgba(16, 185, 129, 0.3),
                    0 0 30px rgba(16, 185, 129, 0.2);
    }
}

@keyframes sparkleAnim {
    0% { 
        transform: scale(0) translateY(0); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: scale(1) translateY(-20px); 
        opacity: 0; 
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yellowGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
                    0 0 10px rgba(255, 215, 0, 0.2),
                    0 0 15px rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.5);
    }
    50% { 
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6),
                    0 0 20px rgba(255, 215, 0, 0.4),
                    0 0 30px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes timerPulse {
    0%, 100% {
        border-color: rgba(139, 92, 246, 0.2);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    }
}

/* Анимации переходов между модальными окнами */
@keyframes modalSlideOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-exit {
    animation: modalSlideOut 0.3s ease forwards !important;
}

.modal-enter {
    animation: modalSlideIn 0.3s ease forwards !important;
}

/* Анимация для кнопки */
@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.create-account-btn-enabled {
    animation: btnPulse 2s ease-in-out infinite;
}

/* Стили для скрытых элементов */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ШАПКА ========== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideInDown 0.8s ease-out;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 7, 25, 0.3);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 0 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    animation: fadeIn 1s ease-out 0.2s both;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    animation: fadeIn 1s ease-out 0.4s both;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #a78bfa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.6s both;
    flex: 0 0 auto;
}

/* Выбор города */
.city-selector {
    position: relative;
}

.city-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    min-width: 180px;
    color: white;
}

.city-current:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.city-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 7, 25, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}

.city-selector.active .city-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    color: #e2e8f0;
}

.city-option:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
}

/* ========== КНОПКА ВХОДА В ПРОФИЛЬ ========== */
.login-btn {
    padding: 12px 28px;
    background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1;
    outline: none;
}

.login-btn:hover,
.login-btn:focus,
.login-btn:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.login-btn::after,
.login-btn::before {
    display: none !important;
    content: none !important;
}

/* ========== СТИЛИ ДЛЯ КНОПКИ ПРОФИЛЯ (ПОСЛЕ ВХОДА) ========== */
.profile-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    border: none !important;
}

.profile-btn i {
    font-size: 16px;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.logout-btn {
    transition: all 0.3s;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 16px;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444;
    transform: translateY(-2px);
}

/* ========== СОЦСЕТИ ========== */
.hero-social-icons {
    position: fixed;
    top: 120px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    animation: slideInRight 1s ease-out 0.8s both;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.hero-social-icons:not(.visible) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.social-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* ========== ГЛАВНЫЙ БАННЕР ========== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 120px 5% 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
}

.hero-left {
    padding-right: 40px;
}

.main-title {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 1s both;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    white-space: nowrap;
    animation: fadeInUp 1s ease-out 1.2s both;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.info-text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.info-item i {
    color: #8b5cf6;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
}

.protection-text {
    color: #fff;
}

.time-text {
    color: #a78bfa;
    font-weight: 500;
}

.buttons-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.action-btn-container {
    position: relative;
    display: inline-block;
}

.action-btn {
    position: relative;
    width: 220px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.presentation-btn {
    animation: gentleGlow 2s ease-in-out infinite;
}

/* ========== 3D ШАР ========== */
.sphere-container {
    width: 100%;
    height: 600px;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out 0.5s both;
    box-shadow: none;
    position: relative;
    transition: none;
    margin-top: -20px;
}

.sphere-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: transparent !important;
}

/* ========== ПРОМО-БЛОК ========== */
.promo-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.promo-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%,
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.icon-inner {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
}

.promo-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.promo-card-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
    flex-grow: 1;
}

/* ========== ВОЗМОЖНОСТИ ========== */
.features-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.features-section .features-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.features-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    flex-grow: 1;
}

.feature-card-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.opening-date {
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 15px 0;
    padding: 5px 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: yellowGlow 2s ease-in-out infinite;
}

.feature-card-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: auto;
    text-decoration: none;
}

.feature-card-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

/* ========== ТАРИФЫ ========== */
.pricing-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.pricing-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-card-subtitle {
    font-size: 16px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.pricing-cost {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-label {
    color: #94a3b8;
    font-size: 15px;
}

.cost-value {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.cost-value.free {
    color: #10b981;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 35px;
}

.pricing-features .features-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.feature-list {
    list-style: none;
}

.feature-item {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.feature-item.highlight {
    color: #cbd5e1;
    font-weight: 600;
}

.pricing-btn {
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 100%;
}

.pricing-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border: none;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

/* ========== AI-ПОДДЕРЖКА ========== */
.ai-support-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ai-support-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.ai-support-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.ai-support-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.ai-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-support-card {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.ai-support-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.ai-support-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.ai-support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.ai-support-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    flex-grow: 1;
}

.ai-support-card-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
    flex-grow: 1;
}

/* ========== FAQ ========== */
.faq-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #8b5cf6 20%, 
        #7c3aed 50%, 
        #8b5cf6 80%, 
        transparent 100%);
    border-radius: 0;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.faq-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 700px;
    margin: 50px auto 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    flex-grow: 1;
}

.faq-icon {
    color: #8b5cf6;
    font-size: 20px;
    transition: transform 0.3s;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
    border-top-color: rgba(139, 92, 246, 0.2);
}

.faq-answer-text {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
}

/* ========== КАРТА ========== */
.map-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.map-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.map-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.main-map-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    align-items: stretch;
}

.map-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0;
}

.map-slogan {
    font-size: 20px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: left;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.map-contacts {
    margin-top: 20px;
}

.contacts-title {
    font-size: 20px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s;
    border: none;
}

.contact-item:hover {
    background: transparent;
    transform: translateY(-2px);
    border-color: transparent;
}

.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.contact-link:hover {
    text-decoration: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-icon.gmail {
    background: linear-gradient(45deg, #D14836, #EA4335);
}

.contact-icon.gmail:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.4);
}

.contact-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.contact-icon.whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-icon.address {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.contact-text {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.contact-text strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.map-wrapper {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.8) 0%,
        rgba(20, 15, 35, 0.9) 100%);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(90%) brightness(90%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.05) 0%,
        rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    color: #8b5cf6;
    font-size: 48px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

/* ========== ПОДВАЛ ========== */
.footer {
    padding: 80px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
    margin-top: auto;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

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

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-link:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-icon.vk {
    background: linear-gradient(45deg, #0077FF, #00A2FF);
}

.footer-social-icon.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.footer-social-icon.telegram {
    background: linear-gradient(45deg, #0088cc, #00aced);
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal-link {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: #a78bfa;
}

/* ========== ПРЕЗЕНТАЦИОННОЕ МОДАЛЬНОЕ ОКНО ========== */
.presentation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

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

.presentation-container {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.95) 0%,
        rgba(20, 15, 35, 0.98) 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 1200px;
    height: 85vh;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(139, 92, 246, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.presentation-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.95) 0%,
        rgba(20, 15, 35, 0.98) 100%);
    z-index: 10;
    flex-shrink: 0;
    min-height: 80px;
}

.presentation-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    margin-right: 50px;
    line-height: 1.3;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.close-presentation {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px;
}

.close-presentation:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: rotate(90deg);
}

.presentation-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.presentation-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    height: calc(100% - 100px);
    overflow: hidden;
}

.presentation-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-right: 15px;
    height: 100%;
    padding-bottom: 20px;
}

.presentation-left::-webkit-scrollbar {
    display: none;
}

.presentation-left {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.presentation-card {
    background: linear-gradient(180deg, 
        rgba(40, 30, 60, 0.8) 0%,
        rgba(30, 20, 50, 0.9) 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    min-height: 0;
    flex-shrink: 0;
}

.presentation-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.presentation-card-header {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 15px;
    gap: 15px;
}

.presentation-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.presentation-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-align: left;
    width: calc(100% - 65px);
    margin: 0;
}

.presentation-card-text {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 14px;
    text-align: left;
    margin-top: 15px;
}

.presentation-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow: hidden;
}

.video-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    flex-shrink: 0;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 100%);
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 100%);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(139, 92, 246, 0) 70%);
    opacity: 0.5;
}

.video-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    transition: transform 0.3s;
}

.video-placeholder:hover .video-icon {
    transform: scale(1.1);
}

.video-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
}

.video-description {
    background: rgba(40, 30, 60, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    overflow: hidden;
}

.video-description h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.video-description p {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 15px;
}

.presentation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
    flex-shrink: 0;
}

.stat-item {
    background: rgba(40, 30, 60, 0.8);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.stat-item.highlight {
    border: 1px solid rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.stat-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.3;
}

.presentation-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    flex-shrink: 0;
}

.presentation-cta {
    text-align: center;
}

.presentation-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.presentation-cta p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.presentation-cta-btn {
    padding: 12px 24px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: gentleGlow 2s ease-in-out infinite;
}

.presentation-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    animation: none;
}

/* ========== ПОЛИТИКИ МОДАЛЬНЫЕ ОКНА ========== */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

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

.policy-container {
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.95) 0%,
        rgba(20, 15, 35, 0.98) 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideUpFade 0.5s ease-out;
    display: flex;
    flex-direction: column;
}

.policy-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(30, 20, 45, 0.95) 0%,
        rgba(20, 15, 35, 0.98) 100%);
    z-index: 10;
    flex-shrink: 0;
}

.policy-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

.policy-content {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
    color: #cbd5e1;
    line-height: 1.6;
}

.policy-content h3 {
    color: white;
    margin: 25px 0 15px 0;
    font-size: 20px;
    font-weight: 700;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 15px;
}

.close-policy {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.close-policy:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: rotate(90deg);
}

/* ========== ТАЙМЕР ========== */
.launch-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.launch-timer-item .timer-label {
    font-size: 14px;
    color: #a78bfa;
    font-weight: 500;
    white-space: nowrap;
}

.launch-timer {
    display: inline-block;
}

.launch-timer .timer-display {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(139, 92, 246, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: timerPulse 2s ease-in-out infinite;
}

.launch-timer .timer-unit {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.launch-timer .timer-unit span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.launch-timer .timer-unit .unit {
    font-size: 10px;
    color: #94a3b8;
}

.launch-timer .timer-separator {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 14px;
    margin: 0 2px;
}

/* ========== АДАПТАЦИЯ ========== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .header-left {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .header {
        flex-wrap: wrap;
        padding: 15px 5%;
    }
    
    .header-left {
        width: auto;
    }
    
    .nav-menu {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;
        order: 3;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .sphere-container {
        height: 500px;
        margin-top: 20px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 5% 50px;
        min-height: auto;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .main-title {
        font-size: 56px;
    }
    
    .subtitle {
        white-space: normal;
        font-size: 16px;
    }
    
    .buttons-container {
        justify-content: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .ai-support-grid {
        gap: 30px;
    }
    
    .main-map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-info {
        text-align: center;
    }
    
    .map-slogan {
        text-align: center;
    }
    
    .contacts-title {
        justify-content: center;
    }
    
    .contact-items {
        align-items: center;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .hero-social-icons {
        top: 110px;
        right: 4%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .sphere-container {
        height: 450px;
        margin-top: 15px;
        border-radius: 20px;
    }
    
    .hero {
        padding: 90px 5% 40px;
    }
    
    .main-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        width: 200px;
        height: 50px;
        font-size: 15px;
    }
    
    .promo-section {
        padding: 80px 5%;
    }
    
    .promo-title {
        font-size: 36px;
    }
    
    .promo-subtitle {
        font-size: 16px;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-section {
        padding: 80px 5%;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-section {
        padding: 80px 5%;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: auto;
    }
    
    .ai-support-section {
        padding: 80px 5%;
    }
    
    .ai-support-title {
        font-size: 36px;
    }
    
    .ai-support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-section {
        padding: 80px 5%;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-title::after {
        width: 200px;
    }
    
    .map-section {
        padding: 80px 5%;
    }
    
    .map-title {
        font-size: 36px;
    }
    
    .map-wrapper {
        height: 350px;
        padding: 15px;
    }
    
    .footer {
        padding: 60px 5% 30px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-social-icons {
        top: 100px;
        right: 4%;
        gap: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .presentation-container {
        height: 95vh;
        max-width: 98%;
    }
    
    .presentation-title {
        font-size: 24px;
    }
    
    .presentation-main {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-y: auto;
    }
    
    .video-container {
        height: 250px;
    }
    
    .presentation-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .policy-title {
        font-size: 24px;
        max-width: calc(100% - 70px);
    }
    
    .close-policy {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .launch-timer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .sphere-container {
        height: 400px;
        border-radius: 18px;
    }
    
    .hero-social-icons {
        top: 90px;
        right: 3%;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 4%;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .city-current {
        min-width: 140px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 4% 30px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .action-btn {
        width: 180px;
        height: 46px;
        font-size: 14px;
    }
    
    .promo-title {
        font-size: 30px;
    }
    
    .features-title {
        font-size: 30px;
    }
    
    .pricing-title {
        font-size: 30px;
    }
    
    .ai-support-title {
        font-size: 30px;
    }
    
    .faq-title {
        font-size: 30px;
    }
    
    .map-title {
        font-size: 30px;
    }
    
    .map-wrapper {
        height: 300px;
        padding: 10px;
    }
    
    .map-marker {
        font-size: 36px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .hero-social-icons {
        top: 80px;
        right: 3%;
        gap: 6px;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .presentation-title {
        font-size: 20px;
    }
    
    .close-presentation {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .video-container {
        height: 200px;
    }
    
    .video-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .policy-title {
        font-size: 20px;
        max-width: calc(100% - 60px);
    }
    
    .close-policy {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .sphere-container {
        height: 350px;
        border-radius: 16px;
    }
    
    .hero-social-icons {
        top: 75px;
        right: 3%;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .header-left {
        gap: 10px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .city-current {
        min-width: 120px;
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .login-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .action-btn {
        width: 160px;
        height: 42px;
        font-size: 13px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1920px) {
    .hero {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 84px;
    }
    
    .sphere-container {
        height: 700px;
    }
    
    .promo-section,
    .features-section,
    .pricing-section,
    .ai-support-section,
    .faq-section,
    .map-section {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .promo-title,
    .features-title,
    .pricing-title,
    .ai-support-title,
    .faq-title,
    .map-title {
        font-size: 64px;
    }
}