.service-anchor-nav {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
}

.service-anchor-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.service-anchor-nav a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.service-detail {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--slate-200);
}

.service-detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.deliverables {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--slate-200);
  background: var(--navy-900);
}

.deliverables h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.deliverables ul {
  margin-bottom: 0;
}

.service-process {
  display: grid;
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.4rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: process;
}

.process-card::before {
  position: absolute;
  top: 1.35rem;
  left: 1.25rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-light);
  content: counter(process);
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

@media (min-width: 820px) {
  .service-detail {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 4rem;
  }

  .service-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-card {
    padding: 4.4rem 1.3rem 1.4rem;
  }

  .process-card::before {
    top: 1.25rem;
  }
}
