/* =========================================
   SERVICE PAGE — HERO
   ========================================= */
.svc-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.svc-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.96) 0%,
    rgba(5, 10, 20, 0.55) 55%,
    rgba(5, 10, 20, 0.15) 100%
  );
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.svc-hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.svc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease, gap 0.25s ease;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.svc-hero__back svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.svc-hero__back:hover {
  color: rgba(255, 255, 255, 0.9);
  gap: 0.65rem;
}

.svc-hero__back:hover svg {
  transform: translateX(-3px);
}

.svc-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #dc2626;
}

.svc-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.svc-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* =========================================
   SERVICE PAGE — CONTENT
   ========================================= */
.svc-content__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.svc-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .svc-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.svc-body__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.1);
  border: 1.5px solid rgba(220, 38, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  flex-shrink: 0;
}

.svc-body__icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}

.svc-body__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-body__text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.svc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
