/* Oblivion SEO Pages — shared stylesheet */
:root {
  --navy: #0f2342;
  --gold: #c49520;
  --bg: #f8fafc;
  --bg2: #eef3fa;
  --card2: #eef3fa;
  --text1: #0f2342;
  --text2: #3d5578;
  --text3: #5a7494;
  --border: #d1dce8;
  --green: #16a34a;
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text1); background: var(--bg); line-height: 1.6; }
a { color: var(--navy); }
a:hover { color: var(--gold); }

/* ── Nav ── */
.site-header { background: #0d1e3a; border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo-link { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-badge { width: 32px; height: 32px; background: linear-gradient(135deg, #c49520 0%, #a07818 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: #080b14; flex-shrink: 0; }
.brand { font-size: 15px; font-weight: 700; color: #e8f0fa; letter-spacing: -0.01em; }
.brand span { color: #c49520; }
.nav-links { list-style: none; display: flex; gap: 8px; align-items: center; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: #e8f0fa; padding: 6px 14px; border-radius: 8px; transition: background 0.15s; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #e8f0fa; }
.nav-cta { background: linear-gradient(135deg, #c49520 0%, #a07818 100%) !important; color: #fff !important; padding: 8px 20px !important; border-radius: 8px; font-weight: 700 !important; }
.nav-cta:hover { opacity: 0.9; }

/* ── SEO page layout ── */
.seo-page { max-width: 900px; margin: 0 auto; padding: 0 24px 64px; }
.seo-hero { padding: 48px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.seo-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--navy); line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 12px; }
.hero-sub { font-size: 16px; color: var(--text2); max-width: 640px; }
.seo-content { margin-bottom: 48px; }
.seo-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.seo-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.seo-content p { color: var(--text2); margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.seo-content ul, .seo-content ol { margin: 0 0 20px 24px; color: var(--text2); font-size: 15px; }
.seo-content li { margin-bottom: 8px; line-height: 1.6; }
.feat-list { list-style: none; margin-left: 0; }
.feat-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.feat-list li:last-child { border-bottom: none; }

/* ── CTA block ── */
.cta-block { background: var(--navy); color: #fff; padding: 40px; border-radius: var(--radius); text-align: center; margin: 40px 0; }
.cta-block h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.cta-sub { font-size: 12px; color: rgba(255,255,255,0.6) !important; margin-top: 12px !important; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 8px; font-weight: 800; font-size: 15px; text-decoration: none; transition: opacity 0.2s; }
.btn-primary:hover { opacity: 0.9; color: var(--navy); }

/* ── Comparison table ── */
.comp-intro { font-size: 16px; color: var(--text2); margin-bottom: 32px; }
.comp-table { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
@media (max-width: 640px) { .comp-table { grid-template-columns: 1fr; } }
.comp-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.comp-col h3 { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.comp-col.winner { border-color: var(--green); }
.comp-col.winner h3 { color: var(--green); }
.comp-col.loser h3 { color: var(--text3); }
.comp-col ul { list-style: none; margin: 0; }
.comp-col li { padding: 6px 0; font-size: 14px; color: var(--text2); border-bottom: 1px solid var(--border); }
.comp-col li:last-child { border: none; }

/* ── Guide ── */
.guide-intro, .vert-intro, .page-intro, .comp-intro { font-size: 16px; color: var(--text2); margin-bottom: 32px; line-height: 1.8; }
.guide-cta { background: var(--bg2); border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 40px; }

/* ── Related pages ── */
.related-pages { background: var(--bg2); border-radius: var(--radius); padding: 24px 28px; margin: 40px 0; }
.related-pages h3 { font-size: 1rem; font-weight: 700; color: var(--text2); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.related-pages ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.related-pages li a { display: inline-block; padding: 6px 14px; background: #fff; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--navy); text-decoration: none; font-weight: 500; }
.related-pages li a:hover { border-color: var(--navy); }

/* ── Directory page ── */
.dir-page { max-width: 1100px; }
.dir-content { padding: 0; }
.dir-section { margin-bottom: 48px; }
.dir-section h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.dir-country-grid, .dir-link-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.dir-country-card { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #fff; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: var(--navy); font-size: 14px; font-weight: 600; }
.dir-country-card:hover { border-color: var(--navy); color: var(--navy); }
.dir-count { font-size: 11px; color: var(--text3); font-weight: 400; }
.dir-link-grid a { display: inline-block; padding: 8px 14px; background: #fff; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--navy); text-decoration: none; font-weight: 500; }
.dir-link-grid a:hover { border-color: var(--navy); }

/* ── Footer ── */
.site-footer { background: var(--navy); color: #fff; padding: 48px 24px 32px; margin-top: 64px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
.footer-col ul a:hover { color: #fff; }
.footer-cta-col p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 16px; }
.footer-legal { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 1200px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .seo-hero { padding: 32px 0 24px; }
  .cta-block { padding: 28px 20px; }
  .comp-table { grid-template-columns: 1fr; }
}
