/* Fullscreen Banner */
.fullscreen-banner {
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle at 80% 20%, #1a3a7a 0%, #0a192f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}



.banner-container {
    max-width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 40px;
    padding: 0 20px; /* Добавил отступы по бокам, чтобы на малых экранах не прилипало к краям */
}

/* 1. Планшеты (до 1024px) - уменьшаем отступы и меняем пропорции, если нужно */
@media (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr 1fr; /* Делаем колонки равными */
        gap: 20px;
    }
}

/* 2. Планшеты и крупные смартфоны (до 768px) - перестраиваем в одну колонку */
@media (max-width: 768px) {
    .banner-container {
        grid-template-columns: 1fr; /* Одна колонка на всю ширину */
        text-align: center; /* Часто для баннеров лучше центрировать текст на мобилке */
        gap: 30px;
    }

    /* Если в первой колонке картинка, а во второй текст,
       на мобилке часто нужно менять их местами.
       Для этого используйте order: */
    .banner-content {
        order: 2;
    }
    .banner-visual {
        order: 1;
    }
}

/* 3. Маленькие смартфоны (до 480px) */
@media (max-width: 480px) {
    .banner-container {
        gap: 20px;
    }

    /* Дополнительно можно уменьшить заголовки, если они слишком большие */
    .banner-title {
        font-size: 24px;
    }
}


.fullscreen-banner__content {
    /*flex: 1;*/
    /*min-width: 280px;*/
    max-width: 1000px;
}

.fullscreen-banner__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.fullscreen-banner__title .highlight {
    color: #ffcc00;
}

.fullscreen-banner__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.qualifier-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.qualifier-box .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    font-size: 16px;
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-size: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.fullscreen-banner__visual {
    flex: 0.8;
    min-width: 280px;
    max-width: 450px;
    display: flex;
    justify-content: center;
}

