/* ============================================
   NEW DESIGN - 2025
   ============================================ */

:root {
    --primary-purple: #7C3AED;
    --primary-purple-light: #A78BFA;
    --primary-purple-dark: #5B21B6;
    --dark-bg: #1E1E2A;
    --text-dark: #1a1a2e;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-light: #F3F4F6;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Flexible container widths - используем clamp для адаптивности */
    --container-xs: min(90vw, 600px);
    --container-sm: min(90vw, 800px);
    --container-md: min(95vw, 1000px);
    --container-lg: min(95vw, 1280px);
    --container-xl: min(95vw, 1440px);
    --container-2xl: min(95vw, 1600px);
    
    /* Responsive padding */
    --padding-desktop: clamp(1.5rem, 4vw, 4rem);
    --padding-mobile: 1.5rem;
    --section-padding: clamp(3rem, 8vw, 6rem);
}

/* ============================================
   SEO & ACCESSIBILITY
   ============================================ */

/* Screen reader only - совместимость с Tailwind sr-only */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

* {
    font-family: var(--font-inter);
}

#bg-transition-overlay,
.bg-transition-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
    pointer-events: none !important;
    z-index: -1000 !important;
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: #ffffff !important;
    will-change: background-color;
    margin: 0 !important;
    padding: 0 !important;
}

html {
    background-color: #ffffff;
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff !important;
    position: relative;
    font-family: var(--font-inter);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.site-wrapper {
    margin: 0;
    padding: 0;
}

.parallax-background {
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

/* Обеспечиваем светлый фон на всех страницах (кроме главной, где может быть анимация) */
body:not(.home) {
    background-color: #ffffff !important;
}

.site-content {
    background: var(--white);
    min-height: 60vh;
    padding: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header-new {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
}

.site-header-new.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-content-new {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    gap: 2rem !important;
    position: relative !important;
    width: 100% !important;
}

/* Фиксируем позицию логотипа - всегда слева, одинаково на всех страницах */
.site-branding {
    flex: 0 0 auto !important;
    position: relative !important;
    left: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    order: 1 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    width: auto !important;
    transform: none !important;
}

/* Фиксируем контейнер header - одинаковые отступы везде */
.site-header-new .container {
    max-width: var(--container-xl) !important;
    padding-left: var(--padding-desktop) !important;
    padding-right: var(--padding-desktop) !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.main-navigation-new {
    flex: 1;
    display: flex;
    justify-content: center;
    order: 2;
    margin: 0 auto;
}

/* Фиксируем порядок элементов в header */
.header-cta-btn-new {
    order: 3;
    margin-left: auto;
    flex-shrink: 0;
}

.menu-toggle-new {
    order: 4;
}

.main-menu-new {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-menu-new a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-menu-new a:hover {
    color: var(--primary-purple);
}

.header-cta-btn-new {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-btn-new:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle-new[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-new[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-new[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
@media (max-width: 1023px) {
    .menu-toggle-new {
        display: flex;
    }
    
    .main-navigation-new {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }
    
    .main-navigation-new.active {
        right: 0;
    }
    
    .main-menu-new {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .main-menu-new li {
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    
    .main-menu-new a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: var(--text-dark);
    }
    
    .main-menu-new a:hover {
        color: var(--primary-purple);
        padding-left: 1rem;
    }
    
    .header-cta-btn-new {
        display: none;
    }
    
    .header-content-new {
        position: relative;
    }
} */
    
    /* Overlay при открытом меню */
    .main-navigation-new::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .main-navigation-new.active::before {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 767px) {
    .header-content-new {
        padding: 0.75rem 0;
    }
    
    .site-logo-image {
        height: 40px;
    }
    
    .main-navigation-new {
        max-width: 280px;
        padding: 4rem 1.5rem 2rem;
    }
}

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

.hero-new-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
    z-index: 2;
    isolation: isolate;
}

.hero-new-section .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-xl);
    padding: 0 var(--padding-desktop);
    margin: 0 auto;
    box-sizing: border-box;
}

/* Общий контейнер - более гибкий */
.container {
    width: 100%;
    max-width: var(--container-xl);
    padding: 0 var(--padding-desktop);
    margin: 0 auto;
    box-sizing: border-box;
}

/* Разные ширины для разных секций */
.hero-new-section .container {
    max-width: var(--container-xl);
}

.neuro-block .container,
.pain-block .container {
    max-width: var(--container-lg);
}

/* Удалено - дублирующее правило */

.hero-new-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    will-change: opacity, visibility, display;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Скрываем градиент, когда hero-секция не видна (только через JavaScript) */
body.hero-hidden .hero-gradient-bg {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

.hero-gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../assets/bg1.png') center/cover no-repeat;
    background-attachment: fixed;
    background-position: right center;
    opacity: 0.6;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) !important;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    min-height: clamp(500px, 70vh, 700px);
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .hero-text-block {
        order: 1;
    }
    
    .hero-illustration-block {
        order: 2;
    }
}

.hero-content-wrapper > * {
    min-width: 0;
}

.hero-text-block {
    max-width: 580px;
    width: 100%;
    min-width: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    position: relative;
    z-index: 11;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-logo-wrapper {
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
}

.hero-logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hero-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark) !important;
    margin: 0;
    text-align: left;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-subtitle-new {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-light) !important;
    margin: 0;
    text-align: left;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-buttons {
    display: flex !important;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-primary-new {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary-new:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary-new {
    background: transparent;
    color: var(--primary-purple);
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary-new:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Cards Illustration */
.hero-illustration-block {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-cards-illustration {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 360px;
    transform: scale(0.96);
    animation: scaleIn 0.6s ease forwards;
}

.product-card-illus {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card-illus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 1;
}

.product-card-illus:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(2px, -2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 40px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.product-card-neuro,
.product-card-content,
.product-card-hub {
    /* Все карточки одинаково стеклянные */
}

.card-illus-content {
    position: relative;
    z-index: 2;
}

.card-illus-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.card-illus-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   PAIN BLOCKS
   ============================================ */

/* ============================================
   NEURO BLOCK (Нейропродавец)
   ============================================ */

.neuro-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 100;
    isolation: isolate;
    overflow: hidden;
}

.neuro-block .container {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
    width: 100%;
    box-sizing: border-box;
}

.neuro-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.neuro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 100%;
    display: block;
}

.neuro-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    max-width: 100%;
    white-space: pre-line;
    display: block;
}

.neuro-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.neuro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0 clamp(0rem, 5vw, 4rem);
}

/* Асимметричное расположение карточек */
@media (min-width: 768px) {
    .neuro-cards {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 5vw, 3rem);
    }
    
    .glass-card-pain {
        justify-self: end;
    }
    
    .glass-card-value {
        justify-self: start;
    }
}

.neuro-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.neuro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.glass-card-pain {
    border-left: 4px solid rgba(239, 68, 68, 0.3);
}

.glass-card-value {
    border-left: 4px solid rgba(124, 58, 237, 0.3);
}

.neuro-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 0.75rem;
}

.glass-card-pain .card-list li::before {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    content: '•';
    font-size: 1.2rem;
}

.neuro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2rem, 5vw, 2.5rem);
    padding: 0;
    width: 100%;
    margin: 0;
    min-height: clamp(500px, 60vh, 700px);
    padding-left: 0;
    padding-right: clamp(0rem, 5vw, 4rem);
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .neuro-visual {
        padding-left: clamp(2rem, 10vw, 12rem);
        padding-right: clamp(2rem, 5vw, 6rem);
    }
}

.neuro-screen-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10%);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.8),
        0 0 0 12px rgba(124, 58, 237, 0.1);
    background: var(--white);
    padding: 1.5rem;
    width: 680px;
    max-width: 680px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: dashboardFloat 6s ease-in-out infinite;
}

