/* ==================== CSS Variables ==================== */
:root {
    /* Colors */
    --primary-purple: #a855f7;
    --primary-pink: #ec4899;
    --primary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    
    /* Dark backgrounds */
    --bg-dark: #0a0a0f;
    --bg-dark-secondary: #13131a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222f;
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --text-muted: #71718a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    
    /* Shadows & Glows */
    --glow-purple: 0 0 60px rgba(168, 85, 247, 0.4);
    --glow-pink: 0 0 60px rgba(236, 72, 153, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Reset ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
	z-index: 10;
}

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

.solution-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.7) 100%);*/
    z-index: 1;
}

.solution-icon-large {
    position: relative;
    z-index: 2;
}

.solution-card:hover .solution-bg-image {
    transform: scale(1.1);
}

/* Видео в блоке solution-image */
.solution-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: var(--transition);
}

/* Затемнение поверх видео 
.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(168, 85, 247, 0.6) 0%, 
        rgba(236, 72, 153, 0.6) 100%
    );
    z-index: 1;
    transition: var(--transition);
}
*/
/* Иконка должна быть выше видео и оверлея */
.solution-icon-large {
    position: relative;
    z-index: 2;
}



/* Эффект при наведении */
.solution-card:hover .solution-video {
    transform: scale(1.05);
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(
        135deg, 
        rgba(168, 85, 247, 0.4) 0%, 
        rgba(236, 72, 153, 0.4) 100%
    );
}


/* ==================== Gradient Text ==================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-purple);
}

.logo-icon i {
    font-size: 1.25rem;
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-card);
    padding: 0.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn img {
    width: 18px;
    height: 14px;
    border-radius: 2px;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
}

/* ==================== Компактный переключатель для мобильных ==================== */
@media (max-width: 640px) {
    .lang-btn {
        padding: 0.45rem;
        gap: 0;
        min-width: 36px;
        justify-content: center;
    }
    
    /* Скрываем все, кроме иконки глобуса */
    .lang-btn i:first-child {
        font-size: 1rem;
        margin: 0;
    }
    
    #currentLang,
    .lang-btn i:last-child {
        display: none;
    }
    
    .lang-dropdown {
        min-width: 100px;
        right: 0;
    }
}


.btn-cta {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero-main {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* ==================== Hero Section ==================== */
.hero-main {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* ==================== Image Slider ==================== */
.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Затемняющий оверлей поверх слайдера */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(220, 220, 220, 0.33) 0%,
        rgba(168, 85, 247, 0.3) 100%
    );
    z-index: 2;
}

/* Сферы должны быть выше слайдера и оверлея */
.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatSphere 12s ease-in-out infinite;
    z-index: 3;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-blue);
    bottom: -15%;
    left: -10%;
    animation-delay: 4s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-orange);
    top: 40%;
    left: 30%;
    animation-delay: 8s;
}

@keyframes floatSphere {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(30px, 30px) scale(0.95);
    }
}

/* Контент должен быть выше всего */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatSphere 12s ease-in-out infinite;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-blue);
    bottom: -15%;
    left: -10%;
    animation-delay: 4s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-orange);
    top: 40%;
    left: 30%;
    animation-delay: 8s;
}

@keyframes floatSphere {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(30px, 30px) scale(0.95);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
	color: rgba(0, 0, 0, 0.95);
	
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
	color: rgba(0, 0, 0, 0.95);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}



.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 80px rgba(168, 85, 247, 0.6);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-purple);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-purple);
    font-size: 1.25rem;
}

/* Hero Visual */
.hero-visual-section {
    position: relative;
}

.stats-card {
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.stats-card.floating {
    animation: floatCard 4s ease-in-out infinite;
}

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

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-card-header i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card-header span {
    font-weight: 600;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-section {
    margin-top: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-bar-animated {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ==================== Solutions Carousel ==================== */
.solutions-carousel {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-swiper {
    padding: 2rem 0 4rem;
}
/* ==================== Solutions Carousel ==================== */
.solutions-carousel {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.solutions-swiper {
    padding: 2rem 0 4rem;
}





/* Solution Image - Занимает всю ширину */
.solution-image {
    position: relative;
    width: 100%;
    height: 450px; /* Фиксированная высота */
    overflow: hidden;
}

/* Визуальная часть с градиентом - на всю ширину */
.solution-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

/* Градиентные фоны */
.gradient-purple-bg {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.gradient-blue-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.gradient-pink-bg {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
}

.gradient-orange-bg {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.gradient-green-bg {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.gradient-cyan-bg {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

/* Большая иконка по центру */
.solution-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.solution-icon-large i {
    font-size: 3.5rem;
    color: white;
}



/* Badge поверх изображения */
.solution-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Зеленая точка "Онлайн" */
.online-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3),
                0 0 10px rgba(16, 185, 129, 0.6);
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3),
                    0 0 10px rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2),
                    0 0 20px rgba(16, 185, 129, 0.8);
    }
}

/* Info секция */
.solution-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.solution-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius-sm);
    color: var(--primary-purple);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}



/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: var(--bg-card);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-purple);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .solution-image {
        height: 520px;
    }
    
    .solution-icon-large {
        width: 90px;
        height: 90px;
    }
    
    .solution-icon-large i {
        font-size: 2.5rem;
    }
    
    .solution-name {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .solution-image {
        height: 520px;
    }
    
    .solution-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .solution-icon-large i {
        font-size: 2rem;
    }
}


.solution-image {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.gradient-purple {
    background: var(--gradient-primary);
}

.gradient-blue {
    background: var(--gradient-blue);
}

.gradient-pink {
    background: var(--gradient-orange);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.gradient-green {
    background: var(--gradient-green);
}

.gradient-cyan {
    background: var(--gradient-cyan);
}

.solution-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.solution-info {
    padding: 1.5rem;
}

.solution-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.solution-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.375rem 0.75rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-sm);
    color: var(--primary-purple);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: var(--bg-card);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-primary);
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gradient-primary);
}

