﻿/* page.css */
/* Стили для SEO контента страницы восстановления ЛКП Refiller F5 */

/* Основные стили контейнера */
.seo-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #444;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

/* Заголовки */
.seo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.3;
}

.seo-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #0066cc;
    line-height: 1.3;
}

.seo-section {
    margin-bottom: 3rem;
}

/* Основной текст */
.seo-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.seo-highlight {
    color: #0066cc;
    font-weight: 600;
}

/* Карточки преимуществ */
.seo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.seo-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .seo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

.seo-card-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.seo-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #222;
}

.seo-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Процесс работы */
.seo-process {
    position: relative;
    padding-left: 40px;
    margin-top: 1.5rem;
}

    .seo-process::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #0066cc;
    }

.seo-process-step {
    position: relative;
    margin-bottom: 2.5rem;
}

    .seo-process-step:last-child {
        margin-bottom: 0;
    }

.seo-process-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
}

.seo-process-content {
    padding-left: 25px;
}

.seo-process-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

.seo-process-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Таблица сравнения */
.seo-comparison {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.seo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    border: 1px solid #ddd;
}

    .seo-comparison-table thead {
        background-color: #2c3e50;
    }

    .seo-comparison-table th {
        color: #fff;
        font-weight: 600;
        padding: 12px 15px;
        text-align: left;
        border: 1px solid #444;
    }

    .seo-comparison-table td {
        padding: 10px 15px;
        border: 1px solid #ddd;
    }

.seo-comparison-criterion {
    font-weight: 600;
    color: #222;
    background-color: #f8f9fa;
}

.seo-comparison-good {
    color: #28a745;
    font-weight: 600;
}

.seo-comparison-average {
    color: #ff9800;
    font-weight: 600;
}

.seo-comparison-bad {
    color: #dc3545;
    font-weight: 600;
}

.seo-comparison-neutral {
    color: #555;
    font-weight: 500;
}

/* Списки */
.seo-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

    .seo-list li {
        margin-bottom: 0.75rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }

.seo-list-highlight {
    color: #222;
    font-weight: 600;
}

/* Alert блок */
.seo-alert {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.seo-alert-title {
    color: #0d47a1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.seo-alert-list {
    color: #1565c0;
    margin-bottom: 0;
    padding-left: 1.5rem;
}

    .seo-alert-list li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

/* FAQ секция */
.seo-faq {
    margin-top: 1.5rem;
}

.seo-faq-item {
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

    .seo-faq-item:last-child {
        margin-bottom: 0;
    }

.seo-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #222;
}

.seo-faq-answer {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Заключение */
.seo-conclusion {
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.seo-conclusion-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #004085;
}

.seo-conclusion p {
    color: #004085;
    margin-bottom: 1rem;
}

.seo-conclusion-final {
    margin-bottom: 0;
    color: #004085;
}

/* Адаптивность */
@media (max-width: 768px) {
    .seo-title {
        font-size: 1.75rem;
    }

    .seo-subtitle {
        font-size: 1.3rem;
    }

    .seo-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .seo-process {
        padding-left: 30px;
    }

        .seo-process::before {
            left: 15px;
        }

    .seo-process-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .seo-process-content {
        padding-left: 20px;
    }

    .seo-comparison-table {
        font-size: 0.85rem;
    }

        .seo-comparison-table th,
        .seo-comparison-table td {
            padding: 8px 10px;
        }
}

@media (max-width: 576px) {
    .seo-title {
        font-size: 1.5rem;
    }

    .seo-subtitle {
        font-size: 1.2rem;
    }

    .seo-content p {
        font-size: 1rem;
    }

    .seo-process::before {
        left: 12px;
    }

    .seo-process-number {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .seo-card {
        padding: 1.25rem;
    }

    .seo-faq-item {
        padding: 1rem;
    }
}
