/* SEO service and location pages */
body.seo-page {
  background: #ffffff;
  color: #111111;
}

.seo-page p,
.seo-page li {
  color: #4b5563;
}

.seo-page .section {
  padding: 64px 0;
}

.seo-hero {
  margin-top: 0;
  background: #ffffff;
}

.seo-hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  overflow: hidden;
  background: #f4f4f5;
}

.seo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-intro {
  padding: 44px 0 24px;
  background: #ffffff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #111111;
  font-weight: 600;
}

.breadcrumbs span {
  color: #6b7280;
}

.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.16);
  color: #111111;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.seo-intro h1 {
  color: #111111;
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 900px;
  margin-bottom: 16px;
}

.seo-lede {
  max-width: 920px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.seo-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.seo-card + .seo-card {
  margin-top: 24px;
}

.seo-card h2,
.seo-card h3 {
  color: #111111;
  margin-bottom: 18px;
}

.benefit-list,
.check-list,
.process-list {
  display: grid;
  gap: 14px;
}

.benefit-list li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit-list i,
.check-list i,
.process-list strong {
  color: #d9a900;
}

.materials-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.material-chip,
.related-card {
  display: block;
  background: #fffdf1;
  border: 1px solid rgba(217, 169, 0, 0.24);
  border-radius: 8px;
  padding: 16px;
}

.material-chip strong,
.related-card strong {
  display: block;
  color: #111111;
  margin-bottom: 6px;
}

.related-card span {
  color: #b78d00;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-panel {
  background: #111111;
  color: #ffffff;
  border-radius: 8px;
  padding: 30px;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #111111;
  text-align: left;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-answer.active {
  display: block;
}

.cta-band {
  background: linear-gradient(135deg, #111111, #27272a);
  color: #ffffff;
  border-radius: 8px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-buttons .float-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .seo-page .section {
    padding: 42px 0;
  }

  .seo-intro {
    padding-top: 32px;
  }

  .seo-card,
  .quote-panel,
  .cta-band {
    padding: 22px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
