.design-hero {
  min-height: auto;
  padding-top: 13rem;
  padding-bottom: 7rem;
}

.design-hero h1 {
  max-width: 1050px;
}

.design-hero .hero-sub {
  max-width: 710px;
  color: var(--muted);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.hero-proof li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--accent);
  font-weight: 700;
}

.content-width {
  width: 100%;
  max-width: none;
  margin: 0;
}

.design-intro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.design-intro-heading {
  position: static;
}

.long-copy {
  max-width: none;
}

.long-copy p {
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.9;
}

.long-copy strong {
  color: var(--text);
  font-weight: 600;
}

.design-types-section {
  background: var(--bg-mid);
}

.included-section {
  background: var(--bg);
}

.faq-section {
  background: var(--bg-mid);
}

.design-types-grid,
.included-grid,
.benefits-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.design-type,
.included-item,
.benefit-card,
.audience-card {
  min-height: 285px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.included-item,
.benefit-card,
.audience-card {
  background: var(--bg-mid);
}

.design-type:hover,
.included-item:hover,
.benefit-card:hover,
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.07);
}

.card-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.design-type h3,
.included-item h3,
.benefit-card h3,
.audience-card h3 {
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.15;
}

.design-type p,
.included-item p,
.benefit-card p,
.audience-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.design-type a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.design-process {
  background: var(--bg-dark);
}

.design-process h2 {
  color: var(--white);
}

.design-process .section-label {
  color: #93c5fd;
}

.design-process .section-intro,
.design-process .step-content p {
  color: var(--muted-dark);
}

.design-process .process-step {
  border-color: var(--border-dark);
}

.design-process .step-content h3 {
  color: var(--white);
}

.seo-copy {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Alternating section backgrounds to match the homepage rhythm:
   hero (light) → intro (bg) → types (mid) → included (bg) →
   process (mid) → seo (bg) → related (mid) → cta (bg) */
main > section:has(.seo-copy) {
  background: var(--bg);
}

main > section:has(.related-service-grid) {
  background: var(--bg-mid);
}

main > #process {
  background: var(--bg-mid);
}

.seo-copy h2 {
  margin-top: 3.5rem;
}

.seo-copy h2:first-of-type {
  margin-top: 0;
}

.seo-copy p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.seo-copy ul {
  margin: 1rem 0 1.8rem 1.25rem;
  color: var(--muted);
}

.seo-copy li {
  margin-bottom: 0.65rem;
  line-height: 1.75;
}

.local-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
}

.local-service-strip div {
  padding: 1.6rem;
  background: var(--bg-mid);
}

.local-service-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.local-service-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-section .faq-layout {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.related-service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.related-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.related-service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.related-service-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.related-service-card span {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Match homepage: full-bleed sections with shared 4rem side padding */
.article-cta-wrapper {
  padding: 6rem 4rem;
  background: var(--bg);
}

.article-cta-wrapper .article-cta {
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .design-types-grid,
  .included-grid,
  .benefits-grid,
  .audience-grid,
  .related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  .design-hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
  }

  .design-intro-layout {
    gap: 1.25rem;
  }

  .article-cta-wrapper {
    padding: 4rem 1.25rem;
  }

  .design-types-grid,
  .included-grid,
  .benefits-grid,
  .audience-grid,
  .related-service-grid,
  .local-service-strip {
    grid-template-columns: 1fr;
  }

  .design-type,
  .included-item,
  .benefit-card,
  .audience-card {
    min-height: auto;
  }

}