/* Специфичные стили для страницы AI-автодозвона */
/* Примечание: стили футера в основном файле styles.css */

.features-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e2570, #3a2f8a);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #2e2570;
}

.feature-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-card h3 {
    color: #2e2570;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    display: inline-block;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

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

.feature-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e2570;
    font-weight: bold;
}

/* Секция вариантов использования */
.use-cases-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e2570;
    font-weight: 700;
    font-size: 32px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.use-case-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.use-case-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.use-case-header {
    background: linear-gradient(135deg, #2e2570 0%, #3a2f8a 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
}

.use-case-body {
    padding: 20px;
}

.use-case-body p {
    color: #666;
    margin-bottom: 15px;
}

/* Стили для секции языков */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.language-item {
    text-align: center;
    font-weight: 600;
    color: #2e2570;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.language-item:hover {
    background: #f0eef9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Секция CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2e2570 0%, #3a2f8a 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2e2570;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2e2570;
}

.btn:hover {
    background: #3a2f8a;
}

.btn-outline {
    background: transparent;
    color: #2e2570;
}

.btn-outline:hover {
    background: #f0eef9;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 24px;
    }
}

/* Адаптивные стили для языков */
@media (max-width: 992px) {
    .languages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 