.neuro-screen-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.neuro-screen-wrapper:hover {
    transform: translateY(-50%) translateX(-5%) scale(1.05);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.25),
        0 0 0 8px rgba(255, 255, 255, 0.9),
        0 0 0 12px rgba(124, 58, 237, 0.15);
}

.neuro-screen-wrapper:hover::before {
    opacity: 1;
}

.neuro-dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.neuro-screen-wrapper:hover .neuro-dashboard-image {
    transform: scale(1.02);
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(-10%) rotate(-1deg);
    }
    50% {
        transform: translateY(-52%) translateX(-10%) rotate(1deg);
    }
}

.neuro-chat-demo {
    position: relative;
    flex: 1;
    min-width: 380px;
    max-width: 420px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.neuro-chat-demo:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chat-dialog {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
}

.chat-channels {
    margin-top: 1rem;
}

.chat-channels-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.chat-channels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chat-channel {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.chat-channel img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.chat-channel span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.phone-mockup-fallback {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.phone-mockup-fallback .phone-screen {
    background: var(--white);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.neuro-cta-strip {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4.5rem 0;
    margin-top: 4rem;
    margin-bottom: 0;
    background: rgba(144, 124, 247, 0.25) !important;
    border-top: 2px solid rgba(124, 58, 237, 0.3);
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 -10px 30px rgba(124, 58, 237, 0.15), 0 10px 30px rgba(124, 58, 237, 0.15);
    overflow: hidden;
    z-index: 200;
    clear: both;
    display: block;
    isolation: isolate;
    min-height: 200px;
}

.neuro-cta-strip::before,
.neuro-cta-strip::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 0;
}

.neuro-cta-strip::before {
    top: -80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.neuro-cta-strip::after {
    bottom: -80px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.neuro-cta-strip .container {
    max-width: var(--container-md);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
    width: 100%;
    box-sizing: border-box;
}

.neuro-cta-strip .neuro-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.neuro-cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0;
}

.neuro-cta-label {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.neuro-cta-subtext {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 1.5rem 0 0;
    line-height: 1.7;
    max-width: 800px;
}

.neuro-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 700px;
    margin: 2.5rem auto 0;
}

.neuro-cta-button-main {
    padding: 1.125rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35), 0 4px 12px rgba(124, 58, 237, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
    min-width: 240px;
}

.neuro-cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4), 0 6px 16px rgba(124, 58, 237, 0.25);
}

.neuro-cta-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0.5rem 0;
}

.neuro-cta-divider::before,
.neuro-cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

.neuro-cta-divider span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 0.5rem;
}

.neuro-cta-form {
    width: 100%;
    max-width: 500px;
}

.neuro-cta-form-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: stretch;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.neuro-cta-form-wrapper:focus-within {
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15), 0 4px 12px rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

.neuro-cta-phone-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    box-sizing: border-box;
    background: rgba(248, 250, 252, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 0;
}

.neuro-cta-phone-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.neuro-cta-phone-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.neuro-cta-form-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
    min-width: 160px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-purple);
}

.neuro-cta-form-button:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.pain-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    clear: both;
    isolation: isolate;
}

/* ============================================
   CUSTOM INTEGRATION NEW - ИИ-агентство Viora
   ============================================ */

.custom-integration-new {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b3d 50%, #1f1635 100%);
    color: rgba(203, 213, 225, 0.95);
    overflow: hidden;
    isolation: isolate;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.custom-integration-new p,
.custom-integration-new span:not(.custom-integration-title-highlight):not(.custom-integration-badge-icon),
.custom-integration-new div:not(.custom-integration-title-highlight),
.custom-integration-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new),
.custom-integration-new li,
.custom-integration-new ul {
    color: inherit;
}

.custom-integration-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new) {
    color: rgba(203, 213, 225, 0.95);
}

.custom-integration-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new):hover {
    color: var(--white);
}

.custom-integration-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.custom-integration-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.custom-integration-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}

.custom-integration-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    animation-delay: 5s;
}

.custom-integration-orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    animation-delay: 10s;
}

.custom-integration-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.custom-integration-new .container {
    position: relative;
    z-index: 1;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.custom-integration-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 var(--padding-desktop);
}

.custom-integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.custom-integration-badge-icon {
    font-size: 1rem;
}

.custom-integration-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.custom-integration-title-highlight {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.custom-integration-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(203, 213, 225, 1);
    max-width: 42rem;
    margin: 0 auto;
}

.custom-integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    width: 100%;
    padding: 0 var(--padding-desktop);
}

@media (min-width: 1024px) {
    .custom-integration-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.custom-integration-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.custom-integration-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd, #ddd6fe);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.custom-integration-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.3);
}

.custom-integration-feature:hover::before {
    transform: scaleX(1);
}

.custom-integration-feature-icon {
    margin-bottom: 1.5rem;
}

.custom-integration-icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(167, 139, 250, 0.25));
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 1rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.custom-integration-feature:hover .custom-integration-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(167, 139, 250, 0.35));
    border-color: rgba(167, 139, 250, 0.6);
}

.custom-integration-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #a78bfa;
}

.custom-integration-feature:nth-child(2) .custom-integration-feature-title {
    color: #c4b5fd;
}

.custom-integration-feature:nth-child(3) .custom-integration-feature-title {
    color: #ddd6fe;
}

.custom-integration-feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(203, 213, 225, 0.9);
    margin: 0 0 1.5rem;
}

.custom-integration-feature-text strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.custom-integration-tools {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-integration-tools-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.custom-integration-tools-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.85);
    margin: 0;
}

.custom-integration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.custom-integration-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.custom-integration-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.3));
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: #c4b5fd;
    backdrop-filter: blur(10px);
}

