.glass-text {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.75px rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35),
        0 10px 25px rgba(99, 102, 241, 0.18);
}

.glass-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 15%,
            rgba(255, 255, 255, 0.9) 35%,
            rgba(255, 255, 255, 0) 55%);
    background-size: 200% 100%;
    animation: glassTextShimmer 6s ease-in-out infinite;
    white-space: pre-line;
    pointer-events: none;
}

@keyframes glassTextShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.section-title.glass-title {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
    padding: 18px 24px;
    border-radius: 12px;
}

/* Убираем блики с заголовков секций */
.section-title.glass-title::before {
    display: none;
}

/* Упрощенная карточка для заголовка */
.glass-title {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    display: inline-block;
    margin-bottom: 2.5rem;
}

/* Убираем блики */
.glass-title::before {
    display: none;
}

/* Убираем волновые эффекты */
.glass-title::after {
    display: none;
}

.glass-title .hero-subtitle {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    box-shadow: none;
    padding: 8px 0 0;
    margin: 8px 0 0;
}

/* Remove inner boxes inside the combined hero block */
.glass-title .section-title {
    border: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin: 0 0 10px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* Сохраняем правильный размер шрифта для заголовка */
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.glass-title .section-title::after {
    display: none;
}

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

/* Анимации для уведомлений */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Стили для уведомлений об ошибках */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 53, 69, 0.3);
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.error-notification button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.error-notification button:hover {
    background: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #6b7280;
    overflow-x: hidden;
    background: #ffffff;
    background-image: url('photo_2025-09-13_22-39-08.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    animation: floatingBackground 20s ease-in-out infinite;
}

/* Добавляем легкий overlay для лучшей читаемости */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
    pointer-events: none;
}


/* Стилизация основного текста */
p,
.text-content {
    color: #4b5563;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: color 0.3s ease;
}

p:hover,
.text-content:hover {
    color: #1f2937;
}

/* Стилизация заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3b82f6;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.1);
    position: relative;
}




/* Единый фон для всех секций */
section {
    position: relative;
    transition: all 0.8s ease;
    opacity: 1;
    transform: translateY(0);
    background: transparent !important;
}

/* Убираем неоновые эффекты для профессионального вида */
.neon-drip {
    display: none !important;
}

/* Убираем все неоновые эффекты */

/* Убираем неоновые анимации */

/* Убираем все отдельные фоны секций */
section::before,
section::after {
    display: none;
}

/* Плавные переходы для контейнеров */
.container {
    transition: all 0.6s ease;
}

/* Эффект размытия для плавных переходов */
section {
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.8s ease;
}

section:hover {
    backdrop-filter: blur(2px);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.95);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.02);
    z-index: -1;
    pointer-events: none;
}

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

/* Navigation - Стильное светлое меню */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.navbar:hover {
    backdrop-filter: blur(80px) saturate(200%);
    -webkit-backdrop-filter: blur(80px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.navbar::before,
.navbar::after {
    display: none !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1f2937;
}

/* Logo Image Styles */
.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    position: relative;
    overflow: hidden;
}

.logo-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 25%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.4) 75%,
            transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    animation: brightShimmer 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes brightShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    transform: scale(1.05);
}

.footer-logo-image {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}

.cyber-text {
    color: #7877c6;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
    animation: cyberGlow 2s ease-in-out infinite alternate;
}

.cyber-glow {
    color: #3b82f6;
    text-shadow:
        0 0 10px rgba(59, 130, 246, 0.3),
        0 0 20px rgba(59, 130, 246, 0.2),
        0 0 30px rgba(59, 130, 246, 0.1);
    animation: cyberGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.cyber-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.nav-logo i {
    font-size: 2rem;
    color: #3b82f6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
    isolation: isolate;
    contain: layout style paint;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.6rem;
    border-radius: 16px;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    backdrop-filter: blur(25px) saturate(160%);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu a:hover {
    color: #ffffff;
    text-shadow: none;
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 4px 20px rgba(59, 130, 246, 0.25),
        0 8px 30px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
}

/* Активное состояние для текущей страницы */
.nav-menu a.active {
    color: #1f2937 !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    box-shadow:
        0 2px 8px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
    position: relative !important;
    animation: none !important;
}

.nav-menu a.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.15),
            rgba(5, 150, 105, 0.1),
            rgba(59, 130, 246, 0.08));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(12px);
    backdrop-filter: blur(8px);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg,
            rgba(5, 150, 105, 0.08),
            rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(6px);
}

@keyframes activeGlow {
    0% {
        box-shadow:
            0 6px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 119, 198, 0.3),
            inset 0 1px 0 rgba(255, 119, 198, 0.2);
    }

    100% {
        box-shadow:
            0 8px 30px rgba(0, 0, 0, 0.4),
            0 0 25px rgba(255, 119, 198, 0.5),
            inset 0 1px 0 rgba(255, 119, 198, 0.3);
    }
}

/* Логотип с эффектами свечения */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 2rem;
    color: #3b82f6;
    text-shadow:
        0 0 10px rgba(59, 130, 246, 0.4),
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    animation: logoPulse 2s ease-in-out infinite;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: logoGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}


@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow:
            0 0 10px rgba(59, 130, 246, 0.4),
            0 0 20px rgba(59, 130, 246, 0.3),
            0 0 30px rgba(59, 130, 246, 0.2);
    }

    50% {
        transform: scale(1.1);
        text-shadow:
            0 0 15px rgba(59, 130, 246, 0.5),
            0 0 25px rgba(59, 130, 246, 0.4),
            0 0 35px rgba(59, 130, 246, 0.3);
    }
}

@keyframes logoGlowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes logoGlow {

    0%,
    100% {
        text-shadow:
            0 0 8px rgba(120, 215, 198, 0.6),
            0 0 16px rgba(120, 215, 198, 0.4),
            0 0 24px rgba(120, 215, 198, 0.2);
    }

    50% {
        text-shadow:
            0 0 12px rgba(120, 215, 198, 0.8),
            0 0 20px rgba(120, 215, 198, 0.6),
            0 0 28px rgba(120, 215, 198, 0.4);
    }
}

@keyframes logoGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}



