.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-sec);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { opacity: .75; }

.service-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, var(--orange-bg) 0%, #fff 60%);
}
.service-icon-lg {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-hero .service-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.service-lead {
  font-size: 1.1rem;
  color: var(--text-sec);
  max-width: 560px;
  margin-bottom: 2rem;
}

.service-content { background: #fff; }
.service-content-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: flex-start;
}

.service-detail-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .1rem;
}

.cta-card {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.cta-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-card p {
  font-size: .9rem;
  color: var(--text-sec);
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .service-content-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-card { position: static; }
}
