/* SEO Landing Pages: Competitor Comparison + Industry Verticals
   Uses em units (1em = 16px) because Ghost sets html font-size to 62.5% (10px).
   All sizing relative to the .sl-page container which resets to 16px. */

#gh-head {
  display: none !important;
}

nav#navbar {
  z-index: 999999999 !important;
}

.seo-landing-page {
  font-size: 1.6rem; /* reset to 16px in Ghost's 62.5% context */
  margin-top: 0 !important;
}

.sl-page {
  max-width: 52em;
  margin: 0 auto;
  padding: 6em 1.25em 4em;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Breadcrumbs */
.sl-breadcrumbs {
  font-size: 0.875em;
  color: #666;
  margin-bottom: 2em;
}
.sl-breadcrumbs a {
  color: #666;
  text-decoration: none;
}
.sl-breadcrumbs a:hover {
  color: #FF6B2C;
}
.sl-breadcrumbs .sep {
  margin: 0 0.4em;
  color: #ccc;
}

/* Hero */
.sl-hero {
  text-align: center;
  margin-bottom: 2.5em;
}
.sl-hero h1 {
  font-size: clamp(1.75em, 4vw, 2.5em);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
.sl-subtitle {
  font-size: 1.125em;
  color: #555;
  max-width: 36em;
  margin: 0 auto 1.5em;
  line-height: 1.5;
}
.sl-cta-btn {
  display: inline-block;
  background: #FF6B2C;
  color: #fff !important;
  font-weight: 600;
  font-size: 1em;
  padding: 0.75em 2em;
  border-radius: 0.5em;
  text-decoration: none;
  transition: background 0.2s;
}
.sl-cta-btn:hover {
  background: #e85a1e;
}

/* Verdict / Quick Summary Card */
.sl-verdict {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  padding: 1.5em 2em;
  margin-bottom: 2.5em;
}
.sl-verdict h2 {
  font-size: 1.25em;
  margin: 0 0 0.75em;
}
.sl-verdict p {
  margin: 0;
  line-height: 1.6;
}
.sl-savings {
  font-size: 1.5em;
  font-weight: 700;
  color: #FF6B2C;
  display: block;
  margin-bottom: 0.25em;
}

/* Pricing Comparison Table */
.sl-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5em;
  font-size: 0.9375em;
}
.sl-pricing-table th,
.sl-pricing-table td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.sl-pricing-table thead th {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 1em;
  border-bottom: 2px solid #e2e8f0;
}
.sl-pricing-table .sl-tonet-col {
  background: #fff7f3;
}
.sl-pricing-table thead .sl-tonet-col {
  background: #FF6B2C;
  color: #fff;
}
.sl-pricing-table .sl-price {
  font-weight: 600;
  font-size: 1.125em;
}
.sl-pricing-table .sl-tonet-price {
  color: #FF6B2C;
  font-weight: 700;
}

/* Feature Comparison Matrix */
.sl-features {
  margin-bottom: 2.5em;
}
.sl-features h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.sl-feature-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  overflow: hidden;
}
.sl-feature-row {
  display: contents;
}
.sl-feature-row > * {
  padding: 0.625em 1em;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}
.sl-feature-row:last-child > * {
  border-bottom: none;
}
.sl-feature-name {
  font-size: 0.9375em;
}
.sl-feature-check {
  justify-content: center;
  text-align: center;
  min-width: 6em;
  font-size: 0.875em;
}
.sl-feature-check.sl-tonet-col {
  background: #fff7f3;
}
.sl-feature-header {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 0.9375em;
}
.sl-feature-header.sl-tonet-col {
  background: #FF6B2C;
  color: #fff;
}
.sl-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.25em;
}
.sl-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.25em;
}
.sl-partial {
  color: #f59e0b;
  font-size: 0.8125em;
}

