/* ===========================================
   SEO Pages Redesign — Figma 329:2936
   Дизайн-система: переменные, карточки, сетки
   =========================================== */

/* ── Design Tokens (from Figma) ── */
:root {
    --seo-bg-page: #F9FAFE;
    --seo-bg-card: #FBFCFE;
    --seo-bg-card-alt: #FAFAFA;
    --seo-bg-white: #FFFFFF;
    --seo-bg-dark: #201128;

    --seo-text-primary: #2e2140;
    --seo-text-secondary: #a790b4;
    --seo-text-muted: #4B5965;
    --seo-text-dark: #212121;
    --seo-text-on-dark: #F9FAFE;

    --seo-border: rgba(167, 144, 180, 0.14);
    --seo-border-strong: rgba(167, 144, 180, 0.28);

    --seo-primary: #8000ff;
    --seo-primary-light: #F0F7FF;
    --seo-primary-gradient: linear-gradient(180deg, #4100ff 0%, #8000ff 100%);

    --seo-success: #1785c9;
    --seo-success-bg: #e7f6fe;
    --seo-warning: #7ef524;
    --seo-warning-bg: #f1fee7;
    --seo-danger: #f39a12;
    --seo-danger-bg: #fdfee7;

    --seo-radius-card: 24px;
    --seo-radius-pill: 999px;
    --seo-radius-sm: 16px;
    --seo-radius-xs: 12px;

    --seo-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04);

    --seo-font: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --seo-gap-section: 56px;
    --seo-gap-card: 16px;
    --seo-gap-grid: 16px;
}

/* ── Reset & Base ── */
.x49dac5 * {
    box-sizing: border-box;
}

.x49dac5 {
    font-family: var(--seo-font);
    color: var(--seo-text-primary);
    background: var(--seo-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.x882927 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Language switch ── */
.seo-lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--seo-bg-white);
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-pill);
    padding: 4px;
}

.seo-lang-switch::-webkit-scrollbar {
    display: none;
}

.seo-lang-switch__item {
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 13px;
    line-height: 150%;
    color: var(--seo-text-secondary);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: var(--seo-radius-pill);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.seo-lang-switch__item:hover {
    color: var(--seo-text-primary);
}

.seo-lang-switch__item.x8b7d3f {
    background: var(--seo-primary-gradient);
    color: #fff;
}

@media (min-width: 1024px) {
    .x882927 {
        padding: 0 100px;
        max-width: 1440px;
    }
}

/* ── Section spacing ── */
.x5d82ab {
    margin-bottom: var(--seo-gap-section);
}
.x5d82ab:last-child {
    margin-bottom: 0;
}

/* ── Card (main container) ── */
.xd34ffb {
    background: var(--seo-bg-card);
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-card);
    overflow: hidden;
}

.x67e418 {
    padding: 16px;
}

@media (min-width: 768px) {
    .x67e418 {
        padding: 24px;
    }
}

/* ── Card header row (title + optional action) ── */
.xf7b30e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px 16px;
}

.xe9b329 {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: var(--seo-text-primary);
    margin: 0;
}

@media (min-width: 768px) {
    .xe9b329 {
        font-size: 20px;
    }
}

.seo-card__desc {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
    margin: 4px 0 0;
}

/* ── Search input ── */
.seo-search {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .seo-search {
        max-width: 280px;
    }
}

.seo-search__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--seo-text-secondary);
    pointer-events: none;
}

.seo-search__input {
    width: 100%;
    height: 40px;
    padding: 0 12px 0 36px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-xs);
    background: var(--seo-bg-card-alt);
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--seo-text-primary);
    outline: none;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.seo-search__input:focus {
    border-color: var(--seo-primary);
    background: var(--seo-bg-white);
    box-shadow: 0 0 0 3px rgba(128, 0, 255, 0.12);
}

.seo-search__input::placeholder {
    color: var(--seo-text-secondary);
    opacity: 0.6;
}

/* ── Tabs (pills) ── */
.seo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--seo-border);
}

