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

    --seo-text-primary: #21403e;
    --seo-text-secondary: #90afb4;
    --seo-text-muted: #4B5965;
    --seo-text-dark: #212121;
    --seo-text-on-dark: #F9FAFE;

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

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

    --seo-success: #2cc917;
    --seo-success-bg: #ebfee7;
    --seo-warning: #f53224;
    --seo-warning-bg: #fee8e7;
    --seo-danger: #f312dc;
    --seo-danger-bg: #fee7f2;

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

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

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

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

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

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

.x6b8b74 {
    padding: 16px;
}

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

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

.x134143 {
    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) {
    .x134143 {
        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, 254, 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.x76d6d4 {
    background: var(--seo-primary);
    color: var(--seo-bg-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x64cffc { background: #eff6ff; color: #25d0eb; }
.x90b4ad { background: #f0f9ff; color: #02c79e; }
.x515cf4 { background: #ecfdec; color: #059619; }
.x62983f { background: #fef0e8; color: #d90609; }
.xf030b4 { background: #fff1f2; color: #e11db4; }
.seo-brand-5 { background: #eef2ff; color: #4694e5; }
.seo-brand-6 { background: #f0fdfa; color: #0d943e; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xb64f7d:hover {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xbc8ee4.x793b55 .x62ab01 {
    transform: rotate(180deg);
}

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

.xbc8ee4.x793b55 .x05a580 {
    max-height: 300px;
}

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

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

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

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

.x63b236:hover {
    opacity: 0.9;
}

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

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

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

    .seo-detail__body {
        padding: 16px;
    }

    .xcd59b8 {
        padding: 12px 16px;
    }

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

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

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

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