/* Дополнительные стили для лендинга AI-агента */

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.problems-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.problems, .solutions {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.problems h3, .solutions h3 {
    font-size: 1.3em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.problems ul, .solutions ul {
    list-style: none;
    padding: 0;
}

.problems li, .solutions li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.problems li:before {
    content: "🔴";
    position: absolute;
    left: 0;
    top: 0;
}

.solutions li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

.offer {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 780px) {
    .problems-solutions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems, .solutions {
        padding: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .offer {
        padding: 1rem;
        font-size: 1em;
    }
}

/* Анимации для карточек */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Стили для иконок в карточках безопасности */
.card .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

/* Улучшенные стили для CTA секции */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-section button {
    background: #ff6b6b;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section button:hover {
    background: #ee5a24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
}

/* Стили для заголовков с эмодзи */
h1, h2 {
    position: relative;
}

h1::before, h2::before {
    content: attr(data-emoji);
    margin-right: 0.5rem;
}

/* Дополнительные стили для техно-секции */
.tech-category {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
}

.tech-category h4 {
    color: white;
}

.tech-category p {
    color: rgba(255, 255, 255, 0.9);
}

/* Стили для проблем и решений на мобильных */
@media (max-width: 520px) {
    .problems li, .solutions li {
        font-size: 0.9em;
        padding-left: 1.2rem;
    }
    
    .problems li:before, .solutions li:before {
        font-size: 0.8em;
    }
} 