/* "What you don't get" / Missing section */
.sl-missing {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75em;
  padding: 1.5em 2em;
  margin-bottom: 2.5em;
}
.sl-missing h2 {
  font-size: 1.25em;
  margin: 0 0 1em;
  color: #dc2626;
}
.sl-missing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sl-missing li {
  padding: 0.5em 0;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
}
.sl-missing li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* Section (generic) */
.sl-section {
  margin-bottom: 2.5em;
}
.sl-section h2 {
  font-size: 1.5em;
  margin-bottom: 0.75em;
}
.sl-section p {
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Pain Points (Industry pages) */
.sl-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25em;
  margin-bottom: 2.5em;
}
.sl-pain-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75em;
  padding: 1.25em;
}
.sl-pain-card h3 {
  font-size: 1em;
  margin: 0 0 0.5em;
  color: #dc2626;
}
.sl-pain-card p {
  font-size: 0.9375em;
  margin: 0;
  line-height: 1.5;
  color: #555;
}

/* Key Features Grid (Industry pages) */
.sl-key-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25em;
  margin-bottom: 2.5em;
}
.sl-key-feature {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  padding: 1.25em;
}
.sl-key-feature h3 {
  font-size: 1em;
  margin: 0 0 0.5em;
  color: #FF6B2C;
}
.sl-key-feature p {
  font-size: 0.9375em;
  margin: 0;
  line-height: 1.5;
  color: #555;
}

/* Pricing section (simple) */
.sl-pricing-simple {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  padding: 2em;
  text-align: center;
  margin-bottom: 2.5em;
}
.sl-pricing-simple .sl-big-price {
  font-size: 2.5em;
  font-weight: 700;
  color: #FF6B2C;
  display: block;
}
.sl-pricing-simple .sl-price-sub {
  font-size: 1em;
  color: #666;
  display: block;
  margin-bottom: 1em;
}
.sl-pricing-perks {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75em 1.5em;
}
.sl-pricing-perks li {
  font-size: 0.9375em;
  color: #333;
}
.sl-pricing-perks li::before {
  content: "\2713 ";
  color: #22c55e;
  font-weight: 700;
}

/* AI Content Section */
.sl-unique-content {
  margin-bottom: 2.5em;
}
.sl-unique-content h2 {
  font-size: 1.5em;
  margin-bottom: 0.75em;
}
.sl-unique-content p {
  line-height: 1.7;
  margin-bottom: 1em;
}

/* FAQ */
.sl-faq {
  margin-bottom: 2.5em;
}
.sl-faq h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.sl-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sl-faq-list details {
  border-bottom: 1px solid #e2e8f0;
}
.sl-faq-list summary {
  padding: 1em 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 1em;
  list-style: none;
}
.sl-faq-list summary::-webkit-details-marker {
  display: none;
}
.sl-faq-list summary::before {
  content: "+";
  display: inline-block;
  width: 1.5em;
  font-weight: 700;
  color: #FF6B2C;
}
.sl-faq-list details[open] summary::before {
  content: "\2212";
}
.sl-faq-list details p {
  padding: 0 0 1em 1.5em;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
.sl-cta {
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 0.75em;
  padding: 2.5em 2em;
  margin-bottom: 2.5em;
}
.sl-cta h2 {
  font-size: 1.5em;
  margin: 0 0 0.5em;
  color: #fff;
}
.sl-cta p {
  color: #ccc;
  margin: 0 0 1.5em;
}

/* Sources */
.sl-sources {
  font-size: 0.8125em;
  color: #888;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5em;
}
.sl-sources-title {
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5em;
}
.sl-sources ol {
  padding-left: 1.25em;
  margin: 0;
}
.sl-sources li {
  margin-bottom: 0.25em;
}
.sl-sources a {
  color: #888;
}
.sl-sources a:hover {
  color: #FF6B2C;
}

/* Cite links */
.sl-cite {
  font-size: 0.75em;
  vertical-align: super;
  color: #FF6B2C;
  text-decoration: none;
}
.sl-cite:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 48em) {
  .sl-page {
    padding: 1.5em 1em 3em;
  }
  .sl-pain-grid,
  .sl-key-features {
    grid-template-columns: 1fr;
  }
  .sl-feature-grid {
    font-size: 0.875em;
  }
  .sl-feature-check {
    min-width: 4.5em;
  }
  .sl-pricing-table {
    font-size: 0.875em;
  }
  .sl-pricing-table th,
  .sl-pricing-table td {
    padding: 0.5em 0.625em;
  }
  .sl-verdict,
  .sl-missing {
    padding: 1.25em;
  }
}
