.service-hero {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 54px;
  align-items: center;
  min-height: 520px;
  padding: 58px 0;
}

.service-hero h1 {
  max-width: 860px;
  margin-top: 14px;
  font-size: 54px;
}

.service-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #e2e6e9;
  font-size: 19px;
  line-height: 1.65;
}

.service-hero .breadcrumb {
  color: #cbd2d8;
}

.service-hero .breadcrumb a {
  color: var(--white);
}

.service-secondary {
  border-color: #7d8790;
  background: transparent;
  color: var(--white);
}

.service-secondary:hover {
  border-color: var(--white);
  background: #30363d;
}

.service-proof {
  min-width: 0;
  border: 1px solid #515860;
  border-radius: 8px;
  background: #22282e;
  padding: 26px;
}

.service-proof img {
  width: 80px;
  height: 80px;
  border: 1px solid #6f7881;
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.service-proof .proof-label {
  margin: 20px 0 12px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-proof ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.service-proof ol li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid #515860;
  padding: 11px 0;
  color: #f3f5f6;
  font-size: 14px;
  line-height: 1.4;
  counter-increment: process;
}

.service-proof ol li::before {
  content: counter(process);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.service-proof dl {
  margin: 0;
}

.service-proof dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid #515860;
  padding: 13px 0;
}

.service-proof dt {
  color: var(--acid);
  font-size: 22px;
  font-weight: 900;
}

.service-proof dd {
  margin: 0;
  color: #dce1e5;
  font-size: 13px;
  line-height: 1.45;
}

.service-answer {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-muted {
  color: var(--muted);
}

.section-kicker {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 178px;
  border: 1px solid var(--line);
  border-top: 5px solid #7cadc9;
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  text-decoration: none;
}

.service-card:nth-child(2n) {
  border-top-color: #e48070;
}

.service-card:nth-child(3n) {
  border-top-color: #d0ac43;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--ink);
  outline: 3px solid rgba(215, 255, 66, .8);
  outline-offset: 2px;
}

.service-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.35;
}

.service-card small {
  align-self: end;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.related-service-grid .service-card {
  min-height: 210px;
}

.package-grid,
.package-bridge {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.package-grid article,
.package-bridge > div {
  min-width: 0;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.package-grid article:last-child,
.package-bridge > div:last-child {
  border-top: 6px solid var(--acid);
}

.package-grid article:first-child,
.package-bridge > div:first-child {
  border-top: 6px solid #7cadc9;
}

.package-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-grid h3 {
  margin: 10px 0 4px;
  font-size: 23px;
}

.package-price,
.package-bridge span {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.package-grid p,
.package-bridge p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.package-grid ul {
  min-height: 184px;
  margin: 20px 0;
  padding-left: 20px;
}

.package-grid li {
  font-size: 14px;
}

.package-grid .button {
  width: 100%;
}

.package-bridge {
  margin: 20px 0;
}

.package-bridge strong {
  display: block;
  font-size: 19px;
}

.scope-note {
  margin-top: 16px;
  border-left: 5px solid var(--acid);
  background: var(--white);
  padding: 18px 20px;
}

.scope-note p {
  margin: 0;
  font-size: 14px;
}

.scope-note p + p {
  margin-top: 8px;
}

.credibility-section:target {
  scroll-margin-top: 16px;
}

@media (max-width: 900px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 48px 0;
  }

  .service-hero h1 {
    font-size: 43px;
  }

  .service-proof {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0 20px;
  }

  .service-proof .proof-label,
  .service-proof ol,
  .service-proof dl {
    grid-column: 2;
  }

  .service-proof img {
    grid-row: 1 / span 3;
  }

  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .related-service-grid .service-card {
    min-height: 0;
  }
}

@media (max-width: 660px) {
  .service-hero-grid {
    padding: 38px 0 42px;
  }

  .service-hero h1 {
    font-size: 36px;
  }

  .service-hero p {
    font-size: 17px;
  }

  .service-proof {
    display: block;
    padding: 20px;
  }

  .service-proof img {
    width: 64px;
    height: 64px;
  }

  .service-proof .proof-label {
    margin-top: 18px;
  }

  .service-directory,
  .package-grid,
  .package-bridge {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .package-grid ul {
    min-height: 0;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media print {
  .service-proof,
  .service-directory,
  .related-service-grid,
  .hero-actions,
  .profile-links {
    display: none !important;
  }

  .service-hero {
    background: var(--white);
    color: var(--ink);
  }

  .service-hero p,
  .service-hero .breadcrumb,
  .service-hero .breadcrumb a {
    color: var(--ink);
  }
}