/* Анимация для активного пункта меню */
.nav-menu li a.active {
    color: #78d7c6;
    text-shadow:
        0 0 10px rgba(120, 215, 198, 0.8),
        0 0 20px rgba(120, 215, 198, 0.6),
        0 0 30px rgba(120, 215, 198, 0.4);
    animation: menuActive 2s ease-in-out infinite;
}

@keyframes menuActive {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(120, 215, 198, 0.8),
            0 0 20px rgba(120, 215, 198, 0.6),
            0 0 30px rgba(120, 215, 198, 0.4);
    }

    50% {
        text-shadow:
            0 0 15px rgba(120, 215, 198, 1),
            0 0 25px rgba(120, 215, 198, 0.8),
            0 0 35px rgba(120, 215, 198, 0.6);
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    pointer-events: none;
    z-index: 2;
    isolation: isolate;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.nav-menu a:hover::before {
    left: 100%;
}

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



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 35%);
    z-index: -1;
    animation: heroDynamicGlow 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0%, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%, transparent 100%);
    background-size: 60px 60px;
    z-index: -1;
    animation: cyberScan 8s linear infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.hero-right-section {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-shadow: none;
    letter-spacing: -0.02em;
}

/* Убраны эффекты блеска и свечения для чистого дизайна */

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: gradientShift 4s ease-in-out infinite;
    font-weight: 700;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    filter: blur(2px);
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite reverse;
}

.gradient-text:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.neon-text {
    color: #3b82f6;
    text-shadow:
        0 0 5px rgba(59, 130, 246, 0.5),
        0 0 10px rgba(59, 130, 246, 0.3),
        0 0 15px rgba(59, 130, 246, 0.2);
    animation: neonFlicker 3s ease-in-out infinite;
    font-weight: 600;
    position: relative;
}

.neon-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #3b82f6;
    text-shadow:
        0 0 5px rgba(59, 130, 246, 0.8),
        0 0 10px rgba(59, 130, 246, 0.6),
        0 0 15px rgba(59, 130, 246, 0.4),
        0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0.7;
    z-index: -1;
    animation: neonFlicker 3s ease-in-out infinite reverse;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(100, 116, 139, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: none;
    font-weight: 500;
    position: relative;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 15px;
    z-index: -1;
    filter: blur(1px);
    animation: subtitleShimmer 5s ease-in-out infinite;
}

.hero-subtitle:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.hero-subtitle:hover::before {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.2) 0%,
            rgba(241, 245, 249, 0.9) 50%,
            rgba(255, 255, 255, 0.15) 100%);
    animation: subtitleShimmer 2s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
    justify-content: center;
}

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

/* Hero Demo */
.hero-demo {
    position: relative;
    margin-bottom: 2rem;
}

.demo-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-phone {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.demo-messages {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.demo-message.bot {
    justify-content: flex-start;
}

.demo-message.user {
    justify-content: flex-end;
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.message-content {
    background: rgba(59, 130, 246, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
    color: #1f2937;
    font-size: 14px;
}

.demo-message.user .message-content {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.demo-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.demo-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1f2937;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* Urgent Offer */
.urgent-offer {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(241, 245, 249, 0.9),
            rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    overflow: hidden;

    /* Максимальный стеклянный эффект */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(120, 119, 198, 0.1);

    transition: all 0.3s ease;
}

/* Основной стеклянный блик */
.urgent-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(241, 245, 249, 0.9) 35%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(255, 255, 255, 0.15) 45%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.15) 55%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(241, 245, 249, 0.9) 65%,
            transparent 70%);
    transform: rotate(45deg);
    animation: glass-shimmer 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Дополнительный волновой блик */
.urgent-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 20%,
            rgba(248, 250, 252, 0.95) 40%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(248, 250, 252, 0.95) 60%,
            rgba(255, 255, 255, 0.03) 80%,
            transparent 100%);
    animation: glass-wave 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}







.urgent-offer:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(120, 119, 198, 0.2);
    backdrop-filter: blur(30px) saturate(200%);
}









.offer-badge {
    display: none;
}













.offer-content {
    position: relative;
    z-index: 3;
}

.offer-content h3 {
    color: #1f2937;
    margin-bottom: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.offer-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    text-shadow: none;
    opacity: 0.9;
}

/* Анимации для стеклянных бликов */
/* Убираем анимацию бликов */

/* Убираем анимацию волн */

/* Анимации для левитирующих колец */
@keyframes floatingBackground {

    0%,
    100% {
        background-position: center center;
    }

    25% {
        background-position: 2% 1%;
    }

    50% {
        background-position: -1% 2%;
    }

    75% {
        background-position: 1% -1%;
    }
}


/* Live Notifications */
.live-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.notification-item {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.9), rgba(120, 215, 255, 0.8));
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* Multi-step Form Styles */
.contact-form-enhanced {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(120, 119, 198, 0.05) 50%, transparent 70%);
    animation: cyberShimmer 8s ease-in-out infinite;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(120, 119, 198, 0.3), rgba(120, 215, 255, 0.3));
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(120, 119, 198, 0.2);
    transition: all 0.3s ease;
}

.progress-step.active {
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.4);
}

