/* ========================================
   SEO Information Page Styles
   Уникальные классы — без конфликтов с глобальными стилями
   ======================================== */

/* ---------- Базовые переменные ---------- */
:root {
    --seo-dark: #052A40;
    --seo-accent: #20B1C7;
    --seo-orange: #F9A826;
    --seo-pink: #F91B60;
    --seo-gray-light: #f8f9fa;
    --seo-gray-border: #E7EEF3;
    --seo-text-dark: #052A40;
    --seo-text-light: #5F8296;
    --seo-white: #fff;
}

/* ---------- Обертки (без container/content) ---------- */
.seo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.seo-section-wrap {
    padding: 60px 0;
}

.seo-section-sm {
    padding: 40px 0;
}

.seo-section-lg {
    padding: 80px 0;
}

.seo-bg-light {
    background: var(--seo-gray-light);
}

.seo-bg-dark {
    background: var(--seo-dark);
}

.seo-bg-gradient {
    background: linear-gradient(135deg, #0B2B40 0%, #1A4A66 100%);
}

/* ---------- Типография ---------- */
.seo-min-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.44px;
    text-transform: uppercase;
    color: var(--seo-text-light);
    margin-bottom: 16px;
}

.seo-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--seo-text-dark);
    margin-bottom: 48px;
}

.seo-title-white {
    color: var(--seo-white);
}

.seo-title-center {
    text-align: center;
}

/* ---------- Hero баннер ---------- */
.seo-hero {
    background: linear-gradient(135deg, #0B2B40 0%, #1A4A66 100%);
    padding: 60px 0;
}

.seo-hero-inner {
    max-width: 800px;
}

.seo-hero h1 {
    color: var(--seo-white);
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.seo-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
}

/* ---------- Кнопки ---------- */
.seo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    background: none;
}

.seo-btn-primary {
    background: var(--seo-orange);
    color: var(--seo-white);
}

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

.seo-btn-secondary {
    background: var(--seo-dark);
    color: var(--seo-white);
    box-shadow: 0px 0px 20px 15px var(--seo-dark) inset;
}

.seo-btn-pink {
    background: var(--seo-pink);
    color: var(--seo-white);
    box-shadow: 0px 0px 20px 15px var(--seo-pink) inset;
}

/* ---------- Grid сетки ---------- */
.seo-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.seo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.seo-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* ---------- Карточки ---------- */
.seo-card {
    background: var(--seo-white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.seo-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.seo-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--seo-text-dark);
}

.seo-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--seo-text-dark);
}



/* ---------- Team Grid ---------- */
.seo-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.seo-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.seo-team-member {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.seo-team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.seo-team-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--seo-text-dark);
    margin-bottom: 4px;
}

.seo-team-role {
    font-size: 12px;
    color: var(--seo-text-light);
}

/* ---------- Step блок (сравнение SEO vs контекст) ---------- */
.seo-step-list-wrap {
    display: flex;
    flex-direction: column;
}

.seo-step-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    border-top: 1px solid var(--seo-gray-border);
    padding: 40px 0;
}

.seo-step-num {
    font-size: 16px;
    font-weight: 500;
    color: var(--seo-text-light);
    min-width: 60px;
}

.seo-step-name {
    flex: 1;
    font-size: 32px;
    font-weight: 600;
    color: var(--seo-text-dark);
}