@media (min-width: 768px) {
    .seo-tabs {
        padding: 12px 24px;
    }
}

.seo-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--seo-radius-pill);
    border: none;
    background: var(--seo-bg-card-alt);
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--seo-text-primary);
    cursor: pointer;
    transition: background .15s, color .15s;
}

.seo-tab:hover {
    background: var(--seo-bg-white);
    color: var(--seo-primary);
}

.seo-tab.x1e13ad {
    background: var(--seo-primary);
    color: var(--seo-bg-white);
}

.seo-tab svg {
    width: 16px;
    height: 16px;
}

/* ── Grid layouts ── */
.x3f841a {
    padding: 12px 16px;
}

@media (min-width: 768px) {
    .x3f841a {
        padding: 16px 24px;
    }
}

.xd0243c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .xd0243c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .x0d2895 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── List item ── */
.x980922 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--seo-radius-xs);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .15s;
}

.x980922:hover {
    background: var(--seo-bg-card-alt);
}

.x0bd10a {
    flex: 1;
    min-width: 0;
}

.x273c54 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.xfc55d0 {
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: var(--seo-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seo-item__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--seo-primary-light);
    color: var(--seo-primary);
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.x5d49ba {
    display: block;
    margin-top: 2px;
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: var(--seo-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.x8e19fe {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--seo-text-secondary);
    opacity: 0.5;
    transition: all .15s;
}

.x980922:hover .x8e19fe {
    color: var(--seo-primary);
    opacity: 1;
    transform: translateX(2px);
}

/* ── BrandMark (lettered avatar) ── */
.xcb6315 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.x94a026 { background: #eff6ff; color: #a325eb; }
.xfa762a { background: #f0f9ff; color: #3b02c7; }
.x855bdc { background: #ecf5fd; color: #053996; }
.x5215e3 { background: #ebfee8; color: #73d906; }
.x6c2417 { background: #fff1f2; color: #e1ac1d; }
.seo-brand-5 { background: #eef2ff; color: #e546e4; }
.seo-brand-6 { background: #f0fdfa; color: #0d2094; }

/* ── CodeMark (country code badge) ── */
.seo-code-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--seo-bg-card-alt);
    font-family: var(--seo-font);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--seo-text-primary);
    overflow: hidden;
}

.seo-code-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Types item (with icon) ── */
.xed0fdb {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--seo-radius-xs);
    text-decoration: none;
    transition: background .15s;
}

.xed0fdb:hover {
    background: var(--seo-bg-card-alt);
}

.x39af23 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.x39af23 svg {
    width: 20px;
    height: 20px;
}

.x48048c {
    flex: 1;
    min-width: 0;
}

.xb84762 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.x54bf75 {
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: var(--seo-text-primary);
}

.seo-type-item__meta {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--seo-bg-card-alt);
    color: var(--seo-text-secondary);
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2;
}

.xf99116 {
    display: block;
    margin-top: 3px;
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: var(--seo-text-secondary);
}

.x58d9e3 {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--seo-text-secondary);
    opacity: 0.5;
    transition: all .15s;
}

.xed0fdb:hover .x58d9e3 {
    color: var(--seo-primary);
    opacity: 1;
    transform: translateX(2px);
}

/* ── Detail Block (header with title, subtitle, specs, body) ── */
.x3319b6 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--seo-border);
    padding: 20px 24px;
}

@media (min-width: 768px) {
    .x3319b6 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
    }
}

.x0606cb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.x099c66 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--seo-radius-sm);
    background: var(--seo-bg-card-alt);
    flex-shrink: 0;
    font-family: var(--seo-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--seo-text-primary);
    overflow: hidden;
}

.x099c66 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x26fe3e {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--seo-text-primary);
    margin: 0;
}

@media (min-width: 768px) {
    .x26fe3e {
        font-size: 24px;
    }
}

.x4404fe {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
    margin: 2px 0 0;
}

.x0e13d7 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.seo-detail__price {
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--seo-text-secondary);
    white-space: nowrap;
}

