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

    --seo-text-primary: #213940;
    --seo-text-secondary: #90a4b4;
    --seo-text-muted: #4B5965;
    --seo-text-dark: #212121;
    --seo-text-on-dark: #F9FAFE;

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

    --seo-primary: #00b2ff;
    --seo-primary-light: #F0F7FF;
    --seo-primary-gradient: linear-gradient(180deg, #00f1ff 0%, #00b2ff 100%);

    --seo-success: #17c938;
    --seo-success-bg: #e7feea;
    --seo-warning: #f57124;
    --seo-warning-bg: #feefe7;
    --seo-danger: #f31298;
    --seo-danger-bg: #fee7eb;

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

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

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

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

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

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

.x6790f2 {
    padding: 16px;
}

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

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

.xa5a1d2 {
    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) {
    .xa5a1d2 {
        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(0, 178, 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.xda5a68 {
    background: var(--seo-primary);
    color: var(--seo-bg-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xe64697 { background: #eff6ff; color: #2594eb; }
.xfc1ea4 { background: #f0f9ff; color: #02b5c7; }
.x970c52 { background: #ecfdf1; color: #059645; }
.x272a8e { background: #fef7e8; color: #d94206; }
.x124a25 { background: #fff1f2; color: #e11d79; }
.seo-brand-5 { background: #eef2ff; color: #4665e5; }
.seo-brand-6 { background: #f0fdfa; color: #0d9466; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x5c2aeb:hover {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x935274.xbe5edd .xd5e516 {
    transform: rotate(180deg);
}

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

.x935274.xbe5edd .xfb978a {
    max-height: 300px;
}

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

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

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

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

.x8b55fb:hover {
    opacity: 0.9;
}

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

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

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

    .seo-detail__body {
        padding: 16px;
    }

    .xba100a {
        padding: 12px 16px;
    }

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

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

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

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