/* SEO landing pages – extends legacy style.css + legal.css (imported from Astro pages) */

.seo-landing main {
  display: block;
}

.seo-landing .seo-lang-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.seo-landing .seo-answer-capsule {
  background: var(--primary-color-10);
  border: 1px solid var(--primary-color-20);
  border-left: 3px solid var(--primary-color);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.seo-landing .seo-answer-capsule strong {
  color: var(--primary-color);
}

/* Cards: no top accent bar, no hover shift */
.seo-landing .services-detail .service-detail-card::before {
  display: none;
}

.seo-landing .services-detail .service-detail-card:hover {
  transform: none;
}

/* Headings: plain, no underline bars */
.seo-landing .services-detail .service-detail-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  border-bottom: none;
}

.seo-landing .services-detail .service-detail-content h2::after {
  display: none;
}

.seo-landing .services-detail .service-detail-content h2:first-of-type {
  margin-top: 0;
}

/* Lists: simple bullets instead of boxed rows */
.seo-landing .services-detail .service-features {
  display: block;
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0.75rem 0 1.5rem;
  gap: 0;
}

.seo-landing .services-detail .service-features li {
  padding: 0.2rem 0;
  margin-bottom: 0.35rem;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-weight: 400;
  line-height: 1.65;
}

.seo-landing .services-detail .service-features li::before {
  content: none;
}

.seo-landing .services-detail .service-features li:hover {
  transform: none;
  box-shadow: none;
  background: none;
  border-color: transparent;
}

.seo-landing .seo-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.seo-landing .seo-link-pills .btn {
  text-decoration: none;
  border-bottom: none;
}

/* Override legal.css link colours inside buttons */
.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn-primary {
  color: var(--text-white);
}

.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color-30);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-sm);
}

.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn:hover {
  border-bottom: none;
  transform: none;
}

.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn-primary:hover,
.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn-secondary:hover {
  color: var(--text-white);
}

.seo-landing .services-detail .service-detail-content .seo-link-pills a.btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.seo-landing .cta-section .btn-primary:hover {
  color: var(--text-white);
}

.seo-landing .seo-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.seo-landing .seo-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--bg-white);
}

.seo-landing .seo-table th,
.seo-landing .seo-table td {
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
}

.seo-landing .seo-table tr:last-child td {
  border-bottom: none;
}

.seo-landing .seo-table th {
  background: var(--primary-color-10);
  font-weight: 700;
  color: var(--text-dark);
}

.seo-landing .seo-table td {
  color: var(--text-light);
}

.seo-landing .seo-steps {
  list-style: decimal;
  padding-left: 1.35rem;
  margin: 0.75rem 0 0;
  display: block;
}

.seo-landing .seo-steps li {
  padding: 0.25rem 0;
  margin-bottom: 0.4rem;
  background: none;
  border: none;
  color: var(--text-light);
  line-height: 1.65;
}

.seo-landing .seo-steps li::before {
  content: none;
}

@media (max-width: 768px) {
  .seo-landing .page-header h1 {
    font-size: 2rem;
  }

  .seo-landing .services-detail .service-detail-content {
    padding: 2rem 1.5rem;
  }
}
