/* ============================================
   VIORA AI PAGE - НОВЫЙ ДИЗАЙН
   Полностью переработанный дизайн с иконками
   ============================================ */

/* Подключаем шрифт Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS переменные для единого стиля */
:root {
    --viora-primary: #8a3fe2;
    --viora-primary-dark: #6d6beb;
    --viora-primary-light: #a855f7;
    --viora-text: #1c1c1e;
    --viora-text-light: #6e6e73;
    --viora-text-secondary: #3a3a3c;
    --viora-bg: #ffffff;
    --viora-bg-light: #f5f5f7;
    --viora-border: #e5e7eb;
    --viora-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --viora-shadow-lg: 0 12px 40px rgba(138, 63, 226, 0.15);
    --viora-radius: 20px;
    --viora-radius-lg: 28px;
    --viora-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Базовые стили для страницы */
body.page-template-page-viora-ai {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--viora-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Убираем ограничения контейнеров */
body.page-template-page-viora-ai .site-content,
body.page-template-page-viora-ai main#main,
body.page-template-page-viora-ai .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-page-viora-ai .viora-ai-landing {
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.viora-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.viora-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 63, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.viora-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 107, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content-viora {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-viora {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(138, 63, 226, 0.1);
    border: 1px solid rgba(138, 63, 226, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--viora-primary);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-title-viora {
    font-weight: 800;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.1;
    color: var(--viora-text);
    margin: 0 0 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-viora .accent {
    color: var(--viora-primary);
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle-viora {
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    color: var(--viora-text-light);
    margin: 0 0 50px;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
}

.hero-buttons-viora {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--viora-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(138, 63, 226, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 63, 226, 0.4);
}

.btn-hero-secondary {
    background: #ffffff;
    color: var(--viora-primary);
    border: 2px solid var(--viora-primary);
}

.btn-hero-secondary:hover {
    background: var(--viora-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-visual-viora {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-visual-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(138, 63, 226, 0.1);
    border-radius: var(--viora-radius);
    backdrop-filter: blur(10px);
    transition: var(--viora-transition);
    text-align: center;
}

.hero-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--viora-shadow-lg);
    border-color: rgba(138, 63, 226, 0.3);
}

.hero-visual-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 63, 226, 0.1) 0%, rgba(109, 107, 235, 0.1) 100%);
    border-radius: 16px;
    color: var(--viora-primary);
}

.hero-visual-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.hero-visual-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--viora-text);
    margin: 0 0 8px;
}

.hero-visual-text {
    font-weight: 400;
    font-size: 14px;
    color: var(--viora-text-light);
    margin: 0;
}

/* ============================================
   HOW WORKS SECTION
   ============================================ */
.how-works-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.how-works-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.how-works-header {
    text-align: left;
    margin-bottom: 80px;
    max-width: 800px;
}

.section-title-viora {
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--viora-text);
    margin: 0 0 20px;
    line-height: 1.2;
}

.section-subtitle-viora {
    font-weight: 400;
    font-size: 20px;
    color: var(--viora-text-light);
    line-height: 1.6;
    margin: 0;
}

.how-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.how-works-card {
    position: relative;
    padding: 48px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid var(--viora-border);
    border-radius: var(--viora-radius-lg);
    transition: var(--viora-transition);
    overflow: hidden;
}

.how-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8a3fe2 0%, #6d6beb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.how-works-card:hover::before {
    transform: scaleX(1);
}

.how-works-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--viora-shadow-lg);
    border-color: var(--viora-primary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(138, 63, 226, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--viora-primary);
}

.step-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.step-title {
    font-weight: 700;
    font-size: 28px;
    color: var(--viora-text);
    margin: 0 0 16px;
}

.step-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: var(--viora-text-light);
    margin: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section-viora {
    padding: 120px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
    position: relative;
    overflow: hidden;
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-grid-viora {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card-viora {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: var(--viora-radius-lg);
    box-shadow: var(--viora-shadow);
    transition: var(--viora-transition);
    position: relative;
    overflow: hidden;
}

.benefit-card-viora::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 63, 226, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-viora:hover::after {
    opacity: 1;
}

.benefit-card-viora:hover {
    transform: translateY(-8px);
    box-shadow: var(--viora-shadow-lg);
}

.benefit-icon-viora {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 63, 226, 0.12) 0%, rgba(109, 107, 235, 0.12) 100%);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--viora-primary);
}