.seo-detail__price-value {
    font-weight: 600;
    font-size: 16px;
    color: var(--seo-text-primary);
}

.x8a9417 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--seo-radius-pill);
    border: none;
    background: var(--seo-primary);
    color: var(--seo-bg-white);
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: opacity .15s;
    cursor: pointer;
    white-space: nowrap;
}

.x8a9417:hover {
    opacity: 0.9;
}

/* ── Specs grid ── */
.x011783 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--seo-border);
}

@media (min-width: 640px) {
    .x011783 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.x70842e {
    padding: 16px 20px;
    background: var(--seo-bg-card);
}

.xd7d239 {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--seo-text-primary);
}

.xe3cc16 {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: var(--seo-text-secondary);
    margin-top: 2px;
}

/* ── Detail body (checklist, steps, chips) ── */
.seo-detail__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 24px;
    border-top: 1px solid var(--seo-border);
}

@media (min-width: 1024px) {
    .seo-detail__body {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-detail__section-title {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: var(--seo-text-primary);
    margin: 0 0 12px;
}

/* Checklist */
.x7e6100 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.x7e6100 li {
    margin-bottom: 10px;
}

.x5585b6 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.x3cfabd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: var(--seo-radius-pill);
    background: var(--seo-success-bg);
    color: var(--seo-success);
    flex-shrink: 0;
    margin-top: 1px;
}

.x3cfabd svg {
    width: 12px;
    height: 12px;
}

.xb62da5 {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
}

/* Steps */
.seo-detail__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-detail__step-list li {
    margin-bottom: 10px;
}

.seo-detail__step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.seo-detail__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: var(--seo-radius-pill);
    background: var(--seo-primary);
    color: var(--seo-bg-white);
    flex-shrink: 0;
    margin-top: 1px;
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
}

.seo-detail__step-text {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
}

/* Chips */
.seo-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-detail__chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--seo-radius-pill);
    border: 1px solid var(--seo-border);
    background: var(--seo-bg-card-alt);
    color: var(--seo-text-primary);
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    transition: all .15s;
}

.seo-detail__chip:hover {
    border-color: var(--seo-primary);
    background: var(--seo-primary-light);
    color: var(--seo-primary);
}

/* ── Description block (content area) ── */
.seo-description {
    padding: 24px;
}

.x8b994a {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--seo-text-secondary);
}

.x8b994a p {
    margin-bottom: 16px;
}

.x8b994a h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--seo-text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.x8b994a h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--seo-text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.x8b994a ul,
.x8b994a ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.x8b994a li {
    margin-bottom: 8px;
}

.x8b994a a {
    color: var(--seo-primary);
    text-decoration: underline;
}

.x8b994a a:hover {
    color: var(--seo-primary);
    opacity: 0.8;
}

/* ── FAQ Block ── */
.x9396dc {
    padding: 16px;
}

@media (min-width: 768px) {
    .x9396dc {
        padding: 24px;
    }
}

.x1670c4 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
    padding: 0 4px;
    margin-bottom: 16px;
}

.xebb848 {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: var(--seo-text-primary);
    margin: 0;
}

.x880b90 {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
}

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

@media (min-width: 768px) {
    .xe0ba51 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.x13554b {
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    overflow: hidden;
}

.x261a6e {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--seo-bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--seo-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--seo-text-primary);
    transition: background .15s;
}

.x261a6e:hover {
    background: var(--seo-bg-card-alt);
}

.xa7a949 {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--seo-text-secondary);
    transition: transform .2s;
}

.x13554b.xea7a84 .xa7a949 {
    transform: rotate(180deg);
}

.xceb4cf {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.x13554b.xea7a84 .xceb4cf {
    max-height: 300px;
}

.x0eb3e4 {
    padding: 0 16px 14px;
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
}

/* ── Statistics block ── */
.seo-stats {
    padding: 16px;
}

@media (min-width: 768px) {
    .seo-stats {
        padding: 24px;
    }
}

.seo-stats__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px 16px;
}

.seo-stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.seo-stat-card {
    padding: 20px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    background: var(--seo-bg-white);
}

