.seo-hub {
    --seo-accent: #2563eb;
    --seo-accent-dark: #1d4ed8;
    --seo-accent-soft: #eff6ff;
    --seo-accent-ink: #1e40af;
    --seo-glow: rgba(37, 99, 235, 0.35);
    --seo-ink: #111827;
    --seo-muted: #667085;
    --seo-line: #e6eaf0;
    --seo-surface: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    color: var(--seo-ink);
    background:
        radial-gradient(circle at 7% 4%, rgba(37, 99, 235, 0.07), transparent 24rem),
        linear-gradient(180deg, #f8fafc 0%, #f5f7fb 44%, #ffffff 100%);
    font-family: Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.seo-hub[data-tone="emerald"] {
    --seo-accent: #059669;
    --seo-accent-dark: #047857;
    --seo-accent-soft: #ecfdf5;
    --seo-accent-ink: #047857;
    --seo-glow: rgba(5, 150, 105, 0.32);
}

.seo-hub[data-tone="amber"] {
    --seo-accent: #ea580c;
    --seo-accent-dark: #c2410c;
    --seo-accent-soft: #fff7ed;
    --seo-accent-ink: #9a3412;
    --seo-glow: rgba(234, 88, 12, 0.28);
}

.seo-hub *,
.seo-hub *::before,
.seo-hub *::after {
    box-sizing: border-box;
}

.seo-hub a {
    text-decoration: none;
}

.seo-container {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.seo-hero-zone {
    padding: 24px 0 0;
}

.seo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.seo-breadcrumb a {
    color: #475467;
    transition: color 160ms ease;
}

.seo-breadcrumb a:hover {
    color: var(--seo-accent);
}

.seo-breadcrumb i {
    color: #98a2b3;
    font-size: 9px;
}

.seo-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        radial-gradient(circle at 92% 20%, var(--seo-glow), transparent 30%),
        linear-gradient(132deg, #101828 0%, #172554 62%, #0f172a 100%);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.15);
}

.seo-hub[data-tone="emerald"] .seo-hero {
    background:
        radial-gradient(circle at 92% 20%, var(--seo-glow), transparent 30%),
        linear-gradient(132deg, #10221e 0%, #064e3b 60%, #0f2d28 100%);
}

.seo-hub[data-tone="amber"] .seo-hero {
    background:
        radial-gradient(circle at 92% 20%, var(--seo-glow), transparent 30%),
        linear-gradient(132deg, #271710 0%, #7c2d12 60%, #32180f 100%);
}

.seo-hero::before {
    position: absolute;
    z-index: -1;
    top: -90px;
    right: -70px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.seo-hero::after {
    position: absolute;
    z-index: -1;
    right: 145px;
    bottom: -145px;
    width: 280px;
    height: 280px;
    border: 54px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.seo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 355px);
    gap: 38px;
    align-items: center;
    padding: 36px 42px;
}

.seo-hero__eyebrow,
.seo-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--seo-accent-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-hero__eyebrow {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.04em;
    text-transform: none;
}

.seo-hero__eyebrow i {
    color: #93c5fd;
}

.seo-hub[data-tone="emerald"] .seo-hero__eyebrow i {
    color: #6ee7b7;
}

.seo-hub[data-tone="amber"] .seo-hero__eyebrow i {
    color: #fdba74;
}

.seo-hero h1 {
    max-width: 820px;
    margin: 17px 0 0;
    color: #ffffff !important;
    font-size: clamp(33px, 3.8vw, 50px);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.seo-hero__copy {
    max-width: 720px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 16px;
    line-height: 1.6;
}

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.seo-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.seo-button:hover {
    transform: translateY(-1px);
}

.seo-button--primary {
    color: #ffffff !important;
    background: var(--seo-accent);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--seo-accent) 36%, transparent);
}

.seo-button--primary:hover {
    background: var(--seo-accent-dark);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--seo-accent) 42%, transparent);
}

.seo-button--ghost {
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

.seo-button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
}

.seo-button--light {
    border-color: var(--seo-line);
    color: #344054 !important;
    background: #ffffff;
}

.seo-button--light:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.seo-hero-panel {
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.seo-hero-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.seo-hero-panel__label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.seo-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

.seo-hero-panel__count {
    display: inline-flex;
    min-width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 850;
}

.seo-hero-panel__title {
    margin: 18px 0 0;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.seo-hero-panel__copy {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 14px;
    line-height: 1.55;
}

.seo-hero-panel__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: #ffffff !important;
    background: transparent;
    transition: background 160ms ease, border-color 160ms ease;
}

.seo-hero-panel__preview:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: transparent;
}

.seo-hero-panel__preview-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #ffffff;
    background: var(--seo-accent);
}

.seo-hero-panel__preview strong,
.seo-hero-panel__preview span {
    display: block;
}

.seo-hero-panel__preview strong {
    color: #ffffff;
    font-size: 14px;
}

.seo-hero-panel__preview span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.seo-hero-panel__preview > i {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.seo-tool-points {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.seo-tool-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.seo-tool-points i {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #ffffff;
    background: var(--seo-accent);
    font-size: 10px;
}

.seo-main {
    padding: 40px 0 58px;
}

.seo-section + .seo-section {
    margin-top: 42px;
}

.seo-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 17px;
}

.seo-section__header h2,
.seo-content-card h2 {
    margin: 6px 0 0;
    color: var(--seo-ink) !important;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.seo-section__header p {
    max-width: 580px;
    margin: 8px 0 0;
    color: var(--seo-muted) !important;
    font-size: 15px;
    line-height: 1.6;
}

.seo-section__meta {
    flex: 0 0 auto;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

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

.seo-result-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--seo-line);
    border-radius: 9px;
    color: var(--seo-ink) !important;
    background: var(--seo-surface);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seo-result-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--seo-accent) 35%, #d0d5dd);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

.seo-result-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    background: linear-gradient(135deg, var(--seo-accent-soft), #eef2f7);
}

.seo-result-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.seo-result-card:hover .seo-result-card__media img {
    transform: scale(1.035);
}

.seo-result-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    color: #344054;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.seo-result-card__body {
    padding: 16px;
}

.seo-result-card__provider {
    margin: 0;
    color: var(--seo-accent-ink) !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.seo-result-card h3 {
    margin: 7px 0 0;
    color: var(--seo-ink) !important;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.seo-result-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eef1f5;
}

.seo-result-card__price {
    color: #475467;
    font-size: 12px;
}

.seo-result-card__price strong {
    display: block;
    margin-top: 2px;
    color: var(--seo-ink);
    font-size: 16px;
}

.seo-result-card__arrow {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--seo-accent);
    background: var(--seo-accent-soft);
    transition: color 160ms ease, background 160ms ease;
}

.seo-result-card:hover .seo-result-card__arrow {
    color: #ffffff;
    background: var(--seo-accent);
}

.seo-empty {
    display: grid;
    grid-column: 1 / -1;
    place-items: center;
    min-height: 200px;
    padding: 30px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
}

.seo-empty__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--seo-accent);
    background: var(--seo-accent-soft);
    font-size: 20px;
}

