.elementor-231943 .elementor-element.elementor-element-3ad2b28{--display:flex;}body.elementor-page-231943:not(.elementor-motion-effects-element-type-background), body.elementor-page-231943 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-267d593 */.mvp-page {
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* Анимированный градиентный фон */
        .gradient-bg {
            position: fixed;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(ellipse at 20% 30%, rgba(151,203,255,0.15) 0%, transparent 40%),
                        radial-gradient(ellipse at 80% 70%, rgba(100,181,255,0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 50%, rgba(59,187,111,0.05) 0%, transparent 60%);
            animation: gradientShift 20s ease-in-out infinite;
            z-index: -1;
        }
        
        @keyframes gradientShift {
            0%, 100% { transform: rotate(0deg) scale(1); }
            33% { transform: rotate(120deg) scale(1.1); }
            66% { transform: rotate(240deg) scale(0.9); }
        }
        
        /* Героический блок с анимацией текста */
        .mvp-hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 40px 20px;
        }
        
        .hero-title {
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 30px;
            position: relative;
        }
        
        .hero-title span {
            display: inline-block;
            background: linear-gradient(135deg, #fff 0%, #97CBFF 50%, #3BBB6F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite;
        }
        
        @keyframes titleGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }
        
        .hero-subtitle {
            font-size: clamp(20px, 3vw, 28px);
            color: rgba(255,255,255,0.8);
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        /* Анимированная кнопка */
        .cta-button {
            display: inline-block;
            padding: 20px 60px;
            background: linear-gradient(135deg, #97CBFF, #64b5ff);
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 18px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(151,203,255,0.3);
        }
        
        /* Интерактивная секция "Что такое MVP" */
        .mvp-intro {
            padding: 120px 20px;
            position: relative;
        }
        
        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .intro-content h2 {
            font-size: 48px;
            margin-bottom: 30px;
            color: #fff;
        }
        
        .intro-content p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
        }
        
        /* Анимированная диаграмма MVP */
        .mvp-diagram {
            position: relative;
            height: 400px;
        }
        
        .diagram-circle {
            position: absolute;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .circle-core {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #97CBFF, #64b5ff);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            color: #0a0a0a;
            font-size: 18px;
        }
        
        .circle-feature {
            width: 120px;
            height: 120px;
            background: rgba(151,203,255,0.1);
            border: 2px solid rgba(151,203,255,0.3);
            color: #97CBFF;
            font-size: 14px;
        }
        
        .circle-feature:nth-child(2) {
            top: 10%;
            left: 20%;
            animation: float 6s ease-in-out infinite;
        }
        
        .circle-feature:nth-child(3) {
            top: 10%;
            right: 20%;
            animation: float 6s ease-in-out infinite 1s;
        }
        
        .circle-feature:nth-child(4) {
            bottom: 10%;
            left: 20%;
            animation: float 6s ease-in-out infinite 2s;
        }
        
        .circle-feature:nth-child(5) {
            bottom: 10%;
            right: 20%;
            animation: float 6s ease-in-out infinite 3s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .diagram-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(151,203,255,0.3);
        }
        
        /* Процесс разработки - Timeline */
        .mvp-process {
            padding: 120px 20px;
            background: linear-gradient(180deg, transparent 0%, rgba(151,203,255,0.02) 50%, transparent 100%);
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .process-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 80px;
            color: #fff;
        }
        
        .timeline {
            position: relative;
            padding: 0 50px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, #97CBFF 0%, rgba(151,203,255,0.3) 100%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 80px;
            position: relative;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            padding: 40px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(151,203,255,0.2);
            transition: all 0.3s;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            background: rgba(151,203,255,0.05);
            border-color: #97CBFF;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: #97CBFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #0a0a0a;
            box-shadow: 0 0 0 6px rgba(151,203,255,0.2);
        }
        
        .timeline-content h3 {
            font-size: 24px;
            color: #97CBFF;
            margin-bottom: 15px;
        }
        
        .timeline-content p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }
        
        .timeline-duration {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-top: 15px;
        }
        
        /* Статистика MVP */
        .mvp-stats {
            padding: 120px 20px;
            background: #fff;
            color: #0a0a0a;
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stats-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 60px;
            color: #0a0a0a;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px;
            background: #f8f8f8;
            border-radius: 20px;
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
                .stat-number {
            font-size: 64px;
            font-weight: 900;
            color: #97CBFF;
            margin-bottom: 10px;
            counter-reset: stat-counter 0;
        }
        
        .stat-card:hover .stat-number {
            animation: countUp 1s ease-out;
        }
        
        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .stat-label {
            font-size: 18px;
            color: #666;
        }
        
        /* Сравнение MVP vs Полная разработка */
        .mvp-comparison {
            padding: 120px 20px;
            background: #0a0a0a;
        }
        
        .comparison-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .comparison-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 60px;
            color: #fff;
        }
        
        .comparison-table {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .comparison-col {
            padding: 40px;
            border-radius: 20px;
            text-align: center;
        }
        
        .col-mvp {
            background: linear-gradient(135deg, rgba(151,203,255,0.1), rgba(59,187,111,0.1));
            border: 2px solid #3BBB6F;
        }
        
        .col-full {
            background: rgba(255,255,255,0.02);
            border: 2px solid rgba(255,255,255,0.1);
        }
        
        .comparison-col h3 {
            font-size: 32px;
            margin-bottom: 30px;
        }
        
        .col-mvp h3 {
            color: #3BBB6F;
        }
        
        .comparison-item {
            margin-bottom: 20px;
            font-size: 18px;
            color: rgba(255,255,255,0.8);
        }
        
        .comparison-item strong {
            color: #fff;
        }
        
        /* FAQ секция */
        .mvp-faq {
            padding: 120px 20px;
            background: rgba(151,203,255,0.02);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 60px;
            color: #fff;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(151,203,255,0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: #97CBFF;
            background: rgba(151,203,255,0.03);
        }
        
        .faq-question {
            padding: 25px 30px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 28px;
            color: #97CBFF;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 30px 25px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        @media (max-width: 768px) {
            .intro-container {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                flex-direction: column !important;
            }
            .timeline-content {
                width: 100%;
                margin-left: 40px;
            }
            .timeline-marker {
                left: 20px;
            }
            .comparison-table {
                grid-template-columns: 1fr;
            }
        }
   /* Исправленные стили */

.intro-container {
    max-width: 1400px; /* изменено с 1200px */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-container {
    max-width: 1400px; /* изменено с 1200px */
    margin: 0 auto;
}

.stats-container {
    max-width: 1400px; /* изменено с 1200px */
    margin: 0 auto;
}

.comparison-container {
    max-width: 1400px; /* изменено с 1000px */
    margin: 0 auto;
}

/* Центрирование текста в круглых элементах */
.diagram-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center; /* добавлено */
    padding: 15px; /* добавлено */
}

.circle-feature {
    width: 120px;
    height: 120px;
    background: rgba(151,203,255,0.1);
    border: 2px solid rgba(151,203,255,0.3);
    color: #97CBFF;
    font-size: 14px;
    word-wrap: break-word; /* добавлено */
    line-height: 1.3; /* добавлено */
}

/* Фикс для hover эффекта с учетом scale */
.diagram-circle:hover {
    transform: scale(1.1) translateY(0); /* изменено */
    box-shadow: 0 10px 30px rgba(151,203,255,0.3);
}/* End custom CSS */