.seo-stat-card__value {
    font-family: var(--seo-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    color: var(--seo-text-primary);
}

.seo-stat-card__label {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: var(--seo-text-secondary);
    margin-top: 6px;
}

.seo-stat-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: var(--seo-radius-pill);
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 12px;
}

.seo-stat-card__badge--up {
    background: var(--seo-success-bg);
    color: var(--seo-success);
}

.seo-stat-card__badge--down {
    background: var(--seo-danger-bg);
    color: var(--seo-danger);
}

/* ── Price table ── */
.seo-price {
    padding: 16px;
}

@media (min-width: 768px) {
    .seo-price {
        padding: 24px;
    }
}

.seo-price__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px 16px;
}

.seo-price__table {
    width: 100%;
    border-collapse: collapse;
}

.seo-price__row {
    border-bottom: 1px solid var(--seo-border);
}

.seo-price__row:last-child {
    border-bottom: none;
}

.seo-price__cell {
    padding: 14px 16px;
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: var(--seo-text-primary);
}

.seo-price__cell--right {
    text-align: right;
    font-weight: 600;
}

.seo-price__cell--muted {
    color: var(--seo-text-secondary);
}

/* ── Services grid (mini cards) ── */
.seo-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
}

@media (min-width: 768px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .seo-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.seo-service-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
    background: var(--seo-bg-white);
    text-decoration: none;
    transition: border-color .15s;
}

.seo-service-card:hover {
    border-color: var(--seo-border-strong);
}

.seo-service-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-service-card__name {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--seo-text-primary);
}

.seo-service-card__meta {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: var(--seo-text-secondary);
}

.seo-service-card__chevron {
    width: 16px;
    height: 16px;
    margin-left: auto;
    color: var(--seo-text-secondary);
    opacity: 0.5;
    transition: all .15s;
}

.seo-service-card:hover .seo-service-card__chevron {
    color: var(--seo-primary);
    opacity: 1;
    transform: translateX(2px);
}

/* ── CTA ── */
.x1310fa {
    margin-top: 24px;
    padding: 28px 24px;
    text-align: center;
    background: var(--seo-bg-card-alt);
    border: 1px solid var(--seo-border);
    border-radius: var(--seo-radius-sm);
}

.xd4dfbe {
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: var(--seo-text-primary);
    margin: 0 0 6px;
}

.x57d081 {
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: var(--seo-text-secondary);
    margin: 0 0 20px;
}

.x81273a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 28px;
    border-radius: var(--seo-radius-pill);
    border: none;
    background: var(--seo-primary);
    color: var(--seo-bg-white);
    font-family: var(--seo-font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: opacity .15s;
    cursor: pointer;
}

.x81273a:hover {
    opacity: 0.9;
}

/* ── Tab panels ── */
.seo-tab-panel {
    display: none;
}
.seo-tab-panel.x1e13ad {
    display: block;
}

/* ── Empty state ── */
.seo-empty {
    padding: 40px 20px;
    text-align: center;
    font-family: var(--seo-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--seo-text-secondary);
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
    .x3319b6 {
        flex-direction: column;
        align-items: flex-start;
    }

    .x0e13d7 {
        width: 100%;
        justify-content: flex-start;
    }

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

    .seo-detail__body {
        padding: 16px;
    }

    .x70842e {
        padding: 12px 16px;
    }

    .xe0ba51 {
        grid-template-columns: 1fr;
    }

    .seo-stats__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .x8a9417 {
        width: 100%;
    }

    .seo-search {
        max-width: 100%;
    }
}

/* variant */
img[src$=".png"]:not([src*="telegram"]):not([src*="whatsapp"]):not([src*="google"]):not([src*="yandex"]),
img[src$=".gif"]:not([src*="telegram"]):not([src*="whatsapp"]) { filter: hue-rotate(57deg); }

/* перерисованные баннеры уже в новой палитре */
img[src*="how-it-works-pc.e1aed67c1659.png"],
img[src*="IMG_2361.jpeg"] { filter: none !important; }
