/* ─── SEO landing pages (body.seo-page) ─── */

body.seo-page {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    background: var(--bg);
}

/* ─── Hero (compact split, no full mockup) ─── */
.seo-hero {
    padding: 40px 0 56px;
    background:
        radial-gradient(ellipse 65% 45% at 50% -8%, rgba(99, 102, 241, 0.1), transparent),
        var(--bg);
}

.seo-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.seo-hero__content {
    text-align: left;
}

.seo-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 16px;
}

.seo-hero h1 span {
    color: var(--primary);
}

.seo-hero__visual {
    display: flex;
    justify-content: center;
}

.seo-hero__media {
    margin: 0;
    width: 100%;
    max-width: 420px;
}

.seo-hero__media img,
.seo-hero__video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: block;
}

.seo-hero-card {
    width: 100%;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.seo-hero-card__head {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}

.seo-hero-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.seo-hero-card__dot--muted {
    background: #cbd5e1;
}

.seo-hero-card__body {
    padding: 20px;
    text-align: left;
}

.seo-hero-card__label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.seo-hero-card__label--ai {
    color: var(--primary);
    margin-top: 16px;
}

.seo-hero-card__line {
    height: 10px;
    border-radius: 6px;
    background: var(--bg-subtle);
    margin-bottom: 8px;
}

.seo-hero-card__line--long { width: 100%; }
.seo-hero-card__line--short { width: 55%; }

.seo-hero-card__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-hero-card__bullets li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.seo-hero-card__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ─── Trust bar ─── */
.seo-trust-bar {
    padding: 0 0 8px;
    margin-top: -24px;
}

.seo-trust-bar__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    padding: 14px 20px;
    margin: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.seo-trust-bar__list li {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.seo-trust-bar__list li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
}

/* ─── Pain & solutions ─── */
.seo-pain {
    padding: 64px 0;
    background: var(--card-bg);
    border-block: 1px solid var(--border-light);
}

.seo-pain__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seo-pain__pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px;
}

.seo-pain__problem,
.seo-pain__solution {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.seo-pain__problem {
    opacity: 0.92;
}

.seo-pain__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.seo-pain__icon--bad {
    background: #fef2f2;
    color: var(--danger);
}

.seo-pain__icon--good {
    background: var(--success-soft);
    color: var(--success);
}

.seo-pain__pair h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.seo-pain__pair p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.seo-pain__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 4px;
}

/* ─── Steps (vertical timeline) ─── */
.seo-steps {
    padding: 64px 0;
}

.seo-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seo-steps__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}

.seo-steps__item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light), var(--border));
}

.seo-steps__marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 1;
}

.seo-steps__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    padding-top: 10px;
}

.seo-steps__body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Features (SEO variant) ─── */
.seo-features {
    padding: 64px 0;
    background: var(--bg-subtle);
}

.seo-features__grid {
    display: grid;
    gap: 16px;
}

.seo-features__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.seo-features__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.seo-features__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.seo-feature {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-feature:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-sm);
}

.seo-feature__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 14px;
}

.seo-feature__icon svg {
    width: 20px;
    height: 20px;
}

.seo-feature__emoji {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1;
}

.seo-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.seo-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ─── Use cases (SEO variant — 2 col) ─── */
.seo-use-cases {
    padding: 64px 0;
}

.seo-use-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.seo-use-case {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
}

.seo-use-case__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.seo-use-case h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.seo-use-case p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ─── Comparison table ─── */
.seo-compare {
    padding: 64px 0;
    background: var(--card-bg);
    border-block: 1px solid var(--border-light);
}

.seo-compare__table {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-xs);
}

.seo-compare__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.seo-compare__row:last-child {
    border-bottom: none;
}

.seo-compare__row--head {
    background: var(--bg-subtle);
    font-weight: 700;
}

.seo-compare__cell {
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    border-right: 1px solid var(--border-light);
}

.seo-compare__cell:last-child {
    border-right: none;
}

.seo-compare__cell--label {
    font-weight: 600;
    color: var(--text-main);
}

.seo-compare__cell--right {
    color: var(--text-main);
    background: var(--primary-soft);
    font-weight: 500;
}

.seo-compare__row--head .seo-compare__cell--right {
    color: var(--primary);
}

/* ─── FAQ wrapper ─── */
.seo-faq {
    padding: 64px 0;
}

/* ─── Prose (extra SEO copy) ─── */
.seo-prose {
    padding: 56px 0;
    background: var(--bg-subtle);
}

.seo-prose__content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.seo-prose__content p:last-child {
    margin-bottom: 0;
}

.seo-cta {
    padding-bottom: 80px;
}

/* ─── Core Article Layout (sticky TOC) ─── */
.seo-article {
    padding: 56px 0 64px;
    background: var(--card-bg);
    border-block: 1px solid var(--border-light);
}

.seo-article__grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.seo-article__sidebar {
    position: relative;
}

.seo-article__toc {
    position: sticky;
    top: 88px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 14px;
    box-shadow: var(--shadow-xs);
}

.seo-article__toc-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin: 0 0 10px 4px;
}

.seo-article__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seo-article__toc-link {
    display: block;
    padding: 8px 10px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    line-height: 1.35;
    border-left: 2px solid transparent;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.seo-article__toc-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.seo-article__toc-link.is-active {
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-light);
    border-left-color: var(--primary);
}

.seo-rich-text section {
    margin-bottom: 40px;
    scroll-margin-top: 96px;
}

.seo-rich-text section:last-child {
    margin-bottom: 0;
}

.seo-rich-text h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.25;
}

.seo-rich-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 20px 0 8px;
}