.seo-step-list {
    flex: 1;
    list-style: disc;
    padding-left: 20px;
    color: var(--seo-text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.seo-step-list li {
    margin-bottom: 12px;
}

/* ---------- Work Step (аккордеон) ---------- */
.seo-accordion-wrap {
    display: flex;
    flex-direction: column;
}

.seo-accordion-item {
    border-top: 1px solid var(--seo-gray-border);
    padding: 24px 0;
}

.seo-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 24px;
}

.seo-accordion-num {
    font-size: 16px;
    font-weight: 500;
    color: var(--seo-text-light);
    min-width: 60px;
}

.seo-accordion-title {
    flex: 1;
    font-size: 28px;
    font-weight: 600;
    color: var(--seo-text-dark);
    transition: color 0.3s ease;
}

.seo-accordion-header:hover .seo-accordion-title {
    background: linear-gradient(45deg, #6339EB 30%, #3CE9E7 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-accordion-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.seo-accordion-item.active .seo-accordion-arrow {
    transform: rotate(180deg);
}

.seo-accordion-body {
    display: none;
    padding-top: 24px;
    margin-left: 60px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--seo-text-dark);
}

.seo-accordion-item.active .seo-accordion-body {
    display: block;
}

/* ---------- Feedback блок ---------- */
.seo-feedback {
    background-image: url('/bitrix/templates/creative/images/turnkey-website/wave.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.seo-feedback-grid {
    display: grid;
    grid-template-columns: 276px 1fr;
    gap: 52px;
    align-items: start;
}

.seo-feedback-left {
    text-align: center;
}

.seo-feedback-left img {
    width: 236px;
    height: 236px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
}

.seo-feedback-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 4px;
}

.seo-feedback-role {
    font-size: 15px;
    color: var(--seo-text-light);
}

.seo-feedback-message {
    position: relative;
    background: var(--seo-white);
    border-radius: 32px 32px 32px 0;
    padding: 48px 36px;
    margin-bottom: 32px;
    box-shadow: 0px 12px 55px 0px rgba(131, 166, 185, 0.25);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--seo-text-dark);
}

.seo-feedback-message svg {
    position: absolute;
    bottom: -35px;
    left: 0;
}

/* ---------- Compare блок ---------- */
.seo-compare-result {
    text-align: center;
    padding: 48px;
    background: rgba(32, 177, 199, 0.1);
    border-radius: 32px;
    margin-top: 40px;
}

.seo-compare-result span {
    color: var(--seo-orange);
    font-weight: 600;
}

.seo-compare-result-text {
    font-size: 32px;
    font-weight: 500;
    color: var(--seo-text-dark);
}

/* ---------- Форма ---------- */
.seo-form-block {
    background: var(--seo-dark);
    padding: 60px 0;
    text-align: center;
}

.seo-form-title {
    color: var(--seo-white);
    font-size: 32px;
    margin-bottom: 30px;
}

.seo-form-fields {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seo-form-fields input {
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
}

.seo-form-fields button {
    background: var(--seo-orange);
    color: var(--seo-white);
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
    .seo-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-step-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .seo-step-num {
        min-width: auto;
    }
    
    .seo-feedback-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .seo-feedback-left {
        display: flex;
        align-items: center;
        gap: 24px;
        text-align: left;
    }
    
    .seo-feedback-left img {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .seo-section-wrap {
        padding: 40px 0;
    }
    
    .seo-hero h1 {
        font-size: 36px;
    }
    
    .seo-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .seo-info-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .seo-accordion-title {
        font-size: 20px;
    }
    
    .seo-accordion-body {
        margin-left: 0;
    }
    
    .seo-feedback-message {
        font-size: 20px;
        padding: 24px;
    }
    
    .seo-compare-result-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .seo-grid-2,
    .seo-grid-3,
    .seo-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .seo-hero h1 {
        font-size: 28px;
    }
    
    .seo-accordion-title {
        font-size: 18px;
    }
}

/* ---------- Что такое SEO + Гарантии (единый блок) ---------- */
.seo-about-wrap {
    background: var(--seo-white);
}

.seo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.seo-about-item {
    background: var(--seo-white);
    border-radius: 24px;
}

.seo-about-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--seo-text-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.seo-about-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--seo-accent);
    border-radius: 3px;
}

.seo-about-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--seo-text-dark);
    margin-bottom: 16px;
}

.seo-about-text strong {
    color: var(--seo-dark);
}

/* Гарантии внутри левой колонки */
.seo-guarantees-compact {
    margin-top: 32px;
}

.seo-guarantee-compact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--seo-gray-border);
}

.seo-guarantee-compact-item:last-child {
    border-bottom: none;
}

.seo-guarantee-compact-icon {
    font-size: 32px;
    flex-shrink: 0;
    background: var(--seo-gray-light);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.seo-guarantee-compact-content {
    flex: 1;
}

.seo-guarantee-compact-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 6px;
}