.seo-empty h3 {
    margin: 14px 0 0;
    color: var(--seo-ink) !important;
    font-size: 20px;
    font-weight: 800;
}

.seo-empty p {
    max-width: 520px;
    margin: 7px 0 0;
    color: var(--seo-muted) !important;
    font-size: 14px;
    line-height: 1.6;
}

.seo-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--seo-line);
    border-radius: 9px;
    background: #ffffff;
}

.seo-feature-card {
    padding: 22px;
    border: 0;
    border-right: 1px solid var(--seo-line);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.seo-feature-card:last-child {
    border-right: 0;
}

.seo-feature-card > i {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--seo-accent);
    background: var(--seo-accent-soft);
    font-size: 17px;
}

.seo-feature-card h3 {
    margin: 17px 0 0;
    color: var(--seo-ink) !important;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.seo-feature-card p {
    margin: 7px 0 0;
    color: var(--seo-muted) !important;
    font-size: 13px;
    line-height: 1.6;
}

.seo-guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--seo-line);
    border-radius: 9px;
    background: #ffffff;
}

.seo-content-card {
    padding: 26px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.seo-guide-grid .seo-content-card + .seo-content-card {
    border-left: 1px solid var(--seo-line);
}

.seo-content-card__copy {
    margin: 12px 0 0;
    color: var(--seo-muted) !important;
    font-size: 15px;
    line-height: 1.65;
}

.seo-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 23px;
}