.benefit-icon-viora svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
}

.benefit-title-viora {
    font-weight: 700;
    font-size: 24px;
    color: var(--viora-text);
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.benefit-text-viora {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--viora-text-light);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section-viora {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.integrations-section-viora::before,
.integrations-section-viora::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 63, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.integrations-section-viora::before {
    left: -100px;
    top: 20%;
}

.integrations-section-viora::after {
    right: -100px;
    bottom: 20%;
}

.integrations-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.integrations-header {
    text-align: center;
    margin-bottom: 80px;
}

.integrations-grid-viora {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.integration-item-viora {
    padding: 35px 25px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--viora-border);
    border-radius: var(--viora-radius);
    text-align: center;
    transition: var(--viora-transition);
    cursor: pointer;
}

.integration-item-viora:hover {
    border-color: var(--viora-primary);
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--viora-shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 63, 226, 0.05) 100%);
}

.integration-icon-viora {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--viora-primary);
    transition: transform 0.3s ease;
}

.integration-icon-viora svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.integration-item-viora:hover .integration-icon-viora {
    transform: scale(1.2) rotate(5deg);
}

.integration-name-viora {
    font-weight: 600;
    font-size: 18px;
    color: var(--viora-primary);
    margin: 0;
}

/* ============================================
   CASES SECTION
   ============================================ */
.cases-section-viora {
    padding: 140px 0;
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    position: relative;
    overflow: visible;
}

.cases-section-viora::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cases-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.cases-header .section-title-viora {
    color: #ffffff;
}

.cases-header .section-subtitle-viora {
    color: rgba(255, 255, 255, 0.9);
}

.cases-grid-viora {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-card-viora {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--viora-radius-lg);
    transition: var(--viora-transition);
    text-align: center;
}