.seo-rich-text p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.seo-rich-text ul,
.seo-rich-text ol {
    margin: 0 0 16px 0;
    padding-left: 1.35rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.seo-rich-text li {
    margin-bottom: 8px;
}

.seo-rich-text strong {
    color: var(--text-main);
    font-weight: 600;
}

.seo-rich-text blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--primary);
    background: var(--primary-soft);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.seo-rich-text blockquote p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
}

/* ─── Templates & Samples ─── */
.seo-templates {
    padding: 64px 0;
    background: var(--bg-subtle);
}

.seo-templates__panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.seo-templates__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
    padding: 6px 6px 0;
}

.seo-templates__tab {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.seo-templates__tab:hover {
    color: var(--text-main);
}

.seo-templates__tab.is-active {
    background: var(--card-bg);
    color: var(--primary);
    box-shadow: 0 -1px 0 var(--card-bg);
}

.seo-templates__content {
    padding: 24px;
}

.seo-templates__content[hidden] {
    display: none;
}

.seo-templates__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 16px;
    line-height: 1.5;
}

.seo-templates__preview {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: auto;
    max-height: 320px;
    margin-bottom: 16px;
}

.seo-templates__code {
    margin: 0;
    padding: 18px;
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--text-main);
    white-space: pre-wrap;
    word-break: break-word;
}

.seo-templates__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.seo-templates__copy-toast {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--success);
}

/* ─── Manual vs Auto (two columns) ─── */
.seo-mva {
    padding: 64px 0;
}

.seo-mva__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.seo-mva__col {
    border-radius: var(--radius-xl);
    padding: 24px 22px;
    border: 2px solid var(--border);
}

.seo-mva__col--manual {
    background: var(--bg);
}

.seo-mva__col--auto {
    background: var(--primary-soft);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: var(--shadow-sm);
}

.seo-mva__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.seo-mva__head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.seo-mva__badge {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.seo-mva__badge--manual {
    background: #fef2f2;
    color: var(--danger);
}

.seo-mva__badge--auto {
    background: var(--primary);
    color: #fff;
}

.seo-mva__list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.seo-mva__list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.seo-mva__list li:last-child {
    border-bottom: none;
}

.seo-mva__col--manual .seo-mva__list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 700;
}

.seo-mva__col--auto .seo-mva__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.seo-mva__footer {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-soft);
    margin: 0;
    padding-top: 8px;
}

.seo-mva__col--auto .seo-mva__footer {
    color: var(--primary);
}

/* ─── Product steps (horizontal) ─── */
.seo-product-steps {
    padding: 64px 0;
    background: var(--card-bg);
    border-block: 1px solid var(--border-light);
}

.seo-product-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.seo-product-steps__item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.seo-product-steps__timing {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.seo-product-steps__item:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: var(--shadow-sm);
}

.seo-product-steps__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
}

.seo-product-steps__icon svg {
    width: 24px;
    height: 24px;
}

.seo-product-steps__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.seo-product-steps__item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.seo-product-steps--vertical .seo-product-steps__list {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
}

/* ─── FAQ schema wrapper ─── */
.faq-schema-item {
    margin: 0;
}

/* ─── Fixed bottom CTA ─── */
.seo-cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
    padding: 12px 0;
    animation: seoCtaSlideUp 0.25s ease;
}

.seo-cta-fixed[hidden] {
    display: none;
}

.seo-cta-fixed__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.seo-cta-fixed__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.35;
}

.seo-cta-fixed__title strong {
    color: var(--primary);
}

.seo-cta-fixed__btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.88rem;
}

body.seo-has-fixed-cta {
    padding-bottom: 72px;
}

@keyframes seoCtaSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ─── Benefits ─── */
.seo-benefits {
    padding: 64px 0;
    background: var(--bg-subtle);
}

.seo-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.seo-benefit {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
}

.seo-benefit__emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.seo-benefit h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.seo-benefit p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ─── Showcase dev labels ─── */
.seo-showcase-label {
    position: relative;
    z-index: 50;
    max-width: 1140px;
    margin: 28px auto 0;
    padding: 6px 14px;
    width: fit-content;
    font-family: ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: #0f172a;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.seo-showcase-label:first-child {
    margin-top: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .seo-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .seo-hero__content {
        text-align: center;
    }

    .seo-hero .hero-lead {
        margin-inline: auto;
    }

    .seo-hero .hero-actions {
        justify-content: center;
    }

    .seo-hero .hero-trust {
        justify-content: center;
    }

    .seo-features__grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-article__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .seo-article__toc {
        position: static;
    }

    .seo-article__toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .seo-article__toc-link {
        font-size: 0.78rem;
        padding: 6px 10px;
        border-left: none;
        background: var(--bg-subtle);
    }

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

@media (max-width: 768px) {
    .seo-mva__grid {
        grid-template-columns: 1fr;
    }

    .seo-cta-fixed__inner {
        flex-direction: column;
        text-align: center;
    }

    .seo-cta-fixed__btn {
        width: 100%;
    }

    .seo-pain__pair {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .seo-pain__arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .seo-features__grid--cols-3,
    .seo-features__grid--cols-4,
    .seo-features__grid--cols-2 {
        grid-template-columns: 1fr;
    }

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

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

    .seo-compare__row--head {
        display: none;
    }

    .seo-compare__cell {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .seo-compare__cell--label {
        background: var(--bg-subtle);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding-top: 12px;
    }

    .seo-compare__row .seo-compare__cell--left::before {
        content: 'Manual: ';
        font-weight: 700;
        color: var(--text-soft);
    }

    .seo-compare__row .seo-compare__cell--right::before {
        content: 'AI Note Taker: ';
        font-weight: 700;
        color: var(--primary);
    }
}