/* ==================== Create Dataset Section ==================== */
/* ==================== Create Dataset Section ==================== */
.create-dataset-section {
    padding: 2rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .create-dataset-section {
        padding: 4rem 0;
    }
}

/* Широкий контейнер */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container-wide {
        padding: 0 2rem;
    }
}

@media (min-width: 1280px) {
    .container-wide {
        padding: 0;
    }
}

/* ==================== Основной wrapper с видео ==================== */
.create-visual-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .create-visual-wrapper {
        min-height: 600px;
        border-radius: var(--radius-2xl);
    }
}

@media (min-width: 1024px) {
    .create-visual-wrapper {
        min-height: 700px;
    }
}

/* ==================== Фоновый слой (видео/анимация) ==================== */
.create-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Видео фон */
.create-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Анимированный фон (альтернатива видео) */
.create-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #a855f7 0%,
        #ec4899 25%,
        #f97316 50%,
        #3b82f6 75%,
        #a855f7 100%
    );
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    z-index: 0;
}

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

/* Добавляем плавающие частицы на фон */
.create-animated-bg::before,
.create-animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatParticle 10s ease-in-out infinite;
}

.create-animated-bg::before {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.create-animated-bg::after {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 15%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -30px);
    }
}

/* Затемняющий оверлей */
.create-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.5) 0%,
        rgba(168, 85, 247, 0.35) 100%
    );
    z-index: 1;
}

/* ==================== Контент поверх видео ==================== */
.create-content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .create-content-overlay {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .create-content-overlay {
        padding: 5rem 4rem;
    }
}

/* Текстовый контент */
.create-text-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.create-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

@media (min-width: 768px) {
    .create-badge {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

.create-badge i {
    font-size: 1rem;
}

/* Заголовок */
.create-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .create-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .create-title {
        font-size: 3.75rem;
    }
}

/* Описание */
.create-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 650px;
}

@media (min-width: 768px) {
    .create-description {
        font-size: 1.125rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .create-description {
        font-size: 1.2rem;
    }
}

/* Кнопка "Подробнее" */
.btn-create-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .btn-create-learn-more {
        padding: 1.125rem 2.5rem;
        font-size: 1.05rem;
    }
}

/* Световой эффект на кнопке */
.btn-create-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-create-learn-more:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 50px rgba(168, 85, 247, 0.7);
}

.btn-create-learn-more:hover::before {
    left: 100%;
}

.btn-create-learn-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-create-learn-more:hover i {
    transform: translateX(5px);
}

.btn-create-learn-more:active {
    transform: translateY(-1px) scale(0.98);
}

/* ==================== Анимации появления ==================== */
.create-visual-wrapper {
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.create-text-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Pulse эффект для badge */
.create-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(168, 85, 247, 0.6);
    }
}

/* ==================== Адаптивность для мобильных ==================== */
@media (max-width: 640px) {
    .create-visual-wrapper {
        min-height: 450px;
        border-radius: var(--radius-lg);
    }
    
    .create-content-overlay {
        padding: 2rem 1rem;
    }
    
    .create-title {
        font-size: 1.75rem;
    }
    
    .create-description {
        font-size: 0.95rem;
    }
    
    .btn-create-learn-more {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Очень маленькие экраны */
@media (max-width: 375px) {
    .create-visual-wrapper {
        min-height: 400px;
    }
    
    .create-title {
        font-size: 1.5rem;
    }
    
    .create-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Планшеты в портретной ориентации */
@media (min-width: 641px) and (max-width: 1023px) {
    .create-visual-wrapper {
        min-height: 550px;
    }
    
    .create-title {
        font-size: 2.5rem;
    }
}
/* ==================== END END NED Create Dataset Section ==================== */

.create-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.create-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.create-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.create-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-create-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-purple);
    transition: var(--transition);
}

.btn-create-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 80px rgba(168, 85, 247, 0.6);
}

