
/* SEO landing pages */
.seo-page {
    min-height: 100vh;
}

.seo-hero {
    padding: 10.5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.seo-hero::before,
.seo-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.seo-hero::before {
    top: -180px;
    left: -220px;
    background: radial-gradient(circle, rgba(157,78,221,.16), transparent 68%);
}
.seo-hero::after {
    right: -220px;
    bottom: -260px;
    background: radial-gradient(circle, rgba(58,134,255,.12), transparent 68%);
}
.seo-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.seo-breadcrumbs {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: .85rem;
}
.seo-breadcrumbs a {
    color: var(--text-muted);
}
.seo-breadcrumbs a:hover {
    color: var(--text-light);
}
.seo-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    letter-spacing: -.045em;
    margin-bottom: 1.25rem;
}
.seo-hero .lead {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.18rem;
    line-height: 1.75;
}
.seo-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.5rem;
}
.seo-note {
    color: var(--text-muted);
    font-size: .88rem;
}

.seo-section {
    padding: 5.5rem 0;
}
.seo-section.alt {
    background: var(--bg-darker);
}
.seo-section-header {
    max-width: 760px;
    margin: 0 auto 2.8rem;
    text-align: center;
}
.seo-section-header h2 {
    font-size: 2.3rem;
    margin-bottom: .85rem;
    letter-spacing: -.025em;
}
.seo-section-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.25rem;
}
.seo-card {
    padding: 1.6rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: var(--glass-bg);
}
.seo-card h3 {
    font-size: 1.08rem;
    margin-bottom: .55rem;
}
.seo-card p {
    color: var(--text-muted);
    font-size: .93rem;
    margin-bottom: 1rem;
}
.seo-card-link {
    color: var(--primary-blue);
    font-size: .9rem;
    font-weight: 650;
}
.seo-card-link:hover {
    color: var(--text-light);
}

.seo-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
    align-items: center;
}
.seo-feature-grid.reverse .seo-feature-copy { order: 2; }
.seo-feature-grid.reverse .seo-feature-media { order: 1; }
.seo-feature-media {
    padding: .5rem;
    border-radius: 16px;
}
.seo-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.seo-feature-copy h2 {
    font-size: 2.1rem;
    margin-bottom: .9rem;
}
.seo-feature-copy p {
    color: var(--text-muted);
    font-size: 1.03rem;
    margin-bottom: 1rem;
}
.seo-checklist {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}
.seo-checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .65rem;
    color: #d8dce3;
}
.seo-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6fdc4f;
    font-weight: 800;
}

.seo-platform-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
}
.seo-platform-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .8rem;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--glass-bg);
    color: var(--text-light);
    font-size: .84rem;
    font-weight: 650;
}
.seo-platform-pill img {
    width: 17px;
    height: 17px;
}

.seo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.seo-step {
    padding: 1.5rem;
    text-align: center;
}
.seo-step-number {
    width: 42px;
    height: 42px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    font-weight: 800;
}
.seo-step h3 {
    margin-bottom: .45rem;
    font-size: 1.04rem;
}
.seo-step p {
    color: var(--text-muted);
    font-size: .92rem;
}

.seo-faq {
    max-width: 820px;
    margin: 0 auto;
}
.seo-faq-item {
    border-top: 1px solid var(--glass-border);
    padding: 1.35rem 0;
}
.seo-faq-item:last-child {
    border-bottom: 1px solid var(--glass-border);
}
.seo-faq-item h3 {
    font-size: 1.03rem;
    margin-bottom: .45rem;
}
.seo-faq-item p {
    color: var(--text-muted);
    margin: 0;
}

.seo-cta {
    padding: 5rem 0 6.5rem;
}
.seo-cta-box {
    text-align: center;
    padding: 3.25rem 2rem;
    border: 1px solid rgba(157,78,221,.28);
    background: linear-gradient(135deg, rgba(157,78,221,.08), rgba(58,134,255,.06));
}
.seo-cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: .65rem;
}
.seo-cta-box p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.seo-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
}
.seo-feature-list .seo-card {
    min-height: 100%;
}

.seo-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}
.seo-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--glass-bg);
}
.seo-table th,
.seo-table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
    font-size: .9rem;
}
.seo-table th {
    color: var(--text-light);
    background: rgba(255,255,255,.02);
}
.seo-table td {
    color: var(--text-muted);
}
.seo-table tr:last-child td {
    border-bottom: 0;
}
.seo-table .highlight {
    background: rgba(157,78,221,.07);
    color: var(--text-light);
}

.seo-related {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
}
.seo-related a {
    display: block;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
}
.seo-related strong {
    display: block;
    margin-bottom: .3rem;
}
.seo-related span {
    color: var(--text-muted);
    font-size: .84rem;
}

@media (max-width: 900px) {
    .seo-grid,
    .seo-related { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .seo-feature-grid { grid-template-columns: 1fr; }
    .seo-feature-grid.reverse .seo-feature-copy,
    .seo-feature-grid.reverse .seo-feature-media { order: initial; }
    .seo-steps { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .seo-hero { padding-top: 8rem; }
    .seo-grid,
    .seo-feature-list,
    .seo-related { grid-template-columns: 1fr; }
    .seo-section { padding: 4rem 0; }
    .seo-section-header h2 { font-size: 1.85rem; }
    .seo-hero .lead { font-size: 1.05rem; }
    .seo-cta { padding-bottom: 4.5rem; }
}
