.service-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text-950);
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsla(210, 45%, 8%, 0.94), hsla(210, 45%, 8%, 0.55)),
    linear-gradient(0deg, hsla(210, 45%, 8%, 0.35), transparent);
}

.service-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 90px;
}

.service-hero__content span,
.service-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  color: var(--primary-500);
  border-left: 3px solid var(--primary-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero__content h1 {
  max-width: 850px;
  color: white;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

.service-hero__content p {
  max-width: 640px;
  color: hsla(0, 0%, 100%, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.service-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.service-intro,
.systems-section,
.process-section,
.service-cta-section {
  padding: 6rem 0;
}

.service-intro {
  background: var(--bg-50);
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.service-intro__content h2,
.section-header h2,
.process-content h2,
.service-cta h2 {
  color: var(--text-900);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.service-intro__content p,
.section-header p,
.process-content p {
  color: var(--text-500);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-intro__card {
  padding: 2rem;
  background: var(--bg-100);
  border: 1px solid var(--bg-300);
  border-radius: 22px;
  box-shadow: 0 18px 50px hsla(210, 45%, 8%, 0.08);
}

.service-intro__card svg {
  width: 42px;
  height: 42px;
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.service-intro__card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.service-intro__card p {
  color: var(--text-500);
  line-height: 1.6;
}

.systems-section {
  background: var(--bg-100);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.system-card {
  padding: 1.5rem;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px hsla(210, 45%, 8%, 0.08);
}

.system-card svg {
  width: 34px;
  height: 34px;
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.system-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.system-card p {
  color: var(--text-500);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-section {
  background: var(--bg-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-100);
  border: 1px solid var(--bg-300);
  border-radius: 16px;
}

.process-item span {
  flex-shrink: 0;
  color: var(--primary-600);
  font-weight: 900;
}

.process-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.process-item p {
  color: var(--text-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-cta-section {
  background: var(--bg-100);
}

.service-cta {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--text-950);
  border-radius: 24px;
}

.service-cta span {
  display: block;
  color: var(--primary-400);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.service-cta h2 {
  color: white;
  max-width: 720px;
  margin-bottom: 0;
}

.service-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  color: white;
  background: var(--primary-600);
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-cta a:hover {
  background: var(--primary-500);
  transform: translateY(-2px);
}

.service-cta svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .service-intro__grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .service-container,
  .service-hero__content {
    width: calc(100% - 32px);
  }

  .service-hero {
    min-height: 56vh;
  }

  .service-intro,
  .systems-section,
  .process-section,
  .service-cta-section {
    padding: 4.5rem 0;
  }

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

  .service-cta a {
    width: 100%;
    justify-content: center;
  }
}