.seo-step {
    padding: 15px 14px 0 0;
    border-top: 1px solid var(--seo-line);
    border-radius: 0;
    background: transparent;
}

.seo-step__number {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #ffffff;
    background: var(--seo-accent);
    font-size: 12px;
    font-weight: 850;
}

.seo-step strong {
    display: block;
    margin-top: 12px;
    color: var(--seo-ink);
    font-size: 14px;
}

.seo-step p {
    margin: 5px 0 0;
    color: var(--seo-muted) !important;
    font-size: 12px;
    line-height: 1.5;
}

.seo-check-list {
    display: grid;
    gap: 3px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.seo-check-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f5;
}

.seo-check-list li:last-child {
    border-bottom: 0;
}

.seo-check-list i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--seo-accent);
    background: var(--seo-accent-soft);
    font-size: 12px;
}

.seo-check-list strong,
.seo-check-list span {
    display: block;
}

.seo-check-list strong {
    color: var(--seo-ink);
    font-size: 14px;
}

.seo-check-list span {
    margin-top: 3px;
    color: var(--seo-muted);
    font-size: 12px;
    line-height: 1.5;
}

.seo-cities,
.seo-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.seo-city-link,
.seo-related-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--seo-line);
    border-radius: 6px;
    color: #344054 !important;
    background: #ffffff;
    font-size: 13px;
    font-weight: 750;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.seo-city-link:hover,
.seo-related-link:hover {
    border-color: color-mix(in srgb, var(--seo-accent) 35%, #d0d5dd);
    color: var(--seo-accent-ink) !important;
    background: var(--seo-accent-soft);
}

.seo-city-link i,
.seo-related-link i {
    color: var(--seo-accent);
    font-size: 11px;
}

.seo-group-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--seo-line);
    border-radius: 9px;
    background: #ffffff;
}

.seo-group-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    gap: 11px;
    align-items: start;
    min-height: 108px;
    padding: 16px;
    border: 0;
    border-right: 1px solid var(--seo-line);
    border-bottom: 1px solid var(--seo-line);
    border-radius: 0;
    color: var(--seo-ink) !important;
    background: #ffffff;
    box-shadow: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-group-card:hover {
    z-index: 1;
    transform: none;
    border-color: var(--seo-line);
    background: var(--seo-accent-soft);
    box-shadow: inset 3px 0 var(--seo-accent);
}

.seo-group-card:nth-child(4n) {
    border-right: 0;
}

.seo-group-card__icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--seo-accent);
    background: var(--seo-accent-soft);
    font-size: 17px;
}