.custom-integration-step-content {
    flex: 1;
}

.custom-integration-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.custom-integration-step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.85);
    margin: 0;
}

.custom-integration-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.custom-integration-result-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.custom-integration-result-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(167, 139, 250, 0.25));
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #c4b5fd;
    backdrop-filter: blur(10px);
}

.custom-integration-result-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.9);
    margin: 0;
}

.custom-integration-cta-new {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(167, 139, 250, 0.15) 100%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(167, 139, 250, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 var(--padding-desktop);
}

.custom-integration-cta-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.25), transparent 70%);
    pointer-events: none;
}

.custom-integration-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.custom-integration-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.custom-integration-cta-badge span:first-child {
    font-size: 1rem;
}

.custom-integration-cta-text-new {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(203, 213, 225, 0.95);
    margin: 0;
}

.custom-integration-cta-text-new strong {
    color: var(--white);
    font-weight: 600;
}

.custom-integration-cta-new .neuro-cta-actions {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.custom-integration-cta-new .neuro-cta-button-main {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5), 0 0 20px rgba(124, 58, 237, 0.3);
    border: none;
    color: var(--white) !important;
}

.custom-integration-cta-new .neuro-cta-button-main:hover {
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.6), 0 0 30px rgba(167, 139, 250, 0.4);
    transform: translateY(-3px);
}

.custom-integration-cta-new .neuro-cta-divider::before,
.custom-integration-cta-new .neuro-cta-divider::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.custom-integration-cta-new .neuro-cta-divider span {
    color: rgba(203, 213, 225, 0.8);
}

.custom-integration-cta-new .neuro-cta-form-wrapper {
    background: rgba(26, 15, 46, 0.9);
    border: 1px solid rgba(167, 139, 250, 0.4);
    backdrop-filter: blur(20px);
}

.custom-integration-cta-new .neuro-cta-phone-input {
    background: rgba(45, 27, 61, 0.7);
    border-color: rgba(167, 139, 250, 0.4);
    color: var(--white);
}

.custom-integration-cta-new .neuro-cta-phone-input:focus {
    border-color: #a78bfa;
    background: rgba(45, 27, 61, 0.9);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3);
}

.custom-integration-cta-new .neuro-cta-phone-input::placeholder {
    color: rgba(203, 213, 225, 0.5);
}

.custom-integration-cta-new .neuro-cta-form-button {
    background: rgba(124, 58, 237, 0.25);
    color: var(--white);
    border-color: rgba(167, 139, 250, 0.5);
}

.custom-integration-cta-new .neuro-cta-form-button:hover {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.7);
    transform: translateY(-1px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .custom-integration-main-title {
        font-size: 2.5rem;
    }
    
    .custom-integration-subtitle {
        font-size: 1rem;
    }
    
    .custom-integration-features {
        grid-template-columns: 1fr;
    }
    
    .custom-integration-feature {
        padding: 2rem;
    }
    
    .custom-integration-cta-new {
        padding: 2rem;
    }
}

.content-factory-new {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b3d 50%, #1f1635 100%);
    color: rgba(203, 213, 225, 0.95);
    overflow: hidden;
    isolation: isolate;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.content-factory-new p,
.content-factory-new span:not(.content-factory-title-highlight):not(.content-factory-stat-number):not(.content-factory-badge-icon),
.content-factory-new div:not(.content-factory-title-highlight):not(.content-factory-stat-number),
.content-factory-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new),
.content-factory-new li,
.content-factory-new ul {
    color: inherit;
}

.content-factory-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new) {
    color: rgba(203, 213, 225, 0.95);
}

.content-factory-new a:not(.neuro-cta-button-main):not(.btn-primary-new):not(.btn-secondary-new):hover {
    color: var(--white);
}

.content-factory-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.content-factory-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.content-factory-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}

.content-factory-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    animation-delay: 5s;
}

.content-factory-orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    animation-delay: 10s;
}

.content-factory-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.content-factory-new .container {
    position: relative;
    z-index: 1;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.content-factory-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 var(--padding-desktop);
}

.content-factory-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.content-factory-badge-icon {
    font-size: 1rem;
}

.content-factory-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.content-factory-title-highlight {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.content-factory-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(203, 213, 225, 1);
    max-width: 42rem;
    margin: 0 auto;
}

.content-factory-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    width: 100%;
    padding: 0 var(--padding-desktop);
}

/* Асимметричное расположение для больших экранов */
@media (min-width: 1024px) {
    .content-factory-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
    
    .content-factory-feature:nth-child(1) {
        grid-column: 1;
        justify-self: start;
    }
    
    .content-factory-feature:nth-child(2) {
        grid-column: 2;
        justify-self: center;
    }
    
    .content-factory-feature:nth-child(3) {
        grid-column: 3;
        justify-self: end;
    }
}

.content-factory-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.content-factory-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd, #ddd6fe);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.content-factory-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.3);
}

.content-factory-feature:hover::before {
    transform: scaleX(1);
}

.content-factory-feature-icon {
    margin-bottom: 1.5rem;
}

.content-factory-icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(167, 139, 250, 0.25));
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 1rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-factory-feature:hover .content-factory-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(167, 139, 250, 0.35));
    border-color: rgba(167, 139, 250, 0.6);
}

.content-factory-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #a78bfa;
}

.content-factory-feature:nth-child(2) .content-factory-feature-title {
    color: #c4b5fd;
}

.content-factory-feature:nth-child(3) .content-factory-feature-title {
    color: #ddd6fe;
}

.content-factory-feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(203, 213, 225, 0.9);
    margin: 0 0 1.5rem;
}

.content-factory-feature-text strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.content-factory-feature-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.content-factory-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.content-factory-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.content-factory-stat-label {
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.content-factory-cta-new {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(167, 139, 250, 0.15) 100%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(167, 139, 250, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 var(--padding-desktop);
    box-sizing: border-box;
}

.content-factory-cta-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.25), transparent 70%);
    pointer-events: none;
}

.content-factory-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.content-factory-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.content-factory-cta-badge span:first-child {
    font-size: 1rem;
}

.content-factory-cta-title-new {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--white);
}

.content-factory-cta-text-new {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(203, 213, 225, 0.95);
    margin: 0;
}

.content-factory-cta-text-new strong {
    color: var(--white);
    font-weight: 600;
}

.content-factory-cta-new .neuro-cta-actions {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.content-factory-cta-new .neuro-cta-button-main {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5), 0 0 20px rgba(124, 58, 237, 0.3);
    border: none;
    color: var(--white) !important;
}

.content-factory-cta-new .neuro-cta-button-main:hover {
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.6), 0 0 30px rgba(167, 139, 250, 0.4);
    transform: translateY(-3px);
}

