/* ===========================================
   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: #191128;

    --seo-text-primary: #252140;
    --seo-text-secondary: #9c90b4;
    --seo-text-muted: #4B5965;
    --seo-text-dark: #212121;
    --seo-text-on-dark: #F9FAFE;

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

    --seo-primary: #3400ff;
    --seo-primary-light: #F0F7FF;
    --seo-primary-gradient: linear-gradient(180deg, #000bff 0%, #3400ff 100%);

    --seo-success: #17bac9;
    --seo-success-bg: #e7fdfe;
    --seo-warning: #bdf524;
    --seo-warning-bg: #f8fee7;
    --seo-danger: #f35612;
    --seo-danger-bg: #fef8e7;

    --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 ── */
.x136728 * {
    box-sizing: border-box;
}

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

.x24f324 {
    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.x4e09cd {
    background: var(--seo-primary-gradient);
    color: #fff;
}

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

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

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

.x739abe {
    padding: 16px;
}

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

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

.xc2c0a1 {
    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) {
    .xc2c0a1 {
        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(52, 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.xdbfde0 {
    background: var(--seo-primary);
    color: var(--seo-bg-white);
}

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

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

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

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

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

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

/* ── List item ── */
.xc07509 {
    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;
}

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

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

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

.x55c8eb {
    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;
}

.x0e18db {
    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;
}

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

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

/* ── BrandMark (lettered avatar) ── */
.xa628e3 {
    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;
}

.x309c36 { background: #eff6ff; color: #6825eb; }
.x4fc776 { background: #f0f9ff; color: #0204c7; }
.x5d625b { background: #ecfafd; color: #056596; }
.xfe7405 { background: #f2fee8; color: #b2d906; }
.x63c2c4 { background: #fff1f2; color: #e1711d; }
.seo-brand-5 { background: #eef2ff; color: #b646e5; }
.seo-brand-6 { background: #f0fdfa; color: #0d4894; }

/* ── 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) ── */
.xf9c059 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--seo-radius-xs);
    text-decoration: none;
    transition: background .15s;
}

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

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

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

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

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

.x048ec2 {
    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;
}

.x7ce850 {
    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);
}

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

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

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

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

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

.xab15d0 {
    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;
}

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

.x546f5e {
    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) {
    .x546f5e {
        font-size: 24px;
    }
}

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

.xda050d {
    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);
}

.x108dc1 {
    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;
}

.x108dc1:hover {
    opacity: 0.9;
}

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

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

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

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

.x16a36a {
    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 */
.xf5ad90 {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.xa311fe {
    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;
}

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

.xb49586 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x6f3ad4 {
    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;
}

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

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

.xc85a5c.x539f76 .xda8b29 {
    transform: rotate(180deg);
}

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

.xc85a5c.x539f76 .x3d4542 {
    max-height: 300px;
}

.x1eb0f3 {
    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 ── */
.x51ae9e {
    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);
}

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

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

.xd4ae42 {
    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;
}

.xd4ae42:hover {
    opacity: 0.9;
}

/* ── Tab panels ── */
.seo-tab-panel {
    display: none;
}
.seo-tab-panel.xdbfde0 {
    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) {
    .xcd9c53 {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .seo-detail__body {
        padding: 16px;
    }

    .xa7ff0e {
        padding: 12px 16px;
    }

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

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

@media (max-width: 480px) {
    .x108dc1 {
        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(39deg); }

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