.creator-preview {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.creator-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.creator-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon i {
    font-size: 1.5rem;
    color: white;
}

/* ==================== Features Storytelling ==================== */
.features-storytelling {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.feature-story-block {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.feature-story-block.reverse {
    background: rgba(168, 85, 247, 0.03);
    border-color: rgba(168, 85, 247, 0.1);
}

.feature-story-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-story-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== Pricing Section ==================== */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-save {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary-purple);
    margin-top: 0.25rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-purple);
}

.btn-pricing.primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.btn-pricing.primary:hover {
    box-shadow: var(--glow-purple);
}

.payment-info {
    text-align: center;
    margin-top: 3rem;
}

.payment-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.payment-methods i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--primary-purple);
}

/* ==================== FAQ Section ==================== */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-question i {
    font-size: 1rem;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==================== Use Cases Section ==================== */
.use-cases-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon i {
    font-size: 2rem;
    color: white;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== Final CTA Section ==================== */
.final-cta-section {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.cta-email-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(26, 26, 36, 0.9);
}

.cta-email-form input::placeholder {
    color: var(--text-muted);
}

.btn-cta-submit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow-purple);
}

.btn-cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 80px rgba(168, 85, 247, 0.6);
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== Footer ==================== */
.footer-main {
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ==================== Scroll to Top ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--glow-purple);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-content-wrapper,
    .create-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-section {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-cards,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-main {
        padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .create-title {
        font-size: 2.25rem;
    }
    
    .pricing-cards,
    .use-cases-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-email-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}
/* ==================== Age Verification Modal (18+) - ИСПРАВЛЕННЫЙ Z-INDEX ==================== */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999; /* ← МАКСИМАЛЬНЫЙ приоритет */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Скрытие модального окна */
.age-verification-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Оверлей на весь экран */
.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a24 100%);
    z-index: 999998;
}

/* Добавляем анимированный фон */
.age-modal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(59, 130, 246, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* Контент модального окна */
.age-modal-content {
    position: relative;
    z-index: 999999; /* ← Выше оверлея */
    width: 90%;
    max-width: 600px;
    animation: modalSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.age-modal-inner {
    background: rgba(26, 26, 36, 0.98); /* ← Сделал менее прозрачным */
    backdrop-filter: blur(20px);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(168, 85, 247, 0.3);
    position: relative;
    z-index: 999999;
}

/* Иконка */
.age-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 999999;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(168, 85, 247, 0.7);
    }
}

.age-icon i {
    font-size: 3rem;
    color: white;
}

/* Заголовок */
.age-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 999999;
}

/* Описание */
.age-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 999999;
}

/* Вопрос */
.age-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 999999;
}

/* Кнопки */
.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 999999;
}

.age-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 999999;
}

.age-btn i {
    font-size: 1.5rem;
}

/* Кнопка "Да" */
.age-btn-yes {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(168, 85, 247, 0.6);
}

.age-btn-yes:active {
    transform: translateY(-1px);
}

/* Кнопка "Нет" */
.age-btn-no {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.age-btn-no:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.age-btn-no:active {
    transform: translateY(0);
}

/* Disclaimer */
.age-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 1rem;
    position: relative;
    z-index: 999999;
}

/* Блокировка скролла когда модальное окно открыто */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Адаптивность */
@media (min-width: 768px) {
    .age-modal-inner {
        padding: 4rem 3rem;
    }
    
    .age-title {
        font-size: 2.5rem;
    }
    
    .age-description {
        font-size: 1.1rem;
    }
    
    .age-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .age-btn {
        flex: 1;
        max-width: 250px;
    }
}

@media (max-width: 640px) {
    .age-modal-inner {
        padding: 2rem 1.5rem;
    }
    
    .age-icon {
        width: 80px;
        height: 80px;
    }
    
    .age-icon i {
        font-size: 2.5rem;
    }
    
    .age-title {
        font-size: 1.75rem;
    }
    
    .age-question {
        font-size: 1.25rem;
    }
    
    .age-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .age-modal-inner {
        padding: 1.5rem 1rem;
    }
    
    .age-title {
        font-size: 1.5rem;
    }
    
    .age-description {
        font-size: 0.9rem;
    }
}


/* Блокировка скролла когда модальное окно открыто */
body.modal-op


/* Обертка-ссылка для всей карточки */
.solution-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
/* Solution Card остается без изменений */
.solution-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Улучшенный hover эффект для ссылки */
.solution-card-link:hover .solution-card {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.solution-card-link:active .solution-card {
    transform: translateY(-5px);
}