.content-factory-cta-new .neuro-cta-divider::before,
.content-factory-cta-new .neuro-cta-divider::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.content-factory-cta-new .neuro-cta-divider span {
    color: rgba(203, 213, 225, 0.8);
}

.content-factory-cta-new .neuro-cta-form-wrapper {
    background: rgba(26, 15, 46, 0.9);
    border: 1px solid rgba(167, 139, 250, 0.4);
    backdrop-filter: blur(20px);
}

.content-factory-cta-new .neuro-cta-phone-input {
    background: rgba(45, 27, 61, 0.7);
    border-color: rgba(167, 139, 250, 0.4);
    color: var(--white);
}

.content-factory-cta-new .neuro-cta-phone-input:focus {
    border-color: #a78bfa;
    background: rgba(45, 27, 61, 0.9);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3);
}

.content-factory-cta-new .neuro-cta-phone-input::placeholder {
    color: rgba(203, 213, 225, 0.5);
}

.content-factory-cta-new .neuro-cta-form-button {
    background: rgba(124, 58, 237, 0.25);
    color: var(--white);
    border-color: rgba(167, 139, 250, 0.5);
}

.content-factory-cta-new .neuro-cta-form-button:hover {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.7);
    transform: translateY(-1px);
}

.pain-block-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    width: 100%;
}

/* Асимметричное расположение для больших экранов */
@media (min-width: 1024px) {
    .pain-block-content {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }
    
    .pain-block-reverse .pain-block-content {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
}

.pain-block-reverse {
    grid-template-columns: 1fr 1fr;
}

.pain-block-reverse .pain-visual-block {
    order: 2;
}

.pain-block-reverse .pain-text-block {
    order: 1;
}

.pain-text-block {
    max-width: 100%;
}

.pain-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content-factory-description {
    margin: 2.5rem 0 2.5rem;
}

.content-factory-text-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0 0 1.5rem;
    padding: 0;
}

.content-factory-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.content-factory-button {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.3);
    transition: all 0.3s ease;
}

.content-factory-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(167, 139, 250, 0.4);
}

.pain-heading,
.value-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.pain-list ul,
.value-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-list li,
.value-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.pain-list li::before,
.value-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 1.5rem;
}

.solution-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--primary-purple);
    border-radius: 8px;
}

/* Channels Icons */
/* Phone Mockup */
.pain-visual-block {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transform: scale(0.98);
    animation: scaleIn 0.8s ease forwards;
}

.phone-screen {
    background: var(--white);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 1rem;
    border-radius: 16px;
    max-width: 80%;
    opacity: 1;
}

.message-incoming {
    background: var(--gray-light);
    align-self: flex-start;
}

.message-outgoing {
    background: var(--primary-purple);
    color: var(--white);
    align-self: flex-end;
}

.message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.phone-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.phone-mockup:hover {
    transform: translateY(-4px) scale(1);
    transition: all 0.3s ease;
}

.phone-mockup:hover .phone-screen {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

@keyframes messageAppear {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Laptop Mockup */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: translateX(30px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.laptop-screen {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-item {
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: articleAppear 0.5s ease forwards;
    opacity: 0;
}

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

.article-item h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.published {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.status.scheduled {
    background: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
}

/* .pain-block-reverse moved above - uses grid order instead */

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

@keyframes articleAppear {
    to {
        opacity: 1;
    }
}

/* ============================================
   BLOCK 4 - Custom Integration
   ============================================ */

.custom-integration-block {
    background: var(--dark-bg);
    color: var(--white);
}

.custom-integration-block .pain-title,
.custom-integration-block .pain-heading,
.custom-integration-block .value-heading,
.custom-integration-block .pain-list li,
.custom-integration-block .value-list li {
    color: var(--white);
}

.custom-integration-block .solution-text {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-purple);
}

.integration-diagram {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}

.diagram-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.diagram-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diagram-item {
    opacity: 0;
    transform: translateY(20px);
    animation: diagramAppear 0.6s ease forwards;
}

.diagram-item:nth-child(1) { animation-delay: 0.1s; }
.diagram-item:nth-child(2) { animation-delay: 0.2s; }
.diagram-item:nth-child(3) { animation-delay: 0.3s; }
.diagram-item:nth-child(4) { animation-delay: 0.4s; }
.diagram-item:nth-child(5) { animation-delay: 0.5s; }

.diagram-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.diagram-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.diagram-center {
    position: relative;
}

.diagram-card-center {
    background: var(--primary-purple);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

.diagram-card-center h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.diagram-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arrow-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 1.5s ease forwards;
}

.arrow-line:nth-child(2) { animation-delay: 0.6s; }
.arrow-line:nth-child(3) { animation-delay: 0.8s; }
.arrow-line:nth-child(4) { animation-delay: 1s; }

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

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 30px rgba(124, 58, 237, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 40px rgba(124, 58, 237, 0.8); }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* ============================================
   BLOCK 5 - Hub NEW (Светлый стиль)
   ============================================ */

.hub-block-new {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    clear: both;
    isolation: isolate;
    overflow: hidden;
}

.hub-block-new .container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
    width: 100%;
    box-sizing: border-box;
}

.hub-header-new {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hub-title-new {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hub-subtitle-new {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Категории в мозаику - разного размера */
.hub-categories-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: var(--container-xl);
    margin: 0 auto 4rem;
    padding: 0 var(--padding-desktop);
    width: 100%;
    box-sizing: border-box;
    grid-auto-rows: minmax(200px, auto);
}

@media (max-width: 1024px) {
    .hub-categories-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hub-categories-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hub-category-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

/* Расположение как на макете */
/* Верхний ряд: Видео на всю ширину */
.hub-category-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 1;
}

/* Нижний ряд: Изображения слева (высокая), справа 2 карточки сверху, 1 снизу */
.hub-category-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

.hub-category-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.hub-category-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.hub-category-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

@media (max-width: 1024px) {
    .hub-category-item:nth-child(1) {
        grid-column: span 4;
        grid-row: span 1;
    }
    
    .hub-category-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .hub-category-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hub-category-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hub-category-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hub-category-item {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
}

.hub-category-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(124, 58, 237, 0.25);
}

.hub-category-item-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.hub-category-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
}

.hub-category-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.hub-category-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Большие карточки - больший текст */
/* Верхняя карточка Видео - широкая */
.hub-category-item:nth-child(1) .hub-category-item-title {
    font-size: 2rem;
}

.hub-category-item:nth-child(1) .hub-category-item-icon {
    font-size: 4rem;
}

.hub-category-item:nth-child(1) .hub-category-item-description {
    font-size: 1.125rem;
}

/* Левая карточка Изображения - высокая */
.hub-category-item:nth-child(2) .hub-category-item-title {
    font-size: 1.75rem;
}

.hub-category-item:nth-child(2) .hub-category-item-icon {
    font-size: 3.5rem;
}

.hub-category-item:nth-child(2) .hub-category-item-description {
    font-size: 1.05rem;
}

.hub-category-item-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hub-category-item-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.hub-category-item-cta:hover {
    color: var(--primary-purple-dark);
    transform: translateX(4px);
}

/* Галерея на всю ширину экрана */
.hub-gallery-section-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 133vh;
    padding: 4rem 0;
    background: var(--white);
}

.hub-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(133px, auto);
    grid-auto-flow: dense;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
    width: 100%;
    box-sizing: border-box;
    min-height: 133vh;
}

@media (min-width: 1024px) {
    .hub-gallery-grid {
        gap: 2rem;
        grid-auto-rows: minmax(167px, auto);
    }
}

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

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

.hub-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hub-gallery-item:hover {
    transform: scale(1.02);
}

/* Мозаичная сетка - 7 карточек в 3 колонки */
/* Структура на 3 колонки:
   [1]    [3 широкий]    [6]
   [1]    [4 высокая]    [6]
   [2]    [4]            [6]
   [2]    [5]            
   [7 на всю ширину]
*/

/* Первая карточка - левая вертикальная (2 ряда) */
.hub-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Вторая карточка - левая вертикальная (2 ряда), ниже первой */
.hub-gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 3 / 5;
}

/* Третья карточка - верхняя широкая (2 колонки) */
.hub-gallery-item:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* Четвертая карточка - средняя вертикальная (3 ряда) */
.hub-gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / 5;
}

