.service-page {
  background: var(--white);
}

.service-page main {
  overflow: hidden;
}

.service-hero {
  position: relative;
  padding: 150px 0 92px;
  background:
    linear-gradient(120deg, rgba(220, 238, 248, 0.54), transparent 52%),
    var(--white);
}

.service-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue-600) 0 68%, var(--red-500) 68%);
  content: "";
}

.service-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.85fr);
  gap: clamp(48px, 7vw, 100px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--blue-600);
  font-weight: 750;
}

.service-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6.1vw, 5.8rem);
}

.service-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.service-facts li {
  padding: 7px 13px;
  color: var(--navy-900);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.service-hero-media {
  position: relative;
  margin: 0;
}

.service-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 90px 18px 18px;
  box-shadow: var(--shadow);
}

.service-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(6, 21, 43, 0.88);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 750;
}

.service-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
}

.service-intro-grid h2 {
  max-width: 510px;
}

.service-intro-copy > p {
  max-width: 690px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.08rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-grid article > span {
  display: block;
  margin-bottom: 45px;
  color: var(--red-500);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.category-grid h3 {
  margin-bottom: 15px;
}

.category-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-catalogs {
  color: var(--white);
  background: var(--navy-900);
}

.service-catalogs h2 {
  color: var(--white);
}

.service-catalogs .price-layout > div:first-child > p:last-child {
  color: #b8c7d6;
}

.operations-section {
  background: var(--paper);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.operation-card {
  min-height: 280px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.operation-card > span {
  display: block;
  margin-bottom: 54px;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operation-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.operation-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.operation-hours {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
}

.operation-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.operation-hours dt,
.operation-hours dd {
  margin: 0;
}

.operation-hours dd {
  font-weight: 800;
  white-space: nowrap;
}

.operation-card-primary {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.operation-card-primary > span,
.operation-card-primary strong,
.operation-card-primary .operation-hours,
.operation-card-primary p {
  color: var(--white);
}

.coverage-section {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(34, 136, 200, 0.14), transparent 55%),
    var(--navy-950);
}

.coverage-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(40px, 8vw, 110px);
}

.coverage-grid h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.coverage-grid > p {
  margin-bottom: 6px;
  color: #bdd0df;
  font-size: 1.05rem;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 44px 26px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--blue-600);
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 36px 25px 0;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .service-hero {
    padding-top: 126px;
  }

  .service-hero-grid,
  .service-intro-grid,
  .coverage-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .service-hero-copy,
  .service-intro-grid > div:first-child,
  .coverage-grid,
  .faq-heading {
    text-align: center;
  }

  .breadcrumbs,
  .service-hero-copy .eyebrow,
  .service-hero h1,
  .service-lead,
  .service-facts {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero-copy .hero-actions {
    justify-content: center;
  }

  .service-hero-media {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .service-intro-grid h2,
  .service-intro-copy > p,
  .coverage-grid h2,
  .coverage-grid > p {
    margin-right: auto;
    margin-left: auto;
  }

  .operations-grid {
    grid-template-columns: 1fr;
  }

  .operation-card {
    min-height: 230px;
    text-align: center;
  }

  .operation-card > span {
    margin-bottom: 35px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .service-hero {
    padding: 112px 0 72px;
  }

  .service-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .service-lead {
    font-size: 1rem;
  }

  .service-hero-copy .hero-actions {
    flex-direction: column;
  }

  .service-hero-copy .button {
    width: 100%;
  }

  .service-hero-media img {
    border-radius: 50px 12px 12px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-grid article {
    min-height: 230px;
    text-align: center;
  }

  .coverage-section {
    padding: 72px 0;
  }

  .faq-list summary {
    font-size: 1rem;
  }
}

.service-page :focus-visible {
  outline: 3px solid #f3ad31;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #071a35;
}
