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

    --seo-text-primary: #382140;
    --seo-text-secondary: #b290b4;
    --seo-text-muted: #4B5965;
    --seo-text-dark: #212121;
    --seo-text-on-dark: #F9FAFE;

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

    --seo-primary: #cd00ff;
    --seo-primary-light: #F0F7FF;
    --seo-primary-gradient: linear-gradient(180deg, #8e00ff 0%, #cd00ff 100%);

    --seo-success: #1750c9;
    --seo-success-bg: #e7effe;
    --seo-warning: #40f524;
    --seo-warning-bg: #eafee7;
    --seo-danger: #f3dd12;
    --seo-danger-bg: #f6fee7;

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

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

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

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

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

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

.x260eed {
    padding: 16px;
}

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

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

.x550ad1 {
    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) {
    .x550ad1 {
        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(205, 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.x4f0e11 {
    background: var(--seo-primary);
    color: var(--seo-bg-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x86f830 { background: #eff6ff; color: #de25eb; }
.xf8cd42 { background: #f0f9ff; color: #7602c7; }
.xfd4d3b { background: #ecf0fd; color: #050e96; }
.x9fdef4 { background: #e8feeb; color: #33d906; }
.x600cae { background: #fff1f2; color: #dbe11d; }
.seo-brand-5 { background: #eef2ff; color: #e546b4; }
.seo-brand-6 { background: #f0fdfa; color: #230d94; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.x44ac38:hover {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xeec119.x84fbc5 .x59fb09 {
    transform: rotate(180deg);
}

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

.xeec119.x84fbc5 .x5d5943 {
    max-height: 300px;
}

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

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

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

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

.xbe5acb:hover {
    opacity: 0.9;
}

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

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

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

    .seo-detail__body {
        padding: 16px;
    }

    .x254420 {
        padding: 12px 16px;
    }

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

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

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

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