.progress-step::before {
    content: '';
    width: 35px;
    height: 35px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.progress-step.active::before {
    background: linear-gradient(135deg, #7877c6, #78d7ff);
    border-color: #7877c6;
    color: white;
    box-shadow: 0 0 20px rgba(120, 119, 198, 0.4);
    transform: scale(1.1);
}

.form-step {
    display: none;
    position: relative;
    z-index: 1;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.3);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.payment-method label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(120, 215, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method input[type="radio"]:checked+label {
    border-color: #7877c6;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.15), rgba(120, 215, 255, 0.15));
    box-shadow: 0 0 25px rgba(120, 119, 198, 0.3);
    transform: translateY(-2px);
}

.payment-method input[type="radio"]:checked+label::before {
    opacity: 1;
}

.payment-method label i {
    font-size: 1.8rem;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked+label i {
    color: #7877c6;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.4);
}

.payment-method label span {
    color: #e0e0e0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(120, 119, 198, 0.2);
}

.payment-form {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.payment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(120, 119, 198, 0.03) 50%, transparent 70%);
    animation: cyberShimmer 9s ease-in-out infinite;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .hero-demo {
        margin-bottom: 1rem;
    }

    .demo-phone {
        width: 240px;
        height: 420px;
    }

    .urgent-offer {
        padding: 12px;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }



    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .calculator-steps::before {
        display: none;
    }

    .industry-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .form-progress {
        flex-direction: column;
        gap: 1rem;
    }

    .form-progress::before {
        display: none;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .live-notifications {
        bottom: 10px;
        right: 10px;
        max-width: 250px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
    background-size: 200% 200%;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: none !important;
}

.btn-primary i {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4) !important;
    background: linear-gradient(135deg, #60a5fa, #93c5fd) !important;
    border-color: #60a5fa !important;
}

.btn-primary:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    justify-content: center;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3) !important;
}

.benefit-icon i {
    font-size: 1.6rem;
    color: #ffffff;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-description {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 400;
}

.cyber-benefit {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(18px) saturate(160%);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-animation {
    position: relative;
    padding: 2rem;
}

.robot-icon {
    font-size: 4rem;
    color: #0088cc;
    text-align: center;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.process-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transition: transform 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-5px);
}

.flow-item i {
    font-size: 1.5rem;
    color: #0088cc;
}

.flow-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #0088cc;
    font-weight: bold;
}

/* Problems Section */
.problems {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1f2937;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.25), 0 0 18px rgba(249, 115, 22, 0.25);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
    z-index: 1;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.problem-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-card p {
    color: #475569;
    line-height: 1.6;
}

/* Адаптация для планшетов */
@media (max-width: 768px) and (min-width: 481px) {
    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 215, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.02) 0%, transparent 40%);
    z-index: -1;
}

.bot-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.bot-type-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
    text-align: center;
}

.bot-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.bot-type-card.featured {
    border-color: #ffc107;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
    transform: scale(1.05);
}

.bot-type-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.3);
}

.bot-type-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.bot-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.bot-type-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bot-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.bot-type-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bot-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bot-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #c0c0c0;
    font-size: 0.9rem;
}

.bot-features li i {
    color: #4caf50;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* AI Integration Block */
.ai-integration-block {
    grid-column: 1 / -1;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(5, 150, 105, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-integration-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.25);
    border-color: rgba(5, 150, 105, 0.5);
}

.ai-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ai-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.ai-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ai-title-section {
    flex: 1;
    position: relative;
}

.ai-badge {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(5, 150, 105, 0.5);
    }

    100% {
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }
}

.ai-title-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price {
    color: #059669;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(5, 150, 105, 0.3);
}

.ai-description p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    border-color: rgba(5, 150, 105, 0.4);
}

.ai-feature-item i {
    color: #4caf50;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    flex-shrink: 0;
}

.ai-feature-item span {
    color: #1f2937;
    font-weight: 500;
    font-size: 0.95rem;
}

.ai-choose-btn-container {
    text-align: center;
    margin-top: 1.5rem;
}

