.pro-page--seo .cf-breadcrumbs {
    margin-bottom: 12px;
}

.seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
    align-items: stretch;
    padding: 24px;
    border: 1px solid var(--pro-border-blue);
    border-radius: var(--pro-radius-lg);
    background:
        radial-gradient(circle at 16% 18%, rgba(45, 124, 255, 0.14), transparent 26%),
        linear-gradient(135deg, #f7fbff 0%, #edf6ff 48%, #ffffff 100%);
    box-shadow: 0 18px 48px rgba(14, 39, 71, 0.08);
    overflow: hidden;
}

.seo-hero__content {
    min-width: 0;
}

.seo-hero h1 {
    margin: 8px 0 12px;
    color: var(--cm-text);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.04;
    font-weight: 700;
}

.seo-hero p {
    max-width: 760px;
    margin: 0 0 8px;
    color: var(--cm-muted);
    font-size: 15px;
    line-height: 1.65;
}

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.seo-route-panel {
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(45, 124, 255, 0.2);
    border-radius: var(--pro-radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.seo-route-panel__point {
    padding: 14px;
    border-radius: var(--pro-radius-sm);
    background: #fff;
    border: 1px solid var(--pro-border);
}

.seo-route-panel__point span {
    display: block;
    margin-bottom: 4px;
    color: var(--cm-muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.seo-route-panel__point b {
    display: block;
    color: var(--cm-text);
    font-size: 20px;
}

.seo-route-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    padding: 12px;
    border-radius: var(--pro-radius-sm);
    background: linear-gradient(90deg, rgba(45, 124, 255, 0.08), rgba(31, 138, 58, 0.08));
}

.seo-route-line span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: var(--cm-text);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.seo-route-line i {
    color: var(--cm-primary);
    flex: 0 0 auto;
}

.seo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.seo-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid var(--pro-border);
    border-radius: 999px;
    background: #fff;
    color: var(--cm-muted);
    font-size: 12.5px;
    font-weight: 600;
}

.seo-audience article {
    padding: 18px;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    background: #fff;
}

.seo-audience i {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--cm-primary);
    font-size: 24px;
}

.seo-audience h3,
.seo-info-card h3 {
    margin: 0 0 8px;
    color: var(--cm-text);
    font-size: 16px;
    font-weight: 700;
}

.seo-audience p,
.seo-info-card p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.seo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.seo-info-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    background: #fff;
}

.seo-empty {
    padding: 18px;
    border: 1px dashed var(--pro-border-strong);
    border-radius: var(--pro-radius);
    background: var(--pro-soft);
    color: var(--cm-muted);
    font-size: 14px;
    line-height: 1.55;
}

.seo-faq {
    display: grid;
    gap: 8px;
}

.seo-faq details {
    border: 1px solid var(--pro-border);
    border-radius: var(--pro-radius);
    background: #fff;
    overflow: hidden;
}

.seo-faq summary {
    cursor: pointer;
    padding: 14px 16px;
    color: var(--cm-text);
    font-weight: 700;
    list-style: none;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq summary::after {
    content: "+";
    float: right;
    color: var(--cm-primary);
    font-size: 18px;
    line-height: 1;
}

.seo-faq details[open] summary::after {
    content: "-";
}

.seo-faq p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--cm-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .seo-hero,
    .seo-info-grid {
        grid-template-columns: 1fr;
    }

    .seo-hero {
        padding: 18px;
    }

    .seo-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .seo-hero {
        padding: 14px;
        border-radius: var(--pro-radius);
    }

    .seo-hero h1 {
        font-size: 27px;
    }

    .seo-hero__actions .pro-btn {
        width: 100%;
        justify-content: center;
    }

    .seo-route-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-route-line > i {
        transform: rotate(90deg);
        margin-left: 5px;
    }
}
