/* Shared styles for the programmatic SEO comparison + guide pages.
   Loaded by everything under /compare/ and /guides/. */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #FFD300; text-decoration: none; }
a:hover { text-decoration: underline; }

.seo-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.seo-header .logo { color: #FFD300; font-weight: 800; font-size: 18px; }
.seo-header nav a { color: #fff; margin-left: 24px; font-weight: 500; font-size: 14px; }

.seo-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.seo-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFD300;
  font-weight: 700;
  margin-bottom: 12px;
}

.seo-container h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.seo-lede {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}

.seo-container h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.seo-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.seo-container p,
.seo-container li {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.seo-container p { margin-bottom: 16px; }

.seo-container ul, .seo-container ol {
  margin: 0 0 24px 24px;
  color: rgba(255,255,255,0.85);
}

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

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 15px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-table th {
  background: rgba(255,209,0,0.06);
  color: #FFD300;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: #5fd170; font-weight: 700; }
.compare-table .no  { color: #ff8080; font-weight: 700; }
.compare-table .partial { color: #ffd166; font-weight: 700; }

.faq {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.faq-item summary {
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+ "; color: #FFD300; }
.faq-item[open] summary::before { content: "− "; }
.faq-item p { padding-top: 12px; }

.cta-block {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255,209,0,0.12), rgba(255,209,0,0.04));
  border: 1px solid rgba(255,209,0,0.2);
  border-radius: 16px;
}
.cta-block h2 { margin-top: 0; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #FFD300;
  color: #000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.cta-btn:hover { text-decoration: none; opacity: 0.9; }

.seo-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.seo-footer a { color: rgba(255,255,255,0.7); margin: 0 8px; }

@media (max-width: 600px) {
  .seo-container h1 { font-size: 30px; }
  .seo-container { padding: 32px 16px 64px; }
}