.fullscreen-banner__visual img {
    width: 100%;
    max-width: 480px;
    height: auto;

}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .fullscreen-banner {
        padding: 100px 40px 60px 40px;
        flex-direction: column;
        text-align: center;
    }

    .fullscreen-banner__title {
        font-size: 42px;
    }

    .fullscreen-banner__subtitle {
        font-size: 16px;
    }

    .qualifier-box {
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .fullscreen-banner__visual {
        max-width: 350px;
    }

    .fullscreen-banner__visual img {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .fullscreen-banner {
        padding: 90px 20px 40px 20px;
    }

    .fullscreen-banner__title {
        font-size: 32px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .fullscreen-banner__visual img {
        max-width: 250px;
    }
}

html {
    scroll-behavior: smooth;
}




     /* Light Version of Pain Section */
 .pain-section.light-version {
     width: 100%;
     background: #f8fafc; /* Светло-серый «спокойный» фон */
     color: #1e293b; /* Глубокий темный текст */
     padding: 100px 20px;
     position: relative;
 }

/* Убираем тяжелые паттерны, оставляем чистоту */
.pain-section.light-version::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pain-container {
    max-width: 1520px;
    margin: 0 auto;
}

.pain-header {
    text-align: center;
    margin-bottom: 60px;
}

.pain-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pain-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
}

.pain-title .highlight {
    color: #0f172a;
    background: linear-gradient(180deg,transparent 65%, #ffcc00 65%); /* Эффект маркера */
    display: inline-block;
    padding: 0 5px;
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pain-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #ffcc00;
}

.pain-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.pain-text {
    font-size: 17px;
    line-height: 1.4;
    color: #334155;
    font-weight: 600;
}

.pain-conclusion {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.conclusion-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.conclusion-text {
    font-size: 20px;
    color: #475569;
    text-align: center;
}

.conclusion-text strong {
    color: #0f172a;
}

.pain-solution {
    text-align: center;
    padding: 40px;
    background: #0f172a; /* Делаем инверсию для контраста в конце блока */
    color: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.pain-solution p {
    font-size: 19px;
    margin: 0;
    opacity: 0.9;
}

.solution-highlight {
    color: #ffcc00;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .pain-list { grid-template-columns: 1fr; }
    .pain-title { font-size: 36px; }
    .pain-conclusion { flex-direction: column; }
}




     /* Dark Premium Approach Section */
 .approach-section.dark-premium {
     width: 100%;
     background-color: #020617; /* Уходим от синего в глубокий черный/ночной */
     background-image:
         radial-gradient(circle at 0% 0%, rgba(30, 58, 138, 0.15) 0%, transparent 40%),
         radial-gradient(circle at 100% 100%, rgba(255, 204, 0, 0.03) 0%, transparent 40%);
     color: white;
     padding: 120px 20px;
     position: relative;
     overflow: hidden;
 }

/* Мягкое золотистое свечение сверху */
.approach-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.approach-container {
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.approach-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.approach-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.approach-title .highlight {
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.approach-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

.approach-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.approach-description strong {
    color: #ffcc00;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопе */
    gap: 30px;
}

/* Карточки с эффектом стекла (Glassmorphism) */
.approach-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.02));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Золотая линия снизу при наведении */
.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #ffcc00;
    border-radius: 4px 4px 0 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.approach-card:hover .card-hover-line {
    width: 40%;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .approach-section.dark-premium { padding: 80px 20px; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-title { font-size: 36px; }
}




     /* ======================================================
        SEO CASES SECTION - 4 блок
        ====================================================== */

 .seocases-section.seocases-light {
     width: 100%;
     background: #f8fafc;
     color: #1e293b;
     padding: 100px 20px;
     position: relative;
 }

.seocases-section.seocases-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.seocases-container {
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header - шрифты как в pain-header */
.seocases-header {
    text-align: center;
    margin-bottom: 60px;
}

.seocases-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;  /* Как в pain-badge */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.seocases-title {
    font-size: 52px;    /* Как в pain-title */
    font-weight: 900;   /* Как в pain-title */
    line-height: 1.1;   /* Как в pain-title */
    color: #0f172a;
    margin-bottom: 20px;
}

.seocases-title .seocases-highlight {
    color: #0f172a;
    background: linear-gradient(180deg, transparent 65%, #ffcc00 65%);
    display: inline-block;
    padding: 0 5px;
}

.seocases-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;   /* Regular как в pain-subtitle */
}

/* Grid */
.seocases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Card - стили как в pain-item */
.seocases-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.seocases-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #ffcc00;
}

/* Card Image */
.seocases-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.seocases-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.seocases-card:hover .seocases-card-image img {
    transform: scale(1.03);
}

/* Card Badge */
.seocases-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffcc00;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.seocases-card-content {
    padding: 24px;
}

.seocases-card-title {
    font-size: 20px;
    font-weight: 800;   /* Жирный как в pain-text (но там 600, тут 800 для заголовка) */
    color: #0f172a;
    margin: 0 0 6px 0;
}

.seocases-card-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 400;   /* Regular */
}



.seocases-stat-period {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;   /* Regular */
}



.seocases-footer strong {
    color: #ffcc00;
    font-weight: 700;   /* Как в solution-highlight */
}

.seocases-footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 700;   /* Как в solution-highlight */
    border-bottom: 1px solid rgba(255, 204, 0, 0.4);
    transition: all 0.2s ease;
}

.seocases-footer a:hover {
    color: #ffcc00;
    border-bottom-color: #ffcc00;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .seocases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seocases-section.seocases-light {
        padding: 80px 20px;
    }

    .seocases-title {
        font-size: 36px;  /* Как в pain-title на мобилках */
    }

    .seocases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


}

/* 5. Process Section - ЖИРНЫЕ ЖЕЛТЫЕ ЛИНИИ */
.process-section {
    background: radial-gradient(circle at 80% 50%, #1a2a4a 0%, #0a0f1a 100%);
    padding: 80px 80px;
    position: relative;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.process-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.process-title .highlight {
    color: #ffcc00;
}

.process-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

/* Сетка 3x2 */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    position: relative;
}

/* ГОРИЗОНТАЛЬНЫЕ ЛИНИИ между шагами в одном ряду */
.step-item {
    position: relative;
}

/* Линия между 1→2 и 2→3 в первом ряду */
.step-item:nth-child(1)::after,
.step-item:nth-child(2)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background: #ffcc00;
    opacity: 0.6;
    border-radius: 2px;
}

/* Линия между 4→5 и 5→6 во втором ряду */
.step-item:nth-child(4)::after,
.step-item:nth-child(5)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background: #ffcc00;
    opacity: 0.6;
    border-radius: 2px;
}

/* ВЕРТИКАЛЬНЫЕ ЛИНИИ между рядами */
.step-item:nth-child(3)::before {
    display: none;

}

/* Убираем линии у последнего элемента */
.step-item:nth-child(3)::after {
    display: none;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .process-section {
        padding: 60px 40px;
    }

    .process-grid {
        gap: 30px 20px;
    }

    .step-item:nth-child(1)::after,
    .step-item:nth-child(2)::after,
    .step-item:nth-child(4)::after,
    .step-item:nth-child(5)::after {
        right: -20px;
        width: 20px;
    }

    .step-item:nth-child(3)::before {
        bottom: -30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* На мобилках убираем все линии */
    .step-item::after,
    .step-item::before {
        display: none !important;
    }

    .step-item {
        padding: 18px 20px;
    }

    .step-number {
        font-size: 36px;
        min-width: 55px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}

/* Стили самих карточек */
.step-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-3px);
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffcc00;
    opacity: 0.5;
    min-width: 70px;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    opacity: 1;
    transform: scale(1.05);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* 6. Timeline Section */
/* 6. Timeline Section - СВЕТЛАЯ ТЕМА */
.timeline-section.light-version {
    width: 100%;
    background: #f8fafc;
    color: #1e293b;
    padding: 100px 20px;
    position: relative;
}

.timeline-section.light-version::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.timeline-title .highlight {
    color: #0f172a;
    background: linear-gradient(180deg, transparent 65%, #ffcc00 65%);
    display: inline-block;
    padding: 0 5px;
}

.timeline-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Горизонтальные этапы */
.timeline-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.timeline-step {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.timeline-step:hover {
    transform: translateY(-5px);
    border-color: #ffcc00;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-period {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.timeline-step:hover .timeline-period {
    color: #e67e22;
}

.timeline-desc {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

/* Желтые стрелки между этапами */
.timeline-arrow {
    font-size: 32px;
    color: #ffcc00;
    opacity: 0.6;
    font-weight: 700;
}

/* Нижние заметки */
.timeline-note {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.note-box {
    flex: 1;
    min-width: 260px;
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.note-box:hover {
    transform: translateY(-3px);
}

.note-ads {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.note-ads:hover {
    border-color: #ffcc00;
}

.note-seo {
    background: #0f172a;
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: white;
}

.note-seo .note-icon {
    color: #ffcc00;
}

.note-seo p {
    color: rgba(255, 255, 255, 0.9);
}

.note-seo strong {
    color: #ffcc00;
}

.note-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.note-box p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.note-ads p {
    color: #334155;
}

.note-ads strong {
    color: #0f172a;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .timeline-section.light-version {
        padding: 80px 40px;
    }

    .timeline-title {
        font-size: 42px;
    }

    .timeline-steps {
        gap: 20px;
    }

    .timeline-step {
        padding: 24px;
        min-width: 160px;
    }

    .timeline-period {
        font-size: 22px;
    }

    .timeline-arrow {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .timeline-section.light-version {
        padding: 60px 20px;
    }

    .timeline-title {
        font-size: 36px;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-step {
        width: 100%;
        max-width: 280px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }

    .timeline-note {
        flex-direction: column;
        gap: 16px;
    }

    .note-box {
        min-width: auto;
    }
}
/* 7. Filter Section */
.filter-section {
    background: radial-gradient(circle at 80% 20%, #1a2a4a 0%, #0a0f1a 100%);
    padding: 80px 80px;
}

.filter-container {
    max-width: 1520px;
    margin: 0 auto;
}

.filter-header {
    text-align: center;
    margin-bottom: 50px;
}

.filter-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.filter-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.filter-title .highlight {
    color: #ffcc00;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.filter-good, .filter-bad {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 32px;
}

.filter-good {
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.filter-bad {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.filter-good-header, .filter-bad-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-weight: bold;
}

.cross-icon {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-weight: bold;
}

.filter-good h3, .filter-bad h3 {
    color: white;
    font-size: 20px;
}

.filter-good ul, .filter-bad ul {
    list-style: none;
    padding-left: 0;
}

.filter-good li, .filter-bad li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.filter-good li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.filter-bad li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
}

/* 8. Leadform Section */
/* 8. Leadform Section - СВЕТЛАЯ ТЕМА */
.leadform-section.light-version {
    width: 100%;
    background: #f8fafc;
    color: #1e293b;
    padding: 100px 20px;
    position: relative;
}

.leadform-section.light-version::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.leadform-container {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.leadform-content {
    flex: 1;
}

.leadform-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.leadform-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leadform-title .highlight {
    color: #0f172a;
    background: linear-gradient(180deg, transparent 65%, #ffcc00 65%);
    display: inline-block;
    padding: 0 5px;
}

.leadform-desc {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Форма */
.leadform-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.leadform-form:hover {
    border-color: #ffcc00;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

/* Чекбокс */
.form-checkbox {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffcc00;
}

.checkbox-text {
    font-size: 13px;
    color: #64748b;
}

.checkbox-text a {
    color: #0f172a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox-text a:hover {
    color: #ffcc00;
}

/* ReCaptcha */
.form-recaptcha {
    margin-bottom: 24px;
}

/* Кнопка */
.form-button {
    width: 100%;
    padding: 16px;
    background: #ffcc00;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

/* Визуальная часть */
.leadform-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.visual-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    transition: all 0.3s ease;
}

.visual-placeholder:hover {
    border-color: #ffcc00;
    transform: scale(1.02);
}

/* Flash сообщения */
#seoaudit3_forms_flash {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
}

#seoaudit3_forms_flash .alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 12px;
    border-radius: 12px;
}

#seoaudit3_forms_flash .alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 12px;
    border-radius: 12px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .leadform-section.light-version {
        padding: 80px 40px;
    }

    .leadform-title {
        font-size: 36px;
    }

    .leadform-container {
        flex-direction: column;
        gap: 40px;
    }

    .leadform-visual {
        order: -1;
    }

    .visual-placeholder {
        width: 260px;
        height: 260px;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .leadform-section.light-version {
        padding: 60px 20px;
    }

    .leadform-title {
        font-size: 32px;
    }

    .leadform-desc {
        font-size: 16px;
    }

    .leadform-form {
        padding: 24px;
    }

    .visual-placeholder {
        width: 200px;
        height: 200px;
        font-size: 60px;
    }
}

/* 9. FAQ Section */
.faq-section {
    background: radial-gradient(circle at 80% 20%, #1a2a4a 0%, #0a0f1a 100%);
    padding: 80px 80px;
}

.faq-container {
    max-width: 1520px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.faq-title .highlight {
    color: #ffcc00;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 204, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-weight: bold;
    font-size: 18px;
}

.faq-question h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding-left: 50px;
}

/* 10. Final Section */
/* 10. Final Section - СВЕТЛАЯ ТЕМА */
.final-section.light-version {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Декоративные элементы */
.final-section.light-version::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-section.light-version::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-content {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 60px 48px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Эффект при наведении на весь блок */
.final-content:hover {
    transform: translateY(-8px);
    border-color: #ffcc00;
    box-shadow: 0 30px 45px -15px rgba(255, 204, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Декоративная линия сверху */
.final-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffcc00, #ffb800, #ffcc00);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.final-content:hover::before {
    transform: scaleX(1);
}

.final-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #e67e22;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.final-content:hover .final-badge {
    background: #fffbeb;
    border-color: #ffcc00;
    color: #0f172a;
}

.final-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-title .highlight {
    color: #0f172a;
    background: linear-gradient(180deg, transparent 65%, #ffcc00 65%);
    display: inline-block;
    padding: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}

.final-content:hover .final-title .highlight {
    background: linear-gradient(180deg, transparent 50%, #ffcc00 50%);
}

.final-desc {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 36px;
    line-height: 1.5;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопки */
.final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-button {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.final-button.primary {
    background: #ffcc00;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.final-button.primary:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.final-button.secondary {
    background: transparent;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.final-button.secondary:hover {
    border-color: #ffcc00;
    background: #fffbeb;
    transform: translateY(-3px);
}

/* Гарантия */
.final-guarantee {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    display: inline-block;
}

/* Адаптивность */
@media (max-width: 768px) {
    .final-section.light-version {
        padding: 60px 20px;
    }

    .final-content {
        padding: 40px 24px;
    }

    .final-title {
        font-size: 32px;
    }

    .final-desc {
        font-size: 16px;
    }

    .final-button {
        padding: 14px 28px;
        font-size: 14px;
    }

    .final-buttons {
        gap: 12px;
    }

    .final-guarantee {
        font-size: 12px;
    }
}

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

    .final-button {
        width: 100%;
        text-align: center;
    }
}

/* ======================================================
АДАПТИВ ДЛЯ СЕКЦИИ 7 (FILTER SECTION)
====================================================== */
@media (max-width: 1024px) {
    .filter-section {
        padding: 60px 40px;
    }

    .filter-title {
        font-size: 42px;
    }

    .filter-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .filter-section {
        padding: 50px 20px;
    }

    .filter-title {
        font-size: 32px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-good, .filter-bad {
        padding: 24px;
    }

    .filter-good h3, .filter-bad h3 {
        font-size: 18px;
    }

    .filter-good li, .filter-bad li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .check-icon, .cross-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* ======================================================
   АДАПТИВ ДЛЯ СЕКЦИИ 9 (FAQ SECTION)
   ====================================================== */
@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 40px;
    }

    .faq-title {
        font-size: 42px;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-question h4 {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-left: 44px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 13px;
        padding-left: 44px;
    }

    .seocases-card-image {
        height: auto;
    }
    .seocases-card-image img {
        object-fit: contain;
    }
}

/* ======================================================
   ДОПОЛНИТЕЛЬНЫЙ АДАПТИВ ДЛЯ ВСЕХ СЕКЦИЙ
   ====================================================== */
@media (max-width: 480px) {
    /* Общие отступы */
    .pain-section.light-version,
    .seocases-section.seocases-light,
    .timeline-section.light-version,
    .leadform-section.light-version,
    .final-section.light-version {
        padding: 40px 16px;
    }

    /* Заголовки */
    .pain-title,
    .seocases-title,
    .timeline-title,
    .leadform-title,
    .final-title {
        font-size: 28px;
    }

    /* Подзаголовки */
    .pain-subtitle,
    .seocases-subtitle,
    .timeline-subtitle,
    .leadform-desc,
    .final-desc {
        font-size: 14px;
    }

    /* Badge */
    .pain-badge,
    .seocases-badge,
    .timeline-badge,
    .leadform-badge,
    .final-badge {
        font-size: 11px;
        padding: 4px 16px;
    }
}




     /* ======================================================
    MODAL WINDOW - Светлая тема
    ====================================================== */

     /* Modal overlay */
 .seo-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1000;
     align-items: center;
     justify-content: center;
 }

.seo-modal.active {
    display: flex;
}

.seo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

/* Modal container */
.seo-modal-container {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

/* Close button */
.seo-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s ease;
    line-height: 1;
}

.seo-modal-close:hover {
    color: #0f172a;
    transform: scale(1.1);
}

/* Modal header */
.seo-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.seo-modal-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #e67e22;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.seo-modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.seo-modal-title .highlight {
    color: #0f172a;
    background: linear-gradient(180deg, transparent 65%, #ffcc00 65%);
    display: inline-block;
    padding: 0 5px;
}

.seo-modal-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Form */
.seo-modal-form {
    margin-top: 8px;
}

.seo-modal-form-group {
    margin-bottom: 18px;
}

.seo-modal-input {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #1e293b;
    font-size: 15px;
    transition: all 0.3s ease;
}

.seo-modal-input:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.seo-modal-input::placeholder {
    color: #94a3b8;
}

/* Checkbox */
.seo-modal-checkbox {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffcc00;
}

.checkbox-text {
    font-size: 12px;
    color: #64748b;
}

.checkbox-text a {
    color: #0f172a;
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: #ffcc00;
}

/* ReCaptcha */
.seo-modal-recaptcha {
    margin-bottom: 24px;
}

/* Submit button */
.seo-modal-button {
    width: 100%;
    padding: 16px;
    background: #ffcc00;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seo-modal-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

/* Modal footer */
.seo-modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.seo-modal-footer p {
    font-size: 13px;
    color: #94a3b8;
}

.seo-modal-footer a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.seo-modal-footer a:hover {
    color: #ffcc00;
}

/* Flash messages */
#seoaudit3_forms_flash_modal {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
}

#seoaudit3_forms_flash_modal .alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 12px;
    border-radius: 12px;
}

#seoaudit3_forms_flash_modal .alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 12px;
    border-radius: 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .seo-modal-container {
        padding: 32px 24px;
        width: 95%;
    }

    .seo-modal-title {
        font-size: 24px;
    }

    .seo-modal-input {
        padding: 12px 16px;
        font-size: 14px;
    }
}