.seo-guarantee-compact-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--seo-text-light);
}

.seo-guarantee-compact-badge {
    display: inline-block;
    background: var(--seo-accent);
    color: var(--seo-white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .seo-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .seo-about-title {
        font-size: 24px;
    }
}

/* ---------- Hero с анимированными прямоугольниками ---------- */
.seo-hero {
    position: relative;
    background: linear-gradient(135deg, #0F2C3D 0%, #1B3A4D 25%, #2D5A6E 50%, #1B3A4D 75%, #0F2C3D 100%);
    background-size: 200% 200%;
    animation: seoGradientShift 12s ease infinite;
    padding: 80px 0;
    overflow: hidden;
    isolation: isolate;
}

@keyframes seoGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Контейнер для анимированных прямоугольников */
.seo-hero-animated-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
    z-index: 1;
    pointer-events: none;
}

.seo-animated-bar {
    width: 40px;
    background: linear-gradient(180deg, rgba(32, 177, 199, 0.7) 0%, rgba(32, 177, 199, 0.15) 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    transition: transform 0.05s linear, height 0.05s linear;
}

.seo-animated-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
}

/* Анимированные круги на фоне */
.seo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.seo-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(32, 177, 199, 0.08);
    filter: blur(60px);
    pointer-events: none;
}

.seo-hero-bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: seoFloat 20s ease-in-out infinite;
}

.seo-hero-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -120px;
    background: rgba(249, 168, 38, 0.08);
    animation: seoFloat 25s ease-in-out infinite reverse;
}

.seo-hero-bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 20%;
    background: rgba(249, 27, 96, 0.06);
    animation: seoFloat 18s ease-in-out infinite 2s;
}

@keyframes seoFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Контент hero поверх анимации */
.seo-hero .seo-wrapper,
.seo-hero-inner {
    position: relative;
    z-index: 10;
}

/* Выезжающая анимация для текста */
.seo-hero h1 {
    animation: seoSlideUp 0.8s ease-out;
}

.seo-hero-subtitle {
    animation: seoSlideUp 0.8s ease-out 0.2s both;
}

.seo-hero .seo-btn {
    animation: seoSlideUp 0.8s ease-out 0.4s both;
}

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

/* Адаптив */
@media (max-width: 768px) {
    .seo-hero {
        padding: 50px 0;
    }
    
    .seo-animated-bar {
        width: 20px;
    }
    
    .seo-hero-animated-bars {
        padding: 0 3%;
    }
    
    .seo-hero-bg-circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .seo-hero-bg-circle-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .seo-animated-bar {
        width: 12px;
    }
    
    .seo-hero-animated-bars {
        padding: 0 2%;
    }
}

/* ---------- Виды SEO (кликабельные карточки) ---------- */
.seo-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seo-type-card {
    background: var(--seo-white);
    border-radius: 20px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--seo-gray-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.seo-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.05) 0%, rgba(32, 177, 199, 0.02) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.seo-type-card:hover {
    transform: translateY(-8px);
    border-color: var(--seo-accent);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.seo-type-card:hover::before {
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.1) 0%, rgba(32, 177, 199, 0.05) 100%);
}

.seo-type-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.15) 0%, rgba(32, 177, 199, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.seo-type-card:hover .seo-type-icon {
    background: linear-gradient(135deg, var(--seo-accent) 0%, #0B6B7A 100%);
    transform: scale(1.05);
}

.seo-type-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.seo-type-card:hover .seo-type-icon svg path {
    fill: var(--seo-white);
}

.seo-type-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.seo-type-card:hover .seo-type-title {
    color: var(--seo-accent);
}

.seo-type-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--seo-text-light);
    margin-bottom: 20px;
}

.seo-type-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--seo-accent);
    transition: all 0.3s ease;
}

.seo-type-arrow svg {
    transition: transform 0.3s ease;
}

.seo-type-card:hover .seo-type-arrow svg {
    transform: translateX(5px);
}

/* Адаптив */
@media (max-width: 1024px) {
    .seo-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .seo-type-card {
        padding: 24px 20px;
    }
    
    .seo-type-title {
        font-size: 20px;
    }
}