.seo-group-card h2 {
    margin: 1px 0 0;
    color: var(--seo-ink) !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.seo-group-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0 0;
    color: var(--seo-muted) !important;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.seo-group-card__arrow {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #98a2b3;
    background: #f8fafc;
    transition: color 160ms ease, background 160ms ease;
}

.seo-group-card:hover .seo-group-card__arrow {
    color: #ffffff;
    background: var(--seo-accent);
}

.seo-cross-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 24px;
    border: 1px solid #dce3ec;
    border-radius: 9px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.seo-cross-nav h2 {
    margin: 0;
    color: var(--seo-ink) !important;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.seo-cross-nav p {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--seo-muted) !important;
    font-size: 14px;
    line-height: 1.6;
}

.seo-cross-nav__links {
    display: flex;
    gap: 9px;
}

.seo-cross-nav__links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid var(--seo-line);
    border-radius: 6px;
    color: #344054 !important;
    background: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.seo-cross-nav__links a:hover {
    border-color: var(--seo-accent);
    color: var(--seo-accent-ink) !important;
}

.seo-mobile-cta {
    display: none;
}

.seo-hub :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--seo-accent) 40%, transparent);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .seo-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .seo-hero-panel {
        max-width: none;
    }

    .seo-results-grid,
    .seo-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-group-card:nth-child(4n) {
        border-right: 1px solid var(--seo-line);
    }

    .seo-group-card:nth-child(2n) {
        border-right: 0;
    }

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

    .seo-guide-grid .seo-content-card + .seo-content-card {
        border-top: 1px solid var(--seo-line);
        border-left: 0;
    }

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

    .seo-cross-nav__links {
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    .seo-container {
        width: min(100% - 28px, 1240px);
    }

    .seo-hero-zone {
        padding-top: 16px;
    }

    .seo-breadcrumb {
        overflow: hidden;
        margin-bottom: 12px;
        white-space: nowrap;
    }

    .seo-breadcrumb span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .seo-hero {
        border-radius: 11px;
    }

    .seo-hero__grid {
        gap: 18px;
        padding: 24px 22px;
    }

    .seo-hero h1 {
        margin-top: 14px;
        font-size: clamp(31px, 10vw, 42px);
        line-height: 1.06;
    }

    .seo-hero__copy {
        margin-top: 13px;
        font-size: 15px;
        line-height: 1.55;
    }

    .seo-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 21px;
    }

    .seo-button {
        width: 100%;
    }

    .seo-hero-panel {
        padding: 15px 0 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .seo-hero-panel__title,
    .seo-hero-panel__copy,
    .seo-hero-panel__preview,
    .seo-tool-points {
        display: none;
    }

    .seo-main {
        padding: 36px 0 86px;
    }

    .seo-section + .seo-section {
        margin-top: 40px;
    }

    .seo-section__header {
        display: block;
        margin-bottom: 17px;
    }

    .seo-section__meta {
        margin-top: 8px;
    }

    .seo-results-grid,
    .seo-group-grid,
    .seo-feature-grid {
        grid-template-columns: 1fr;
    }

    .seo-feature-card {
        border-right: 0;
        border-bottom: 1px solid var(--seo-line);
    }

    .seo-feature-card:last-child {
        border-bottom: 0;
    }

    .seo-group-card:nth-child(2n),
    .seo-group-card:nth-child(4n) {
        border-right: 0;
    }

    .seo-group-card:last-child {
        border-bottom: 0;
    }

    .seo-content-card {
        padding: 21px;
        border-radius: 0;
    }

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

    .seo-step {
        display: grid;
        grid-template-columns: 29px 1fr;
        column-gap: 12px;
        align-items: start;
    }

    .seo-step strong,
    .seo-step p {
        grid-column: 2;
        margin-top: 0;
    }

    .seo-step p {
        margin-top: 3px;
    }

    .seo-group-card {
        min-height: 0;
    }

    .seo-cross-nav {
        padding: 21px;
        border-radius: 8px;
    }

    .seo-cross-nav__links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .seo-mobile-cta {
        position: fixed;
        z-index: 70;
        right: 12px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        left: 12px;
        display: grid;
        padding: 9px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
        backdrop-filter: blur(16px);
    }

    .seo-mobile-cta .seo-button {
        min-height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .seo-hub *,
    .seo-hub *::before,
    .seo-hub *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
