.service-page .topbar {
  width: min(calc(100% - 2rem), var(--max-width));
}

.service-page .brand-mark {
  width: 10rem;
  height: 8.5rem;
}

.service-page .brand-mark img {
  filter: brightness(1.18) contrast(0.94);
}

.service-page .menu a {
  color: #23313d;
}

.service-subhero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12, 21, 29, 0.9), rgba(12, 21, 29, 0.57) 58%, rgba(12, 21, 29, 0.16)),
    var(--service-hero-image);
  background-position: center;
  background-size: cover;
}

.service-subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.46;
}

.service-subhero .topbar {
  position: relative;
}

.service-subhero .menu a {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.service-hero-copy {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: auto;
  padding: 4rem 0 5.25rem;
  color: #fff;
}

.service-hero-copy h1 {
  max-width: 860px;
  margin: 0.55rem 0 1rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.service-hero-copy .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
}

.service-main {
  padding: 1.4rem 0 2.5rem;
}

.service-section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.service-intro-grid,
.service-feature-grid,
.service-related-grid {
  display: grid;
  gap: 1rem;
}

.service-intro-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.service-panel,
.service-feature,
.service-related-card,
.service-cta {
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.service-panel {
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.service-panel h2,
.service-section h2 {
  margin: 0.4rem 0 1rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-panel p,
.service-feature p,
.service-local p,
.service-related-card p {
  color: var(--muted);
  line-height: 1.72;
}

.service-checklist {
  display: grid;
  gap: 0.76rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding-left: 1.4rem;
  color: #3d4b58;
  font-weight: 700;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  background: #435566;
}

.service-feature-grid,
.service-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-feature {
  min-height: 100%;
  padding: 1.35rem;
}

.service-feature h3,
.service-related-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.service-related-card {
  display: block;
  padding: 1.35rem;
  color: var(--text);
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease;
}

.service-related-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.92);
}

.service-related-card strong {
  display: inline-flex;
  margin-top: 0.4rem;
  color: #3b4e5e;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-local {
  max-width: 860px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.service-cta h2 {
  margin: 0 0 0.5rem;
}

.service-cta p {
  margin: 0;
  color: var(--muted);
}

.service-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.8rem 0 2.2rem;
  position: relative;
  z-index: 1;
}

.service-footer a {
  color: inherit;
}

@media (max-width: 820px) {
  .service-page .brand-mark {
    width: 8.4rem;
    height: 7rem;
  }

  .service-subhero {
    min-height: 570px;
  }

  .service-subhero .topbar {
    align-items: flex-start;
  }

  .service-subhero .menu {
    background: rgba(20, 29, 37, 0.93);
  }

  .service-intro-grid,
  .service-feature-grid,
  .service-faq-grid,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    padding-bottom: 3.5rem;
  }

  .service-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