/* Пятая карточка - маленькая справа от четвертой */
.hub-gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 4;
}

/* Шестая карточка - правая вертикальная (2 ряда) */
.hub-gallery-item:nth-child(6) {
    grid-column: 3;
    grid-row: 2 / 4;
}

/* Седьмая карточка - широкая на всю ширину внизу (3 колонки) */
.hub-gallery-item:nth-child(7) {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

@media (max-width: 1024px) {
    .hub-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Сохраняем ту же структуру */
    .hub-gallery-item:nth-child(1),
    .hub-gallery-item:nth-child(2),
    .hub-gallery-item:nth-child(4),
    .hub-gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .hub-gallery-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hub-gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hub-gallery-item:nth-child(7) {
        grid-column: span 3;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .hub-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hub-gallery-item:nth-child(1),
    .hub-gallery-item:nth-child(2),
    .hub-gallery-item:nth-child(4),
    .hub-gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .hub-gallery-item:nth-child(3),
    .hub-gallery-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hub-gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hub-gallery-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    .hub-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hub-gallery-item:nth-child(n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .hub-gallery-item:nth-child(1),
    .hub-gallery-item:nth-child(2),
    .hub-gallery-item:nth-child(4),
    .hub-gallery-item:nth-child(6),
    .hub-gallery-item:nth-child(7) {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }
}

.hub-gallery-image {
    width: 100%;
    height: 100%;
    min-height: 80px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .hub-gallery-image {
        min-height: 100px;
        border-radius: 14px;
    }
}

@media (min-width: 1024px) {
    .hub-gallery-image {
        min-height: 120px;
        border-radius: 16px;
    }
}

.hub-gallery-item:hover .hub-gallery-image {
    transform: scale(1.1);
}

.hub-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.hub-gallery-item:hover .hub-gallery-overlay {
    opacity: 1;
}

.hub-gallery-overlay-content {
    width: 100%;
}

.hub-gallery-overlay-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.hub-gallery-overlay-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
}

.hub-gallery-overlay-prompt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .hub-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hub-gallery-item-large,
    .hub-gallery-item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hub-gallery-item-large {
        min-height: 250px;
    }
}

.hub-category-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hub-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(124, 58, 237, 0.3);
}

.hub-category-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.hub-category-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.hub-category-card:hover .hub-category-image {
    transform: scale(1.05);
}

.hub-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
}

.hub-category-card:hover .hub-category-overlay {
    opacity: 1;
}

.hub-category-overlay-content {
    width: 100%;
}

.hub-category-overlay-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.hub-category-overlay-prompt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hub-category-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hub-category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hub-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.hub-category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 1.5rem;
    flex: 1;
}

.hub-category-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hub-model-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-purple);
    transition: all 0.2s ease;
}

.hub-model-tag:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.hub-category-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.hub-category-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Кнопка с бегущей строкой на всю ширину */
.hub-cta-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-top: 2px solid rgba(124, 58, 237, 0.2);
    border-bottom: 2px solid rgba(124, 58, 237, 0.2);
}

.hub-cta-marquee-button {
    display: block;
    width: 100%;
    padding: 2.5rem 0;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.hub-cta-marquee-button:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
}

.hub-cta-marquee-button .hub-cta-marquee-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: fit-content;
}

.hub-cta-marquee-button .hub-cta-marquee-text:first-child {
    animation: marquee 25s linear infinite;
}

.hub-cta-marquee-button .hub-cta-marquee-text:last-child {
    animation: marquee 25s linear infinite;
    animation-delay: -12.5s;
}

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

.hub-cta-marquee-item {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
    text-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    padding: 0 2rem;
}

.hub-cta-marquee-button:hover .hub-cta-marquee-item {
    color: rgba(124, 58, 237, 1);
    text-shadow: 0 4px 16px rgba(124, 58, 237, 0.5);
}

/* Адаптивность для бегущей строки */
@media (max-width: 768px) {
    .hub-cta-marquee-wrapper {
        margin-top: 0;
    }
    
    .hub-cta-marquee-button {
        padding: 2rem 0;
    }
    
    .hub-cta-marquee-item {
        font-size: 1.5rem;
        letter-spacing: 2px;
        padding: 0 1.5rem;
    }
    
    .hub-cta-marquee-button .hub-cta-marquee-text:first-child {
        animation-duration: 20s;
    }
    
    .hub-cta-marquee-button .hub-cta-marquee-text:last-child {
        animation-duration: 20s;
        animation-delay: -10s;
    }
}

@media (max-width: 480px) {
    .hub-cta-marquee-item {
        font-size: 1.25rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hub-title-new {
        font-size: 2rem;
    }
    
    .hub-subtitle-new {
        font-size: 1rem;
    }
    
    .hub-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hub-category-content {
        padding: 1.5rem;
    }
    
    .hub-description-new {
        padding: 1.5rem;
    }
    
    .hub-description-text {
        font-size: 1rem;
    }
}

.hub-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 4rem);
    align-items: start;
    width: 100%;
}