.ai-choose-btn {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.ai-choose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.ai-choose-btn i {
    margin-right: 0.5rem;
}

/* Bot Type Cards Layout */
.bot-type-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bot-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Choose Buttons for Bot Cards */
.choose-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.choose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.choose-btn i {
    margin-right: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.selected-service {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-info h4 {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-price {
    color: #059669;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.order-form .form-group {
    margin-bottom: 1.5rem;
}

.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    color: #059669;
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.2);
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #059669;
    margin-bottom: 1.5rem;
}

.success-modal h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-modal p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    z-index: 1;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.solution-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
}

.solution-features i {
    color: #78d7ff;
    font-size: 0.875rem;
    text-shadow: 0 0 5px rgba(120, 215, 255, 0.5);
}

/* Cases Section */
.cases {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.industry-tabs::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    z-index: 0;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #6b7280;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1rem;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-btn:hover {
    border-color: rgba(59, 130, 246, 0.4);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.tab-btn:hover::before {
    opacity: 1;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active::before {
    opacity: 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.case-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
    z-index: 1;
}


.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.case-icon i {
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.case-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-industry {
    font-size: 0.875rem;
    color: #64748b;
}

.case-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Benefits */
.case-benefits {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(3px);
}

.benefit-item i {
    color: #3b82f6;
}

/* ========================================
   PORTFOLIO SECTION - Portfolio with Screenshots
   ======================================== */

.portfolio-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

/* Portfolio Header */
.portfolio-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.app-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.app-icon i {
    font-size: 1.75rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.app-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-info p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Screenshot Carousel with Phone Frame */
.screenshot-carousel {
    position: relative;
    margin: 2rem 0;
    border-radius: 24px;
    overflow: visible;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Phone Frame Container */
.phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9/19.5;
    background: #1a1a1a;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 4px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Phone Notch (вырез) */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Phone Screen */
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

/* Screenshot Container with Animation */
.screenshot-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.screenshot-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.screenshot-slide.prev {
    transform: translateX(-20px);
}

.screenshot-slide.next {
    transform: translateX(20px);
}

.screenshot-slide img,
.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Template Content Styles */
.screenshot-slide .template-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.screenshot-slide .template-content * {
    box-sizing: border-box;
}

/* Изоляция стилей шаблонов */
.screenshot-slide .template-content {
    isolation: isolate;
}

/* Переопределение стилей body из шаблонов */
.screenshot-slide .template-content body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}

/* Ограничение размеров для мобильных шаблонов */
.screenshot-slide .template-content {
    transform: scale(1);
    transform-origin: top left;
}

.screenshot-slide .template-content .app-container {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow-y: auto;
}

/* Исправление стилей для первого элемента */
.screenshot-slide .template-content > *:first-child {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Template Loader */
.template-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.template-loader p {
    font-size: 14px;
    color: #64748b;
}

/* Status Bar (верхняя панель) */
.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.status-left {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 12px;
}

/* Home Indicator (нижний индикатор) */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 5;
}

/* Navigation Dots */
.screenshot-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
}

.screenshot-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.screenshot-dots .dot:hover {
    background: rgba(59, 130, 246, 0.6);
    transform: scale(1.2);
}

.screenshot-dots .dot.active {
    background: #3b82f6;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.screenshot-dots .dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Carousel Controls Bottom */
.carousel-controls-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

/* Auto-play indicator */
.auto-play-indicator {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auto-play-indicator:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.auto-play-indicator:active {
    transform: translateY(0);
}

.auto-play-indicator.paused {
    opacity: 0.7;
}

.auto-play-indicator i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.auto-play-indicator span {
    font-weight: 500;
    white-space: nowrap;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #3b82f6;
}

.carousel-arrow:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-arrow i {
    font-size: 1.25rem;
}

/* Screenshot Info */
.screenshot-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    animation: slideInUp 0.5s ease;
}

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

.screenshot-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.screenshot-info p {
    color: #64748b;
    line-height: 1.6;
}

/* Portfolio Details */
.portfolio-details {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    animation: fadeIn 0.6s ease;
}

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

.features-section h4,
.benefits-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-section h4 i,
.benefits-section h4 i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.875rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: #475569;
    transition: all 0.3s ease;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-list li:hover {
    color: #0f172a;
    transform: translateX(4px);
}

.features-list li i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 24px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.features-list li:hover i {
    color: #2563eb;
    transform: scale(1.1);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    color: #1e40af;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefit-badge:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.1));
}

.benefit-badge i {
    font-size: 1.3rem;
    color: #3b82f6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 24px;
    margin-top: 2px;
}

.benefit-badge:hover i {
    color: #2563eb;
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-details {
        grid-template-columns: 1fr;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .phone-frame {
        max-width: 280px;
    }
    
    .screenshot-carousel {
        padding: 1rem;
    }
    
    .portfolio-item {
        padding: 1.5rem;
    }
    
    .auto-play-indicator {
        position: relative;
        top: auto;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
    }
}

.benefit-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.case-description {
    color: #475569;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    min-height: 280px;
    justify-content: flex-start;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(71, 85, 105, 0.2));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.3;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.author-avatar i {
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.author-info span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Pricing Calculator Section удален */



/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.cta-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 215, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.02) 0%, transparent 40%);
    z-index: -1;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(120, 119, 198, 0.05) 50%, transparent 70%);
    animation: cyberShimmer 12s ease-in-out infinite;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #059669;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.25);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.06);
}

.faq-question span {
    /* Брендовый градиентный заголовок FAQ */
    background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-question i {
    color: #059669;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Hover/active эффекты для заголовков FAQ */
.faq-question:hover span {
    filter: brightness(1.05);
}

.faq-item.active .faq-question span {
    background: linear-gradient(135deg, #059669 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 2rem;
}

.faq-answer p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer li {
    color: #1f2937;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.faq-answer li:hover {
    background: rgba(59, 130, 246, 0.05);
    padding-left: 0.5rem;
    border-radius: 5px;
}

.faq-answer strong {
    color: #3b82f6;
    font-weight: 600;
}

/* FAQ Demo Timeline */
.faq-demo {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.demo-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.timeline-step span {
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-arrow {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: bold;
}

/* FAQ Features */
.faq-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.feature-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    color: #1f2937;
    font-weight: 500;
}

/* FAQ Pricing */
.faq-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.pricing-tier.featured {
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
    transform: scale(1.02);
}

.pricing-tier:hover {
    border-color: rgba(5, 150, 105, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.tier-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tier-header h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.pricing-tier li {
    color: #1f2937;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    font-size: 0.9rem;
}

.pricing-tier li:last-child {
    border-bottom: none;
}

/* FAQ Maintenance */
.faq-maintenance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.maintenance-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.maintenance-option:hover {
    border-color: rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s ease;
}

.option-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.option-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-content p {
    color: #1f2937;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* FAQ Integrations */
.faq-integrations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.integration-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.integration-item i {
    color: #3b82f6;
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.integration-item:hover i {
    color: #059669;
    transform: scale(1.1);
}

.integration-item span {
    color: #1f2937;
    font-weight: 500;
    text-align: center;
}

.integration-note {
    color: #059669 !important;
    font-style: italic;
    text-align: center;
    margin-top: 1rem !important;
    font-weight: 500;
}

/* FAQ Guarantee */
.faq-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.guarantee-item:hover {
    border-color: rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s ease;
}

.guarantee-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.guarantee-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #1f2937;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: #1f2937;
    padding: 3rem 0 1rem;
    position: relative;
}

/* Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.social-icon a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Navigation */
.footer-nav {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-nav h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-nav ul li a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Contact */
.footer-contact {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.telegram-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: #6b7280;
    font-size: 0.9rem;
}

/* Audit Offer Block */
.audit-offer {
    margin: 2rem 0;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.audit-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    animation: shimmer 3s ease-in-out infinite;
}

.audit-offer h3 {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audit-offer p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 2rem;
    text-align: center;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

/* Кнопка закрытия меню - скрыта на десктопе */
.menu-close-btn {
    display: none;
}

/* Responsive Design - Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
        gap: 0.5rem;
        display: flex;
        padding-top: 80px;
    }

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

    .nav-menu li {
        padding: 0;
        margin: 0.25rem 0;
    }

    .nav-menu a {
        padding: 0.75rem 1.5rem;
        margin: 0;
        border-radius: 8px;
        min-width: 180px;
        text-align: center;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.15);
        color: #1f2937;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #059669;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }

    /* Кнопка закрытия мобильного меню */
    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.15);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: #1f2937;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
        border: none;
        outline: none;
    }

    .menu-close-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.2);
        transform: scale(1.1);
        color: #059669;
    }

    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent);
        pointer-events: none;
    }
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Адаптивность для карточек проблем */
.problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.problem-card {
    padding: 1.5rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Адаптивность для карточек решений */
.solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.solution-card {
    padding: 1.5rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.solution-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Адаптивность для карточек кейсов */
.cases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.case-card {
    padding: 1.5rem;
}

/* Адаптивность для карточек отзывов */
.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.testimonial-card {
    padding: 1.5rem;
}

/* Адаптивность для карточек цен */
.pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.pricing-card {
    padding: 1.5rem;
}

.pricing-card.featured {
    transform: none;
}

/* Адаптивность для CTA секции */
.cta {
    min-height: 300px;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 100%;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* Адаптивность для футера */
.footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-section {
    padding: 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links {
    justify-content: center;
    gap: 1rem;
}

/* Адаптивность для чат-виджета */
.chat-widget {
    bottom: 20px;
    right: 20px;
}


.chat-container {
    width: 90vw;
    height: 70vh;
    right: 5vw;
    bottom: 100px;
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.25rem;
    }
    
    /* Правильный размер для заголовка в glass-title на очень маленьких экранах */
    .glass-title .hero-title.section-title {
        font-size: 1.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        padding: 0 0.25rem;
    }

    .urgent-offer {
        padding: 8px;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        max-width: 240px;
    }

    .hero-buttons .btn {
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 45px;
        gap: 0.6rem;
    }

    .hero-buttons .btn i {
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .hero-stats {
        gap: 0.4rem;
    }

    .hero-stats .stat {
        min-width: 70px;
        max-width: 85px;
        padding: 0.5rem 0.3rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-stats .stat-number {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.15rem;
    }

    .hero-stats .stat-label {
        font-size: 0.55rem;
        line-height: 1.1;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 10px;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: 15px;
    }

    .hero-container {
        margin-top: 160px;
        gap: 0.8rem;
    }

    .hero-buttons {
        margin-bottom: 2.5rem;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

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

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }

    .btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.8rem;
    }

    .hero-buttons .btn {
        max-width: 240px;
        padding: 0.9rem 1.3rem;
        font-size: 0.85rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 48px;
        gap: 0.7rem;
    }

    .hero-buttons .btn i {
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .hero-stats {
        gap: 0.5rem;
        justify-content: space-between;
    }

    .hero-stats .stat {
        min-width: 80px;
        max-width: 100px;
        padding: 0.6rem 0.4rem;
        flex: 1;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-stats .stat-number {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.2rem;
    }

    .hero-stats .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: 10px;
    }

    .hero-container {
        margin-top: 140px;
        gap: 1rem;
    }

    .hero-buttons {
        margin-bottom: 2.5rem;
        gap: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Киберпанк анимации */
@keyframes cyberGlow {
    0% {
        text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(120, 119, 198, 0.8), 0 0 30px rgba(120, 119, 198, 0.6);
    }
}



@keyframes cyberRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes neonFlicker {

    0%,
    100% {
        text-shadow: 0 0 5px #78d7ff, 0 0 10px #78d7ff, 0 0 15px #78d7ff, 0 0 20px #78d7ff;
    }

    50% {
        text-shadow: 0 0 2px #78d7ff, 0 0 5px #78d7ff, 0 0 8px #78d7ff, 0 0 12px #78d7ff;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}



/* Голограмма */
.hologram-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.hologram-circle {
    position: absolute;
    border: 2px solid rgba(120, 215, 255, 0.5);
    border-radius: 50%;
    animation: hologramPulse 4s ease-in-out infinite;
}

.hologram-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.hologram-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    animation-delay: 1s;
}

.hologram-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 2s;
}

.cyber-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #78d7ff;
    text-shadow: 0 0 20px rgba(120, 215, 255, 0.8);
    animation: cyberPulse 3s ease-in-out infinite;
}

@keyframes hologramPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes cyberPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: 0 0 20px rgba(120, 215, 255, 0.8);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        text-shadow: 0 0 25px rgba(120, 215, 255, 0.9);
    }
}


/* Кибер-процесс */
.cyber-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    backdrop-filter: blur(10px);
}

.cyber-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    transition: all 0.3s ease;
}

.cyber-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.3);
    border-color: rgba(120, 119, 198, 0.8);
}

.cyber-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7877c6, #ff77c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(120, 119, 198, 0.5);
}

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

.cyber-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #78d7ff;
    text-shadow: 0 0 5px rgba(120, 215, 255, 0.5);
}

.cyber-arrow {
    font-size: 1.5rem;
    color: #ff77c6;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.8);
    animation: cyberFlash 1s ease-in-out infinite alternate;
}

@keyframes cyberFlash {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cyberBackground {
    0% {
        background:
            linear-gradient(135deg,
                rgba(10, 10, 20, 0.95) 0%,
                rgba(20, 15, 35, 0.9) 25%,
                rgba(30, 20, 50, 0.85) 50%,
                rgba(40, 25, 65, 0.9) 75%,
                rgba(10, 10, 20, 0.95) 100%),
            radial-gradient(circle 300px at 20% 30%, rgba(120, 119, 198, 0.2) 0%, transparent 70%),
            radial-gradient(circle 250px at 80% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle 200px at 60% 70%, rgba(120, 119, 198, 0.18) 0%, transparent 65%),
            radial-gradient(circle 280px at 10% 80%, rgba(120, 215, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle 220px at 90% 20%, rgba(120, 215, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle 180px at 40% 60%, rgba(120, 215, 255, 0.1) 0%, transparent 55%),
            radial-gradient(circle 150px at 70% 10%, rgba(255, 119, 198, 0.08) 0%, transparent 45%),
            radial-gradient(circle 120px at 30% 90%, rgba(255, 119, 198, 0.06) 0%, transparent 40%);
    }

    25% {
        background:
            linear-gradient(135deg,
                rgba(20, 15, 35, 0.95) 0%,
                rgba(30, 20, 50, 0.9) 25%,
                rgba(40, 25, 65, 0.85) 50%,
                rgba(10, 10, 20, 0.9) 75%,
                rgba(20, 15, 35, 0.95) 100%),
            radial-gradient(circle 280px at 80% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 70%),
            radial-gradient(circle 320px at 40% 70%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle 180px at 20% 30%, rgba(120, 119, 198, 0.18) 0%, transparent 65%),
            radial-gradient(circle 260px at 90% 20%, rgba(120, 215, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle 240px at 10% 80%, rgba(120, 215, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle 200px at 60% 40%, rgba(120, 215, 255, 0.1) 0%, transparent 55%),
            radial-gradient(circle 130px at 30% 10%, rgba(255, 119, 198, 0.08) 0%, transparent 45%),
            radial-gradient(circle 140px at 70% 90%, rgba(255, 119, 198, 0.06) 0%, transparent 40%);
    }

    50% {
        background:
            linear-gradient(135deg,
                rgba(30, 20, 50, 0.95) 0%,
                rgba(40, 25, 65, 0.9) 25%,
                rgba(10, 10, 20, 0.85) 50%,
                rgba(20, 15, 35, 0.9) 75%,
                rgba(30, 20, 50, 0.95) 100%),
            radial-gradient(circle 250px at 60% 70%, rgba(120, 119, 198, 0.2) 0%, transparent 70%),
            radial-gradient(circle 300px at 20% 30%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle 220px at 80% 40%, rgba(120, 119, 198, 0.18) 0%, transparent 65%),
            radial-gradient(circle 240px at 10% 80%, rgba(120, 215, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle 200px at 90% 20%, rgba(120, 215, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle 160px at 40% 60%, rgba(120, 215, 255, 0.1) 0%, transparent 55%),
            radial-gradient(circle 140px at 70% 10%, rgba(255, 119, 198, 0.08) 0%, transparent 45%),
            radial-gradient(circle 110px at 30% 90%, rgba(255, 119, 198, 0.06) 0%, transparent 40%);
    }

    75% {
        background:
            linear-gradient(135deg,
                rgba(40, 25, 65, 0.95) 0%,
                rgba(10, 10, 20, 0.9) 25%,
                rgba(20, 15, 35, 0.85) 50%,
                rgba(30, 20, 50, 0.9) 75%,
                rgba(40, 25, 65, 0.95) 100%),
            radial-gradient(circle 320px at 40% 70%, rgba(120, 119, 198, 0.2) 0%, transparent 70%),
            radial-gradient(circle 280px at 80% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle 200px at 20% 30%, rgba(120, 119, 198, 0.18) 0%, transparent 65%),
            radial-gradient(circle 220px at 90% 20%, rgba(120, 215, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle 260px at 10% 80%, rgba(120, 215, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle 180px at 60% 40%, rgba(120, 215, 255, 0.1) 0%, transparent 55%),
            radial-gradient(circle 150px at 30% 10%, rgba(255, 119, 198, 0.08) 0%, transparent 45%),
            radial-gradient(circle 130px at 70% 90%, rgba(255, 119, 198, 0.06) 0%, transparent 40%);
    }

    100% {
        background:
            linear-gradient(135deg,
                rgba(10, 10, 20, 0.95) 0%,
                rgba(20, 15, 35, 0.9) 25%,
                rgba(30, 20, 50, 0.85) 50%,
                rgba(40, 25, 65, 0.9) 75%,
                rgba(10, 10, 20, 0.95) 100%),
            radial-gradient(circle 300px at 20% 30%, rgba(120, 119, 198, 0.2) 0%, transparent 70%),
            radial-gradient(circle 250px at 80% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle 200px at 60% 70%, rgba(120, 119, 198, 0.18) 0%, transparent 65%),
            radial-gradient(circle 280px at 10% 80%, rgba(120, 215, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle 220px at 90% 20%, rgba(120, 215, 255, 0.12) 0%, transparent 40%),
            radial-gradient(circle 180px at 40% 60%, rgba(120, 215, 255, 0.1) 0%, transparent 55%),
            radial-gradient(circle 150px at 70% 10%, rgba(255, 119, 198, 0.08) 0%, transparent 45%),
            radial-gradient(circle 120px at 30% 90%, rgba(255, 119, 198, 0.06) 0%, transparent 40%);
    }
}

/* @keyframes dynamicGradientBackground {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(224, 242, 254, 0.95) 25%,
                rgba(220, 252, 231, 0.92) 50%,
                rgba(219, 234, 254, 0.95) 75%,
                rgba(255, 255, 255, 0.98) 100%),
            radial-gradient(circle 500px at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
            radial-gradient(circle 450px at 80% 40%, rgba(251, 146, 60, 0.12) 0%, transparent 60%),
            radial-gradient(circle 400px at 60% 70%, rgba(99, 102, 241, 0.10) 0%, transparent 65%),
            radial-gradient(circle 480px at 10% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
            radial-gradient(circle 420px at 90% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
            radial-gradient(circle 380px at 40% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 55%),
            radial-gradient(circle 250px at 70% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
            radial-gradient(circle 220px at 30% 90%, rgba(251, 146, 60, 0.06) 0%, transparent 40%),
            radial-gradient(circle 200px at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    }

    25% {
        opacity: 0.98;
        transform: scale(1.01) rotate(0.5deg);
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(254, 243, 199, 0.95) 25%,
                rgba(219, 234, 254, 0.92) 50%,
                rgba(224, 242, 254, 0.95) 75%,
                rgba(255, 255, 255, 0.98) 100%),
            radial-gradient(circle 500px at 25% 35%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
            radial-gradient(circle 450px at 75% 45%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
            radial-gradient(circle 400px at 65% 65%, rgba(139, 92, 246, 0.10) 0%, transparent 65%),
            radial-gradient(circle 480px at 15% 75%, rgba(251, 146, 60, 0.08) 0%, transparent 50%),
            radial-gradient(circle 420px at 85% 25%, rgba(236, 72, 153, 0.06) 0%, transparent 40%),
            radial-gradient(circle 380px at 45% 55%, rgba(59, 130, 246, 0.05) 0%, transparent 55%),
            radial-gradient(circle 250px at 75% 15%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
            radial-gradient(circle 220px at 25% 85%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
            radial-gradient(circle 200px at 55% 45%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
    }

    50% {
        opacity: 0.96;
        transform: scale(1.02) rotate(0deg);
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(219, 234, 254, 0.95) 25%,
                rgba(224, 242, 254, 0.92) 50%,
                rgba(254, 243, 199, 0.95) 75%,
                rgba(255, 255, 255, 0.98) 100%),
            radial-gradient(circle 500px at 30% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 70%),
            radial-gradient(circle 450px at 70% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
            radial-gradient(circle 400px at 70% 60%, rgba(236, 72, 153, 0.10) 0%, transparent 65%),
            radial-gradient(circle 480px at 20% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            radial-gradient(circle 420px at 80% 30%, rgba(251, 146, 60, 0.06) 0%, transparent 40%),
            radial-gradient(circle 380px at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 55%),
            radial-gradient(circle 250px at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
            radial-gradient(circle 220px at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
            radial-gradient(circle 200px at 60% 40%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
    }

    75% {
        opacity: 0.98;
        transform: scale(1.01) rotate(-0.5deg);
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(224, 242, 254, 0.95) 25%,
                rgba(254, 243, 199, 0.92) 50%,
                rgba(219, 234, 254, 0.95) 75%,
                rgba(255, 255, 255, 0.98) 100%),
            radial-gradient(circle 500px at 35% 25%, rgba(251, 146, 60, 0.15) 0%, transparent 70%),
            radial-gradient(circle 450px at 65% 55%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
            radial-gradient(circle 400px at 75% 65%, rgba(99, 102, 241, 0.10) 0%, transparent 65%),
            radial-gradient(circle 480px at 25% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
            radial-gradient(circle 420px at 75% 15%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
            radial-gradient(circle 380px at 55% 45%, rgba(236, 72, 153, 0.05) 0%, transparent 55%),
            radial-gradient(circle 250px at 85% 25%, rgba(251, 146, 60, 0.08) 0%, transparent 45%),
            radial-gradient(circle 220px at 15% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
            radial-gradient(circle 200px at 65% 35%, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    }
} */

/* @keyframes dynamicGridShift {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
        background:
            repeating-linear-gradient(90deg, transparent 0%, transparent 49%, rgba(59, 130, 246, 0.04) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(0deg, transparent 0%, transparent 49%, rgba(251, 146, 60, 0.03) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(45deg, transparent 0%, transparent 49%, rgba(99, 102, 241, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-45deg, transparent 0%, transparent 49%, rgba(6, 182, 212, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(30deg, transparent 0%, transparent 49%, rgba(139, 92, 246, 0.015) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-30deg, transparent 0%, transparent 49%, rgba(236, 72, 153, 0.015) 50%, transparent 51%, transparent 100%);
    }

    25% {
        transform: translateX(-2px) translateY(-1px) rotate(0.3deg) scale(1.01);
        opacity: 0.9;
        background:
            repeating-linear-gradient(90deg, transparent 0%, transparent 49%, rgba(6, 182, 212, 0.04) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(0deg, transparent 0%, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(45deg, transparent 0%, transparent 49%, rgba(236, 72, 153, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-45deg, transparent 0%, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(30deg, transparent 0%, transparent 49%, rgba(251, 146, 60, 0.015) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-30deg, transparent 0%, transparent 49%, rgba(99, 102, 241, 0.015) 50%, transparent 51%, transparent 100%);
    }

    50% {
        transform: translateX(1px) translateY(-2px) rotate(0deg) scale(1.02);
        opacity: 0.6;
        background:
            repeating-linear-gradient(90deg, transparent 0%, transparent 49%, rgba(139, 92, 246, 0.04) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(0deg, transparent 0%, transparent 49%, rgba(236, 72, 153, 0.03) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(45deg, transparent 0%, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-45deg, transparent 0%, transparent 49%, rgba(251, 146, 60, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(30deg, transparent 0%, transparent 49%, rgba(99, 102, 241, 0.015) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-30deg, transparent 0%, transparent 49%, rgba(6, 182, 212, 0.015) 50%, transparent 51%, transparent 100%);
    }

    75% {
        transform: translateX(-1px) translateY(1px) rotate(-0.3deg) scale(1.01);
        opacity: 0.9;
        background:
            repeating-linear-gradient(90deg, transparent 0%, transparent 49%, rgba(236, 72, 153, 0.04) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(0deg, transparent 0%, transparent 49%, rgba(59, 130, 246, 0.03) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(45deg, transparent 0%, transparent 49%, rgba(251, 146, 60, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-45deg, transparent 0%, transparent 49%, rgba(99, 102, 241, 0.02) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(30deg, transparent 0%, transparent 49%, rgba(6, 182, 212, 0.015) 50%, transparent 51%, transparent 100%),
            repeating-linear-gradient(-30deg, transparent 0%, transparent 49%, rgba(139, 92, 246, 0.015) 50%, transparent 51%, transparent 100%);
    }
} */



@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes floatingOrbs {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(10px, -10px) scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-5px, 15px) scale(0.9);
        opacity: 0.8;
    }

    75% {
        transform: translate(15px, 5px) scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

@keyframes buttonGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes heroDynamicGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
        background:
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 35%),
            radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 35%);
    }

    25% {
        opacity: 0.9;
        transform: scale(1.02) rotate(0.2deg);
        background:
            radial-gradient(circle at 25% 75%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 75% 25%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 55% 45%, rgba(236, 72, 153, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 65% 35%, rgba(251, 146, 60, 0.05) 0%, transparent 35%),
            radial-gradient(circle at 35% 65%, rgba(99, 102, 241, 0.04) 0%, transparent 35%);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) rotate(0deg);
        background:
            radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 60% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 60% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 35%),
            radial-gradient(circle at 40% 60%, rgba(251, 146, 60, 0.04) 0%, transparent 35%);
    }

    75% {
        opacity: 0.9;
        transform: scale(1.02) rotate(-0.2deg);
        background:
            radial-gradient(circle at 35% 65%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 65% 35%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 45% 55%, rgba(6, 182, 212, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 55% 45%, rgba(139, 92, 246, 0.05) 0%, transparent 35%),
            radial-gradient(circle at 45% 55%, rgba(59, 130, 246, 0.04) 0%, transparent 35%);
    }
}

@keyframes cyberScan {
    0% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(100%) translateY(100%);
        opacity: 0;
    }
}

/* Убраны анимации glassShimmer и glassGlow для чистого дизайна */

@keyframes subtitleShimmer {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-5px) translateY(-3px);
    }

    25% {
        opacity: 0.5;
        transform: translateX(3px) translateY(-5px);
    }

    50% {
        opacity: 0.7;
        transform: translateX(5px) translateY(3px);
    }

    75% {
        opacity: 0.4;
        transform: translateX(-3px) translateY(5px);
    }
}

@keyframes titleBlur {

    0%,
    100% {
        opacity: 0.7;
        filter: blur(1px);
    }

    50% {
        opacity: 0.9;
        filter: blur(0.5px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes neonFlicker {

    0%,
    100% {
        opacity: 1;
        text-shadow:
            0 0 5px rgba(59, 130, 246, 0.5),
            0 0 10px rgba(59, 130, 246, 0.3),
            0 0 15px rgba(59, 130, 246, 0.2);
    }

    50% {
        opacity: 0.8;
        text-shadow:
            0 0 5px rgba(59, 130, 246, 0.8),
            0 0 10px rgba(59, 130, 246, 0.6),
            0 0 15px rgba(59, 130, 246, 0.4),
            0 0 20px rgba(59, 130, 246, 0.3);
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Orbitron', monospace;
}

.chat-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4) !important;
    background: linear-gradient(135deg, #60a5fa, #93c5fd) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

.chat-toggle i {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.chat-status {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 480px;
    height: 600px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 50%,
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(251, 146, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-container.active {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(5, 150, 105, 0.05) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
    font-size: 16px;
}

.chat-title i {
    color: #3b82f6;
    text-shadow: none;
}

.chat-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.chat-close:hover {
    color: #ef4444;
    text-shadow: none;
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 85%;
}

.message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.bot-message {
    align-self: flex-start;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.message-avatar i {
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-text {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 12px 16px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Стили для markdown элементов */
.message-text strong {
    color: #3b82f6;
    font-weight: 600;
}

.message-text em {
    color: #6b7280;
    font-style: italic;
}

.message-text u {
    color: #059669;
    text-decoration: underline;
}

.message-text del {
    color: #9ca3af;
    text-decoration: line-through;
}

.message-text code {
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #3b82f6;
}

.message-text ul {
    margin: 10px 0;
    padding-left: 20px;
}

.message-text li {
    margin: 5px 0;
    line-height: 1.4;
}

.message-text a {
    color: #059669;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.message-text a:hover {
    color: #3b82f6;
}

.user-message .message-text {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(59, 130, 246, 0.3);
    color: #1f2937;
}

.bot-message .message-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-color: rgba(59, 130, 246, 0.2);
    max-width: 95%;
    width: 100%;
    margin-right: 0;
}

.message-time {
    font-size: 11px;
    color: #6b7280;
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

.chat-input-container {
    padding: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: #1f2937;
    font-size: 14px;
    font-family: inherit;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

#chatInput:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.3);
    background: rgba(255, 255, 255, 1);
}

#chatInput::placeholder {
    color: #6b7280;
}

.chat-send {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.chat-send i {
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #6b7280;
    font-size: 12px;
}

.typing-indicator {
    display: flex;
    gap: 3px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Общие оптимизации для мобильных */
    * {
        -webkit-tap-highlight-color: transparent;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    html {
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
        line-height: 1.4;
    }

    .container {
        padding: 0 15px;
    }

    /* Навигация */
    .navbar {
        padding: 0.5rem 1rem;
        height: 60px;
    }

    .nav-container {
        padding: 0;
    }

    .nav-logo {
        font-size: 1.2rem;
    }


    .nav-logo i {
        font-size: 1.5rem;
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.15);
        transition: all 0.3s ease;
        color: #1f2937;
    }

    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
        color: #059669;
    }

    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #1f2937;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .menu-close-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #059669;
        transform: rotate(90deg);
    }

    /* Hero секция */
    .hero {
        min-height: 100vh;
        padding: 60px 0 2rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin-top: 0;
        text-align: center;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* Правильный размер для заголовка в glass-title на мобильных */
    .glass-title .hero-title.section-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
        margin: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .stat {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .stat {
        padding: 1rem;
        background: rgba(10, 10, 10, 0.8);
        border-radius: 12px;
        border: 1px solid rgba(120, 119, 198, 0.3);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Секции */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Все карточки и контейнеры */
    .solution-card,
    .case-card,
    .testimonial-card,
    .faq-item,
    .pricing-tier {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    /* Problems секция */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .problem-card {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .problem-card {
        padding: 1.5rem;
    }

    /* ROI Calculator */
    .calculator-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-result {
        padding: 1.5rem;
    }

    /* Solutions секция */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 1.5rem;
    }

    /* Cases секция */
    .industry-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: auto;
        border-radius: 8px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-card {
        padding: 1.5rem;
    }

    .case-results {
        flex-direction: column;
        gap: 0.75rem;
    }

    .case-benefits {
        gap: 8px;
    }

    .benefit-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    /* Process секция */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Pricing Calculator */
    .pricing-calculator {
        padding: 1.5rem;
    }

    .calculator-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .calculator-steps::before {
        display: none;
    }

    .step {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    .type-selection,
    .features-selection,
    .integrations-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .type-option,
    .feature-option,
    .integration-option {
        padding: 1rem;
    }

    /* CTA секция */
    .cta {
        min-height: 250px;
        padding: 3rem 0;
    }

    .cta-content {
        padding: 1.5rem 1rem;
        text-align: center;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    /* FAQ секция */
    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .faq-pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-maintenance {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-integrations {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .faq-guarantee {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-social {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer-nav {
        margin-bottom: 1.5rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-nav ul li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .footer-contact {
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }

    /* Mobile Audit Offer */
    .audit-offer {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }

    .audit-offer h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .audit-offer p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
    }

    /* Chat Widget */
    .chat-container {
        width: calc(100vw - 20px);
        height: 450px;
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .chat-toggle {
        padding: 10px 12px;
        font-size: 11px;
        bottom: 20px;
        right: 20px;
    }

    .chat-status {
        display: none;
    }

    .chat-messages {
        padding: 1rem;
    }

    .message {
        margin-bottom: 1rem;
    }

    .message-content {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .chat-input-container {
        padding: 1rem;
    }

    #chatInput {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Формы */
    .contact-form-enhanced,
    .payment-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-method {
        padding: 1rem;
    }

    /* Убираем сложные анимации на мобильных */
    .hero::before,
    .problems::before,
    .solutions::before,
    .cases::before,
    .process::before,
    .testimonials::before,
    .pricing::before,
    .cta::before,
    .faq::before {
        animation: none;
    }

    /* Оптимизируем тени и эффекты */
    .btn,
    .case-card,
    .solution-card,
    .problem-card,
    .testimonial-card,
    .faq-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn:hover,
    .case-card:hover,
    .solution-card:hover,
    .problem-card:hover,
    .testimonial-card:hover,
    .faq-item:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    .option-icon,
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-item i {
        font-size: 1rem;
        width: 1rem;
        height: 1rem;
    }

    .integration-item i {
        font-size: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
    }

    .chat-container {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 300px;
    }

    .chat-toggle {
        padding: 8px 10px;
        font-size: 10px;
        bottom: 15px;
        right: 15px;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 1rem 0;
    }

    .hero-container {
        margin-top: 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: auto;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .option-icon,
    .guarantee-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .feature-item i {
        font-size: 0.9rem;
        width: 0.9rem;
        height: 0.9rem;
    }

    .integration-item i {
        font-size: 1.3rem;
        width: 1.3rem;
        height: 1.3rem;
    }
}