.service-page-body {
  background:
    radial-gradient(circle at 82% 6%, rgba(223, 36, 55, .14), transparent 28rem),
    var(--bg);
}

.service-page-body .site-header {
  background: rgba(14, 14, 18, .94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.service-page-body .nav-shell {
  justify-content: space-between;
}

.service-page-back {
  color: #d2d2d8;
  font-size: 13px;
  font-weight: 700;
}

.service-page-back:hover,
.service-page-back:focus-visible {
  color: var(--red);
}

.service-hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 92px;
}

.service-hero-image,
.service-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero-image {
  object-fit: cover;
}

.service-hero-shade {
  background: linear-gradient(90deg, rgba(14, 14, 18, .98), rgba(14, 14, 18, .78) 48%, rgba(14, 14, 18, .24)), linear-gradient(0deg, var(--bg), transparent 42%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.service-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  color: #a7a7b0;
  font-size: 12px;
}

.service-breadcrumb a:hover {
  color: var(--red);
}

.service-hero h1 {
  max-width: 790px;
  margin: 18px 0 0;
  font-family: var(--heading);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.service-hero h1 em {
  color: var(--red);
  font-style: normal;
}

.service-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c2c2c9;
  font-size: 18px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-content-section {
  padding: 100px 0;
}

.service-content-section.alt {
  background: var(--surface);
}

.service-intro-grid,
.service-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 70px;
  align-items: start;
}

.service-hero-content,
.service-intro-grid > *,
.service-cta-grid > *,
.price-panel {
  min-width: 0;
}

.service-copy h2,
.service-cta-grid h2 {
  margin: 10px 0 20px;
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.service-copy p,
.service-cta-grid p {
  color: var(--muted);
}

.price-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(223, 36, 55, .1), rgba(28, 28, 34, .9));
}

.price-panel h2 {
  margin: 0 0 20px;
  font-family: var(--heading);
  font-size: 22px;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list dt {
  color: #d8d8dd;
}

.price-list dd {
  margin: 0;
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  margin: 18px 0 0;
  color: #7f7f88;
  font-size: 11px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.detail-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-2);
}

.detail-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-card h3 {
  margin: 36px 0 10px;
  font-family: var(--heading);
  font-size: 20px;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-faq {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.service-faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}

.service-faq summary {
  color: #ededf0;
  font-weight: 800;
  cursor: pointer;
}

.service-faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-page-body .footer {
  margin-top: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 320;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #971525, var(--red) 58%, #ff7180);
  box-shadow: 0 0 18px rgba(223, 36, 55, .45);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.service-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -15% auto -15% -24%;
  width: 11%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  animation: service-light-sweep 8s 1.5s ease-in-out infinite;
}

.service-hero-image {
  animation: service-hero-drift 15s ease-in-out infinite alternate;
}

.service-breadcrumb,
.service-hero-content > .eyebrow,
.service-hero-content > h1,
.service-hero-content > p,
.service-hero-actions {
  opacity: 0;
  animation: service-copy-in .8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.service-breadcrumb { animation-delay: .08s; }
.service-hero-content > .eyebrow { animation-delay: .18s; }
.service-hero-content > h1 { animation-delay: .3s; }
.service-hero-content > p { animation-delay: .44s; }
.service-hero-actions { animation-delay: .58s; }

.motion-enabled .service-motion-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(.985);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-enabled .service-motion-item.is-visible {
  opacity: 1;
  transform: none;
}

.brand-mark,
.detail-card,
.price-panel,
.service-faq details,
.price-list div {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .25s ease, box-shadow .35s ease, background-color .25s ease;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-4deg) scale(1.07);
  box-shadow: 0 8px 24px rgba(223, 36, 55, .18);
}

.detail-card:hover,
.price-panel:hover {
  border-color: rgba(223, 36, 55, .46);
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .2);
}

.detail-card:hover span {
  color: #ff596b;
}

.price-list div:hover {
  transform: translateX(5px);
}

.service-faq details:hover,
.service-faq details[open] {
  border-color: rgba(223, 36, 55, .42);
  background: #202027;
  transform: translateX(4px);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -50% auto -50% -35%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
  pointer-events: none;
  transform: skewX(-18deg) translate3d(-180%, 0, 0);
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

.button:hover::after,
.button:focus-visible::after {
  transform: skewX(-18deg) translate3d(650%, 0, 0);
}

@keyframes service-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes service-hero-drift {
  from { transform: scale(1.02) translate3d(-.5%, 0, 0); }
  to { transform: scale(1.08) translate3d(.8%, -.6%, 0); }
}

@keyframes service-light-sweep {
  0%, 60% {
    opacity: 0;
    transform: skewX(-18deg) translate3d(0, 0, 0);
  }
  70% { opacity: .65; }
  88%, 100% {
    opacity: 0;
    transform: skewX(-18deg) translate3d(1250%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .service-hero::before,
  .service-hero-image,
  .service-breadcrumb,
  .service-hero-content > .eyebrow,
  .service-hero-content > h1,
  .service-hero-content > p,
  .service-hero-actions {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .detail-card:hover,
  .price-panel:hover,
  .price-list div:hover,
  .service-faq details:hover,
  .service-faq details[open],
  .brand:hover .brand-mark,
  .brand:focus-visible .brand-mark {
    transform: none;
  }

  .button::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .service-hero {
    min-height: 650px;
  }

  .service-intro-grid,
  .service-cta-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .detail-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .service-page-back {
    font-size: 0;
  }

  .service-page-back::before {
    content: "← Start";
    font-size: 12px;
  }

  .service-hero {
    min-height: 720px;
    padding-bottom: 72px;
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 11.5vw, 48px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .service-hero p {
    font-size: 16px;
  }

  .service-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-hero-actions .button,
  .price-panel .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
    text-align: center;
    white-space: normal;
  }

  .price-panel {
    max-width: 100%;
    padding: 22px;
  }

  .price-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .price-list dt,
  .price-panel h2,
  .service-copy h2,
  .service-cta-grid h2,
  .detail-card h3,
  .service-faq summary {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .service-content-section {
    padding: 78px 0;
  }
}

@media (max-width: 360px) {
  .service-hero h1 {
    font-size: 34px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-list dd {
    white-space: normal;
  }
}