/* Асимметричное расположение для больших экранов */
@media (min-width: 1024px) {
    .hub-content {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
}

.hub-visual-block {
    position: sticky;
    top: 100px;
}

.balance-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.balance-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-topup {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.model-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(10px);
    opacity: 0;
    animation: bounceIn 0.5s ease forwards;
}

.model-card:nth-child(1) { animation-delay: 0.1s; }
.model-card:nth-child(2) { animation-delay: 0.2s; }
.model-card:nth-child(3) { animation-delay: 0.3s; }
.model-card:nth-child(4) { animation-delay: 0.4s; }
.model-card:nth-child(5) { animation-delay: 0.5s; }
.model-card:nth-child(6) { animation-delay: 0.6s; }

.model-card:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.model-card h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

/* ============================================
   BLOCK 6 - Benefits
   ============================================ */

.benefits-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.benefit-card.visible {
    animation: slideUpFade 0.6s ease forwards;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(2deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

/* ============================================
   BLOCK 7 - Cases
   ============================================ */

/* Старые стили - оставляем для обратной совместимости */
.cases-block {
    padding: 6rem 0;
    background: var(--gray-light);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.cases-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.case-card {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.case-card.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.case-industry {
    font-size: 0.875rem;
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.case-metric {
    margin: 2rem 0;
}

.metric-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
    line-height: 1;
}

.metric-label {
    font-size: 1.25rem;
    color: var(--text-dark);
    display: block;
    margin-top: 0.5rem;
}

.case-detail {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--white);
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

/* Новые стили для блока результатов внедрения ИИ */
.ai-results-block {
    padding: 6rem 0;
    background: url('../images/bg1_2.png') center center / cover no-repeat;
    position: relative;
    z-index: 10;
    isolation: isolate;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.ai-results-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(124, 58, 237, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-2%, 2%) rotate(2deg);
    }
    66% {
        transform: translate(2%, -2%) rotate(-2deg);
    }
}

.ai-results-block .container {
    position: relative;
    z-index: 1;
}

.ai-results-grid {
    position: relative;
    z-index: 1;
    padding: 0 var(--padding-desktop);
    max-width: var(--container-xl);
    margin: 0 auto;
}

.ai-results-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 0 var(--padding-desktop);
}

.ai-results-header .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ai-results-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ai-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ai-carousel-dots .dot.active {
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.ai-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.ai-result-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.ai-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a78bfa 0%, #60a5fa 50%, #a78bfa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.ai-result-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-result-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ai-result-card:hover::before {
    transform: scaleX(1);
}

.ai-result-card:hover::after {
    opacity: 1;
}

.ai-result-card-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.ai-result-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ai-result-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.ai-result-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ai-result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-result-metric {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ai-result-card:hover .ai-result-metric {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ai-result-metric-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.125rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ai-result-metric-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (min-width: 768px) {
    .ai-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .ai-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .ai-result-card {
        padding: 2.5rem;
    }
    
    .ai-result-title {
        font-size: 1.25rem;
    }
    
    .ai-result-metric-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .ai-results-block {
        padding: 4rem 0;
    }
    
    .ai-results-header {
        margin-bottom: 3rem;
    }
    
    .ai-results-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .ai-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ai-result-card {
        padding: 1.75rem;
    }
}

/* Старые стили для обратной совместимости - оставляем */
.cases-block-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f3e8ff 100%);
    position: relative;
    z-index: 10;
    isolation: isolate;
    overflow: hidden;
}

.cases-block-new .container {
    position: relative;
    z-index: 1;
}

.cases-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cases-carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
    position: relative;
    will-change: transform;
    margin: 0;
}

.case-card-new.clone {
    pointer-events: auto;
}

.case-card-new {
    flex: 0 0 auto;
    width: 400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0.5;
    transform: scale(0.85);
    pointer-events: all;
}

.case-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #3b82f6 50%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card-new.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
    box-shadow: 
        0 20px 60px rgba(124, 58, 237, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.case-card-new.active::before {
    transform: scaleX(1);
}

.case-card-new:hover:not(.active) {
    opacity: 0.7;
    transform: scale(0.9);
}

.case-card-badge {
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.case-badge-text {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.case-card-content {
    padding: 2.5rem 2rem 3rem;
}

.case-metric-new {
    margin: 1.5rem 0 2rem;
}

.metric-number-new {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
}

.metric-label-new {
    font-size: 1.125rem;
    color: var(--text-dark);
    display: block;
    font-weight: 500;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

.metric-label-full {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1.4;
    margin: 1.5rem 0;
}

.case-detail-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-detail-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.slider-dots-new {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    align-items: center;
    margin-top: 3rem;
    padding: 1rem 0;
}

.slider-dots-new .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-dots-new .dot.active {
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #7c3aed 0%, #3b82f6 100%);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.slider-dots-new .dot:hover {
    background: rgba(124, 58, 237, 0.5);
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .case-card-new {
        width: 350px;
    }

    .cases-carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cases-block-new {
        padding: 4rem 0;
    }

    .cases-carousel-wrapper {
        padding: 2rem 1rem;
    }

    .cases-carousel-track {
        gap: 1rem;
        padding: 1rem 0;
    }

    .case-card-new {
        width: 300px;
        min-width: 300px;
    }

    .case-card-badge {
        padding: 1.25rem 1.5rem 0.75rem;
    }

    .case-card-content {
        padding: 2rem 1.5rem 2.5rem;
    }

    .metric-number-new {
        font-size: 3.5rem;
    }

    .metric-label-new {
        font-size: 1rem;
    }

    .metric-label-full {
        font-size: 1.25rem;
    }

    .case-detail-new {
        font-size: 0.9375rem;
        padding: 0.625rem 1.25rem;
        flex-direction: column;
        gap: 0.375rem;
    }

    .slider-dots-new {
        margin-top: 2rem;
        gap: 0.5rem;
    }

    .slider-dots-new .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots-new .dot.active {
        width: 24px;
        height: 8px;
    }
}

@media (max-width: 640px) {
    .case-card-new {
        width: 280px;
        min-width: 280px;
    }

    .cases-carousel-track {
        gap: 0.75rem;
    }
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-purple);
    width: 24px;
    border-radius: 6px;
}

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

/* ============================================
   BLOCK 8 - Testimonials
   ============================================ */

.testimonials-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    transform: scale(1);
    opacity: 1;
}

.testimonial-card.visible {
    animation: zoomFade 0.6s ease forwards;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-card:hover {
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

@keyframes zoomFade {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   BLOCK 9 - Integrations
   ============================================ */

.integrations-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.integrations-scroll {
    overflow: hidden;
    position: relative;
}

.integrations-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
}

.integrations-track:hover {
    animation-play-state: paused;
}

.integration-logo {
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.integration-logo:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   BLOCK 10 - Final CTA
   ============================================ */

.final-cta-block {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.cta-card {
    max-width: 1080px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    transform: scale(0.96);
    opacity: 0;
    animation: scaleFade 0.8s ease forwards;
}

.cta-logo-wrapper {
    margin-bottom: 2rem;
}

.cta-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Форма заявки */
.final-cta-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    .final-cta-form-row {
        grid-template-columns: 1fr;
    }
}

.final-cta-input,
.final-cta-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-inter);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.final-cta-input:focus,
.final-cta-textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.final-cta-textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.final-cta-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    /* Общие улучшения для мобилки */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    /* Форма заявки */
    .final-cta-block {
        padding: 4rem 0;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .final-cta-input,
    .final-cta-textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .final-cta-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Хедер */
    .header-content-new {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .site-logo-image {
        height: 36px;
    }
    
    /* Кнопка с бегущей строкой */
    .hub-cta-marquee-item {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
    
    .hub-cta-marquee-button {
        padding: 1.5rem 0;
    }
    
    /* Темные блоки - внутренние отступы */
    .custom-integration-header,
    .content-factory-header,
    .ai-results-header,
    .custom-integration-features,
    .content-factory-features,
    .ai-results-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .custom-integration-cta-new,
    .content-factory-cta-new {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem 1.5rem;
    }
    
    /* Галерея Hub */
    .hub-gallery-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    /* Карточки результатов */
    .ai-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.final-cta-privacy {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

.final-cta-privacy a {
    color: var(--primary-purple);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.final-cta-privacy a:hover {
    border-bottom-color: var(--primary-purple);
}
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.btn-cta-primary {
    min-width: 200px;
}

.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-cta-secondary:hover {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

@keyframes scaleFade {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   BLOCK 10 - Blog
   ============================================ */

.blog-block {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 var(--padding-desktop);
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
    height: calc(50vh - 12rem);
    min-height: 500px;
    align-items: stretch;
}

/* Большая плитка (первая запись) - слева, на всю высоту */
.blog-card-large {
    grid-column: 1;
    grid-row: 1 / -1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Маленькие плитки (остальные записи) - справа, в колонку, одинаковой высоты */
.blog-card-small {
    grid-column: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-small:nth-of-type(2) {
    grid-row: 1;
}

.blog-card-small:nth-of-type(3) {
    grid-row: 2;
}

.blog-card-small:nth-of-type(4) {
    grid-row: 3;
}

.blog-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(124, 58, 237, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(124, 58, 237, 0.3);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* Большая карточка - фиксированная высота изображения */
.blog-card-large .blog-card-image {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    flex-shrink: 0;
}

/* Маленькие карточки - горизонтальная раскладка */
.blog-card-small-wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    height: 100%;
    align-items: stretch;
}

.blog-card-small .blog-card-image {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    height: 100%;
    flex-shrink: 0;
}

.blog-card-small .blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    min-width: 0;
    gap: 0.5rem;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.blog-placeholder-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(124, 58, 237, 0.1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Для большой карточки контент занимает оставшееся пространство */
.blog-card-large .blog-card-content {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
}

/* Для маленьких карточек контент уже внутри wrapper */

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    display: inline-block;
    padding: 0.2rem 0.625rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.6875rem;
    line-height: 1.2;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.blog-card-small .blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-purple);
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-light) !important;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 1.5em;
}

.blog-card-small .blog-card-excerpt {
    font-size: 0.8125rem;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
    min-height: 2.5em;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card:hover .blog-card-readmore {
    gap: 0.75rem;
    color: var(--primary-purple-dark);
}

.blog-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 0 var(--padding-desktop);
}

.blog-view-more {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.blog-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

/* Адаптивность блога */
@media (max-width: 1024px) {
    .blog-block {
        min-height: auto;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .blog-card-large {
        grid-column: 1;
        grid-row: auto;
        height: auto;
    }
    
    .blog-card-small {
        grid-column: 1;
        height: auto;
    }
    
    .blog-card-large .blog-card-image {
        height: 400px;
        min-height: 400px;
    }
    
    .blog-card-small-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-card-small .blog-card-image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
    }
    
    .blog-card-small .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-small .blog-card-excerpt {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 768px) {
    .blog-block {
        padding: 4rem 0;
    }
    
    .blog-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .blog-subtitle {
        font-size: 1.125rem;
    }
    
    .blog-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.5rem;
    }
    
    .blog-card-small .blog-card-title {
        font-size: 1.125rem;
    }
    
    .blog-card-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-footer {
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .blog-view-more {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   GENERAL PAGES STYLES (для всех страниц)
   ============================================ */

/* Общие стили для контентных страниц */
.content-area {
    padding: 2rem 0;
    background: var(--white);
    min-height: 60vh;
}

.main-content {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 var(--padding-desktop);
}

/* Стили для постов и страниц */
.post,
.page {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}

.post-header,
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.post-title,
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: var(--primary-purple-dark);
    text-decoration: underline;
}

.post-thumbnail-wrapper {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.post-content,
.page-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content p,
.page-content p {
    margin-bottom: 1.5rem;
}

.post-content h1,
.page-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content h2,
.page-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content h3,
.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.4;
}

.post-content h4,
.page-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.25rem 0 0.75rem 0;
    line-height: 1.4;
}

.post-content ul,
.post-content ol,
.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li,
.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-content a,
.page-content a {
    color: var(--primary-purple);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover,
.page-content a:hover {
    color: var(--primary-purple-dark);
    border-bottom-color: var(--primary-purple);
}

.post-content img,
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.post-content blockquote,
.page-content blockquote {
    border-left: 4px solid var(--primary-purple);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: rgba(124, 58, 237, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.post-content code,
.page-content code {
    background: rgba(124, 58, 237, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-purple-dark);
}

.post-content pre,
.page-content pre {
    background: rgba(124, 58, 237, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.post-content pre code,
.page-content pre code {
    background: none;
    padding: 0;
    color: var(--text-dark);
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 0.875rem;
    color: var(--text-light);
}

.entry-footer a {
    color: var(--primary-purple);
    text-decoration: none;
}

.entry-footer a:hover {
    text-decoration: underline;
}

/* Навигация между постами */
.post-navigation {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--primary-purple-dark);
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1rem;
}

/* Пагинация */
.page-links {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.page-links a {
    color: var(--primary-purple);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: rgba(124, 58, 237, 0.1);
}

/* Архивы */
.archive-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-purple-dark);
    gap: 0.75rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Пагинация постов */
.posts-navigation,
.pagination {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.posts-navigation a,
.pagination a,
.posts-navigation span,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--white);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.posts-navigation a:hover,
.pagination a:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.posts-navigation .current,
.pagination .current {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--white);
}

/* Пустой результат */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Sidebar */
#secondary {
    max-width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title,
.widget h3,
.sidebar-widget h3,
.sidebar-widget .widget-title {
    font-family: 'Jura', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #8a3fe2 !important;
    text-decoration: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.widget a:hover {
    color: var(--primary-purple);
    padding-left: 0.5rem;
}

/* Layout с sidebar */
.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    
    #secondary {
        max-width: 100%;
        order: -1;
    }
}

/* Адаптивность для общих страниц */
@media (max-width: 768px) {
    .content-area {
        padding: 1.5rem 0;
        gap: 2rem;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .post,
    .page {
        padding: 2rem 1.5rem;
    }
    
    .post-title,
    .page-title {
        font-size: 2rem;
    }
    
    .post-content,
    .page-content {
        font-size: 1rem;
    }
    
    .post-content h1,
    .page-content h1 {
        font-size: 1.75rem;
    }
    
    .post-content h2,
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3,
    .page-content h3 {
        font-size: 1.25rem;
    }
    
    .post-navigation {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .posts-navigation,
    .pagination {
        flex-wrap: wrap;
    }
    
    #secondary {
        padding: 1.5rem;
    }
}

/* ============================================
   BLOCK 11 - Footer
   ============================================ */

.site-footer-new {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title-new {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-menu-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list-new li {
    margin-bottom: 0.75rem;
}

.footer-menu-list-new a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-menu-list-new a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.footer-menu-list-new a:hover {
    color: var(--white);
}

.footer-menu-list-new a:hover::before {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .content-factory-new {
        padding: 5rem 0;
    }
    
    .content-factory-main-title {
        font-size: 3rem;
    }
    
    .content-factory-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .content-factory-orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .content-factory-orb-2 {
        width: 350px;
        height: 350px;
    }
    
    .content-factory-orb-3 {
        width: 300px;
        height: 300px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .neuro-content {
        gap: 2.5rem;
    }
    
    .neuro-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .neuro-visual {
        order: -1;
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .neuro-screen-wrapper {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
        animation: none;
    }
    
    .neuro-screen-wrapper:hover {
        transform: scale(1.02);
    }
    
    .neuro-chat-demo {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .neuro-card {
        order: initial;
    }
    
    .neuro-title {
        font-size: 2.5rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .pain-block-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pain-block-reverse .pain-visual-block {
        order: 1;
    }
    
    .pain-block-reverse .pain-text-block {
        order: 2;
    }
    
    .neuro-cta-label {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .neuro-cta-actions {
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .neuro-cta-button-main {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .neuro-cta-divider {
        max-width: 100%;
        margin: 0.25rem 0;
    }
    
    .neuro-cta-form {
        width: 100%;
        max-width: 100%;
    }
    
    .neuro-cta-form-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .neuro-cta-phone-input {
        width: 100%;
    }
    
    .neuro-cta-form-button {
        width: 100%;
        min-width: auto;
    }
    
    .hub-content {
        grid-template-columns: 1fr;
    }
    
    .hub-visual-block {
        position: static;
    }
    
    .chat-channels-list {
        justify-content: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* На мобильных меню скрыто по умолчанию, показывается через toggle */
    .main-navigation-new:not(.active) {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
    }
    
    .main-navigation-new.active {
        right: 0 !important;
        display: flex !important;
    }
    
    .menu-toggle-new {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .content-factory-new {
        padding: 3rem 0;
    }
    
    .content-factory-header {
        margin-bottom: 2.5rem;
    }
    
    .content-factory-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .content-factory-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .content-factory-subtitle {
        font-size: 1rem;
    }
    
    .content-factory-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .content-factory-feature {
        padding: 1.75rem;
    }
    
    .content-factory-icon-circle {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .content-factory-feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .content-factory-feature-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .content-factory-feature-stats {
        flex-direction: row;
        gap: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .content-factory-stat-number {
        font-size: 1.5rem;
    }
    
    .content-factory-stat-label {
        font-size: 0.7rem;
    }
    
    .content-factory-cta-new {
        padding: 1.75rem;
    }
    
    .content-factory-cta-title-new {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }
    
    .content-factory-cta-text-new {
        font-size: 0.95rem;
    }
    
    .content-factory-orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .content-factory-orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .content-factory-orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-title-new {
        font-size: 2rem;
        white-space: normal;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .neuro-block {
        padding: 4rem 0;
    }
    
    .neuro-header {
        margin-bottom: 2.5rem;
    }
    
    .neuro-title {
        font-size: 2rem;
    }
    
    .neuro-subtitle {
        font-size: 1.1rem;
    }
    
    .neuro-content {
        gap: 2rem;
    }
    
    .neuro-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neuro-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-list li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
    
    .neuro-visual {
        order: 3;
        flex-direction: column;
        gap: 1.25rem;
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .neuro-screen-wrapper {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
        animation: none;
    }
    
    .neuro-screen-wrapper:hover {
        transform: scale(1.02);
    }
    
    .neuro-chat-demo {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .chat-status-badge {
        align-self: center;
    }
    
    .chat-channels-list {
        justify-content: center;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        text-align: center;
    }
    
    .neuro-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .neuro-cta-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .neuro-cta-phone-input {
        width: 100%;
    }
    
    .product-cards-illustration {
        gap: 1rem;
    }
    
    .product-card-illus {
        padding: 1.5rem;
    }
    
    .content-factory-section {
        padding: 4rem 0;
    }
    
    .content-factory-title {
        font-size: 2.5rem;
    }
    
    .content-factory-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .content-factory-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .content-factory-card {
        padding: 1.5rem;
    }
    
    .content-factory-card-title {
        font-size: 1.25rem;
    }
    
    .content-factory-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .content-factory-cta-title {
        font-size: 1.5rem;
    }
    
    .content-factory-cta-text {
        font-size: 1rem;
    }
    
    .pain-block-reverse .pain-visual-block {
        order: 1;
    }
    
    .pain-block-reverse .pain-text-block {
        order: 2;
    }
    
    .hub-content {
        grid-template-columns: 1fr;
    }
    
    .hub-visual-block {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content-new {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .integration-diagram {
        height: 400px;
    }
    
    .diagram-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .neuro-cta-strip {
        padding: 2.5rem 0;
    }
    
    .neuro-cta-label {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .neuro-cta-subtext {
        font-size: 1rem;
        margin: 1.25rem 0 0;
    }
    
    .neuro-cta-actions {
        margin-top: 2rem;
        gap: 1.25rem;
    }
    
    .neuro-cta-button-main {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .neuro-cta-form-wrapper {
        flex-direction: column;
        padding: 1rem;
    }
    
    .neuro-cta-form-button {
        width: 100%;
        min-width: auto;
    }
}

