/* --- АНИМАЦИИ --- */
.fade-in { animation: fadeInPage 0.5s ease-out forwards; opacity: 0; }
@keyframes fadeInPage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.blink-animation { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(187, 134, 252, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(187, 134, 252, 0); }
    100% { box-shadow: 0 0 0 0 rgba(187, 134, 252, 0); }
}

/* --- ОБЩАЯ ОБЕРТКА --- */
.info-wrapper {
    padding-bottom: 40px;
    color: #fff;
}

/* --- 1. HERO SECTION --- */
.info-hero {
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Фоновое свечение */
.hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(187,134,252,0.4) 0%, rgba(0,0,0,0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.info-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-subtitle {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 32px;
    line-height: 1.5;
}

.info-stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}

.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 20px; font-weight: bold; color: white; }
.stat-desc { font-size: 11px; color: var(--text-grey); text-transform: uppercase; margin-top: 4px; }

/* --- 2. PAIN POINTS (КАРТОЧКИ) --- */
.info-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr; /* На мобильном одна колонка */
    gap: 16px;
}

.pain-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.2s;
}

.pain-card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.05); }
.pain-icon { font-size: 32px; margin-bottom: 12px; }
.pain-card h3 { font-size: 18px; margin-bottom: 8px; color: #ff4d4d; /* Красный акцент для боли */ }
.pain-card p { font-size: 14px; color: var(--text-grey); line-height: 1.4; }

/* --- 3. TIMELINE (STEPS) --- */
.steps-timeline {
    position: relative;
    padding-left: 20px;
    margin-top: 20px;
}

/* Вертикальная линия */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.step-item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 32px;
}

.step-num {
    position: absolute;
    left: -14px; /* Центрируем на линии */
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: var(--primary);
    z-index: 2;
}

.step-content h4 { font-size: 16px; color: white; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-grey); }

.accent-text { color: var(--primary); }

/* --- 4. COMPARISON TABLE --- */
.comparison-table {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    font-size: 13px;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comp-row:last-child { border-bottom: none; }

.header-row {
    background: rgba(255,255,255,0.05);
    font-weight: bold;
    color: var(--text-grey);
}

.comp-col {
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.comp-col:first-child { 
    justify-content: flex-start; 
    text-align: left; 
    color: var(--text-grey);
    padding-left: 16px;
}

.winner { color: #00e676; font-weight: bold; } /* Зеленый для победителя */
.vs-text { font-size: 12px; color: var(--text-grey); background: #333; padding: 4px 8px; border-radius: 10px; }

/* --- 5. BENEFITS LIST --- */
.bg-gradient {
    background: linear-gradient(180deg, rgba(187,134,252,0.05) 0%, rgba(0,0,0,0) 100%);
    border-radius: 20px;
    margin: 20px 0;
    padding: 24px 16px;
}

.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
}
.benefit-list li:last-child { margin-bottom: 0; }
.benefit-list strong { color: white; }

/* --- 6. FAQ --- */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

/* Кастомная стрелка для details */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary);
    font-weight: bold;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 16px 16px 16px;
    margin: 0;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.5;
}

/* --- 7. FOOTER CTA --- */
.info-footer {
    text-align: center;
    padding: 60px 0 20px 0;
}
.info-footer h2 { font-size: 24px; margin-bottom: 24px; }

.action-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.4);
    transition: transform 0.2s;
}
.action-btn:active { transform: scale(0.95); }

.large-btn { width: 100%; max-width: 300px; padding: 18px; font-size: 18px; }

.footer-note { font-size: 12px; color: var(--text-grey); margin-top: 12px; }