.case-card-viora:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.case-metric-viora {
    font-weight: 800;
    font-size: 72px;
    line-height: 1;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-metric-viora svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.case-label-viora {
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 15px;
}

.case-description-viora {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section-viora {
    padding: 120px 0;
    background: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.testimonials-section-viora::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 63, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 80px;
    max-width: 700px;
}

.testimonials-grid-viora {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card-viora {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: var(--viora-radius-lg);
    box-shadow: var(--viora-shadow);
    position: relative;
    transition: var(--viora-transition);
}

.testimonial-card-viora::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 35px;
    font-weight: 800;
    font-size: 100px;
    color: rgba(138, 63, 226, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-card-viora:hover {
    transform: translateY(-8px);
    box-shadow: var(--viora-shadow-lg);
}

.testimonial-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-metric-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 63, 226, 0.08) 0%, rgba(109, 107, 235, 0.08) 100%);
    border-radius: 16px;
}

.testimonial-metric-number {
    font-weight: 800;
    font-size: 36px;
    color: var(--viora-primary);
    margin: 0 0 8px;
    line-height: 1;
}

.testimonial-metric-label {
    font-weight: 400;
    font-size: 14px;
    color: var(--viora-text-light);
    margin: 0;
}

.testimonial-text-viora {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author-viora {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.author-avatar-viora {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.author-info-viora {
    flex: 1;
}

.author-name-viora {
    font-weight: 600;
    font-size: 18px;
    color: var(--viora-text);
    margin: 0 0 5px;
}

.author-role-viora {
    font-weight: 400;
    font-size: 15px;
    color: var(--viora-text-light);
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section-viora {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-section-viora::before,
.pricing-section-viora::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 63, 226, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-section-viora::before {
    left: -150px;
    top: 10%;
}

.pricing-section-viora::after {
    right: -150px;
    bottom: 10%;
}

.pricing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-grid-viora {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card-viora {
    padding: 45px 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid var(--viora-border);
    border-radius: var(--viora-radius-lg);
    text-align: center;
    transition: var(--viora-transition);
    position: relative;
}

.pricing-card-viora.featured {
    border-color: var(--viora-primary);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 63, 226, 0.08) 100%);
    transform: scale(1.08);
    box-shadow: var(--viora-shadow-lg);
}

.pricing-card-viora:hover {
    transform: translateY(-10px);
    box-shadow: var(--viora-shadow-lg);
    border-color: var(--viora-primary);
}

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

.pricing-badge-viora {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name-viora {
    font-weight: 700;
    font-size: 32px;
    color: var(--viora-text);
    margin: 0 0 15px;
}

.pricing-price-viora {
    font-weight: 800;
    font-size: 56px;
    color: var(--viora-primary);
    margin: 0 0 10px;
    line-height: 1;
}

.pricing-period-viora {
    font-weight: 400;
    font-size: 16px;
    color: var(--viora-text-light);
    margin: 0 0 35px;
}

.pricing-features-viora {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.pricing-features-viora li {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    padding: 12px 0;
    border-bottom: 1px solid var(--viora-border);
    display: flex;
    align-items: center;
}

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

.pricing-features-viora li::before {
    content: '✓';
    color: var(--viora-primary);
    font-weight: 700;
    margin-right: 12px;
    font-size: 18px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section-viora {
    padding: 120px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-viora::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, rgba(138, 63, 226, 0.03) 0%, transparent 100%);
}

.faq-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: left;
    margin-bottom: 80px;
    max-width: 800px;
}

.faq-container-viora {
    margin-top: 60px;
}

.faq-item-viora {
    margin-bottom: 25px;
    background: #ffffff;
    border: 2px solid var(--viora-border);
    border-radius: var(--viora-radius);
    overflow: hidden;
    transition: var(--viora-transition);
}

.faq-item-viora:hover {
    border-color: var(--viora-primary);
    box-shadow: 0 8px 30px rgba(138, 63, 226, 0.15);
}

.faq-item-viora.active {
    border-color: var(--viora-primary);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 63, 226, 0.03) 100%);
}

.faq-question-viora {
    padding: 30px 35px;
    font-weight: 600;
    font-size: 20px;
    color: var(--viora-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    transition: color 0.3s ease;
}

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

.faq-question-viora::after {
    content: '+';
    font-size: 32px;
    color: var(--viora-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    font-weight: 300;
}

.faq-item-viora.active .faq-question-viora::after {
    transform: rotate(45deg);
}

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

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

.faq-answer-content-viora {
    padding: 0 35px 30px;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8;
    color: var(--viora-text-light);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section-viora {
    padding: 140px 0;
    background: linear-gradient(135deg, #8a3fe2 0%, #6d6beb 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.final-cta-section-viora::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.cta-content-viora {
    text-align: center;
}

.cta-title-viora {
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.2;
    margin: 0 0 25px;
    color: #ffffff;
}

.cta-subtitle-viora {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0 0 50px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-form-viora {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.cta-input-viora,
.cta-textarea-viora {
    padding: 18px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    background: #ffffff;
    color: var(--viora-text);
    font-size: 17px;
    transition: var(--viora-transition);
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    min-height: 58px;
    line-height: 1.5;
}

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

.cta-input-viora::placeholder,
.cta-textarea-viora::placeholder {
    color: var(--viora-text-light);
    opacity: 0.7;
}

.cta-input-viora:focus,
.cta-textarea-viora:focus {
    outline: none;
    border-color: var(--viora-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(138, 63, 226, 0.1);
}

.cta-submit-viora {
    padding: 20px 50px;
    background: #ffffff;
    color: var(--viora-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: var(--viora-transition);
    box-shadow: 0 10px 30px rgba(138, 63, 226, 0.3);
    margin-top: 10px;
}

.cta-submit-viora:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 63, 226, 0.4);
    background: #f8f9fa;
}

.cta-privacy-viora {
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-privacy-viora a {
    color: #ffffff;
    text-decoration: underline;
    transition: var(--viora-transition);
}

.cta-privacy-viora a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content-viora {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-text-viora {
        text-align: center;
    }
    
    .hero-subtitle-viora {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons-viora {
        justify-content: center;
    }
    
    .how-works-grid,
    .benefits-grid-viora,
    .cases-grid-viora,
    .testimonials-grid-viora {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-viora {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-viora.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .viora-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content-viora {
        padding: 0 30px;
    }
    
    .how-works-section,
    .benefits-section-viora,
    .integrations-section-viora,
    .cases-section-viora,
    .testimonials-section-viora,
    .pricing-section-viora,
    .faq-section-viora,
    .final-cta-section-viora {
        padding: 80px 0;
    }
    
    .how-works-wrapper,
    .benefits-wrapper,
    .integrations-wrapper,
    .cases-wrapper,
    .testimonials-wrapper,
    .pricing-wrapper,
    .faq-wrapper,
    .cta-wrapper {
        padding: 0 30px;
    }
    
    .how-works-grid,
    .benefits-grid-viora,
    .cases-grid-viora,
    .testimonials-grid-viora,
    .pricing-grid-viora {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid-viora {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons-viora {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .cta-form-row {
        grid-template-columns: 1fr;
    }
    
    .how-works-header,
    .testimonials-header,
    .faq-header {
        text-align: center;
        max-width: 100%;
    }
    
    .pricing-card-viora.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .viora-hero {
        padding: 80px 0 40px;
    }
    
    .hero-content-viora {
        padding: 0 20px;
    }
    
    .how-works-section,
    .benefits-section-viora,
    .integrations-section-viora,
    .cases-section-viora,
    .testimonials-section-viora,
    .pricing-section-viora,
    .faq-section-viora,
    .final-cta-section-viora {
        padding: 60px 0;
    }
    
    .how-works-wrapper,
    .benefits-wrapper,
    .integrations-wrapper,
    .cases-wrapper,
    .testimonials-wrapper,
    .pricing-wrapper,
    .faq-wrapper,
    .cta-wrapper {
        padding: 0 20px;
    }
    
    .section-title-viora {
        font-size: 32px;
    }
    
    .section-subtitle-viora {
        font-size: 18px;
    }
}

/* ============================================
   MAILING LANDING PAGE STYLES
   Стили для страницы рассылок через мессенджеры
   ============================================ */

/* Info Section для мессенджеров */
.info-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.info-section.alt-bg {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-wrapper.reversed {
    direction: rtl;
}

.info-wrapper.reversed > * {
    direction: ltr;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-title {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--viora-text);
    margin: 0;
    line-height: 1.2;
}

.info-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--viora-text-light);
    margin: 0;
}

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

.info-visual-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--viora-border);
    border-radius: var(--viora-radius-lg);
    padding: 60px;
    text-align: center;
    transition: var(--viora-transition);
    min-width: 300px;
}

.info-visual-card:hover {
    border-color: var(--viora-primary);
    box-shadow: var(--viora-shadow-lg);
    transform: translateY(-8px);
}

.info-visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.info-visual-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.messenger-icon-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 24px;
}

.messenger-icon-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    padding: 24px;
}

.messenger-icon-max {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    padding: 24px;
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    position: relative;
}

.steps-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: var(--viora-radius-lg);
    box-shadow: var(--viora-shadow);
    transition: var(--viora-transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--viora-shadow-lg);
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--viora-primary), transparent);
}

.step-card:last-child::after {
    display: none;
}

/* Messenger Logos in Hero */
.messenger-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
}

.messenger-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--viora-border);
    border-radius: 50px;
    transition: var(--viora-transition);
}

.messenger-logo-item:hover {
    border-color: var(--viora-primary);
    box-shadow: var(--viora-shadow);
}

.messenger-logo-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.messenger-logo-item span {
    font-weight: 600;
    font-size: 14px;
    color: var(--viora-text);
}

/* Responsive для Mailing Landing */
@media (max-width: 1200px) {
    .info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-wrapper.reversed {
        direction: ltr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .info-section,
    .steps-section {
        padding: 80px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .messenger-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .info-visual-card {
        padding: 40px;
        min-width: auto;
    }
}