/* ---------- Преимущества SEO (список с иконками, не карточки) ---------- */
.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.seo-benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--seo-white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--seo-gray-border);
}

.seo-benefit-item:hover {
    transform: translateX(8px);
    border-color: var(--seo-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.seo-benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.12) 0%, rgba(32, 177, 199, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.seo-benefit-item:hover .seo-benefit-icon {
    background: linear-gradient(135deg, var(--seo-accent) 0%, #0B6B7A 100%);
    transform: scale(1.05);
}

.seo-benefit-content {
    flex: 1;
}

.seo-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.seo-benefit-item:hover .seo-benefit-title {
    color: var(--seo-accent);
}

.seo-benefit-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--seo-text-light);
}

@media (max-width: 768px) {
    .seo-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .seo-benefit-item {
        padding: 18px;
        gap: 16px;
    }
    
    .seo-benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .seo-benefit-title {
        font-size: 18px;
    }
}

/* ---------- Сравнение SEO и контекста (единый стиль с преимуществами) ---------- */
.seo-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.seo-compare-item {
    background: var(--seo-white);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid var(--seo-gray-border);
}

.seo-compare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--seo-accent);
}

.seo-compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--seo-gray-border);
}

.seo-compare-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.12) 0%, rgba(32, 177, 199, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.seo-compare-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--seo-text-dark);
}

.seo-compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.seo-compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--seo-text-dark);
    border-bottom: 1px solid var(--seo-gray-border);
}

.seo-compare-list li:last-child {
    border-bottom: none;
}

.seo-compare-list li span:first-child {
    font-size: 20px;
    flex-shrink: 0;
}

.seo-compare-badge {
    display: inline-block;
    background: rgba(32, 177, 199, 0.1);
    color: var(--seo-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.seo-compare-result-block {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(32, 177, 199, 0.08) 0%, rgba(32, 177, 199, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(32, 177, 199, 0.2);
}

.seo-compare-result-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.seo-compare-result-title span {
    color: var(--seo-orange);
}

.seo-compare-result-text {
    font-size: 18px;
    color: var(--seo-text-light);
}

@media (max-width: 992px) {
    .seo-compare-grid {
        gap: 24px;
    }
    
    .seo-compare-item {
        padding: 24px;
    }
    
    .seo-compare-title {
        font-size: 24px;
    }
    
    .seo-compare-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .seo-compare-result-block {
        padding: 30px;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .seo-compare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-compare-item {
        padding: 20px;
    }
    
    .seo-compare-title {
        font-size: 22px;
    }
    
    .seo-compare-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .seo-compare-list li {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .seo-compare-result-block {
        padding: 24px;
    }
    
    .seo-compare-result-title {
        font-size: 20px;
    }
    
    .seo-compare-result-text {
        font-size: 16px;
    }
}

/* ---------- Команда (бегущая строка) ---------- */
.seo-team-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 32px;
}

.seo-team-track {
    display: flex;
    gap: 32px;
    width: fit-content;
    animation: teamMarquee 40s linear infinite;
}

.seo-team:hover .seo-team-track {
    animation-play-state: paused;
}

.seo-team-member {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
    background: var(--seo-white);
    border-radius: 24px;
    padding: 24px 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--seo-gray-border);
}

.seo-team-member:hover {
    transform: translateY(-8px);
    border-color: var(--seo-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.seo-team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
}

.seo-team-role {
    font-size: 18px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 8px;
}

.seo-team-desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--seo-text-light);
}

@keyframes teamMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .seo-team-member {
        width: 180px;
        padding: 16px 12px;
    }
    
    .seo-team-img {
        width: 90px;
        height: 90px;
    }
    
    .seo-team-role {
        font-size: 16px;
    }
    
    .seo-team-desc {
        font-size: 11px;
    }
    
    .seo-team-track {
        gap: 20px;
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .seo-team-member {
        width: 160px;
        padding: 12px 8px;
    }
    
    .seo-team-img {
        width: 75px;
        height: 75px;
    }
    
    .seo-team-role {
        font-size: 14px;
    }
}