/* ============================================================
   SERVICE — HERO
   ============================================================ */
.service-hero {
  position: relative;
  padding: 140px 0 0;
  background: linear-gradient(180deg, #F6FAFC 0%, #FFFFFF 100%);
  background-image: url('../images/bg-services.webp');
  background-repeat: no-repeat;
  background-position: right center;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, #F6FAFC 0%, rgba(246, 250, 252, 0.85) 60%, rgba(246, 250, 252, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x) 100px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.service-hero-content {
  flex: 1;
  max-width: 636px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.service-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-hero-title {
  font-family: var(--font-geist);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 120%;
  color: var(--color-black);
  letter-spacing: -0.02em;
  text-align: left;
}

.service-hero-desc {
  font-family: var(--font-inter);
  font-size: 17px;
  line-height: 150%;
  color: var(--color-gray);
  max-width: 560px;
}

.service-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

/* ============================================================
   SERVICE — PROCESS (CARA KERJA)
   ============================================================ */
.service-process {
  padding: 100px 0;
  background: #fff;
}

.service-process-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.service-process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.service-process-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 720px;
}

.service-process-diagram img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 16px 40px rgba(16, 128, 251, 0.08));
}

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
@media (max-width: 991px) {
  .service-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .service-hero-content {
    align-items: center;
  }

  .service-hero-desc {
    margin: 0 auto;
  }

  .service-process-diagram {
    position: static;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤576px)
   ============================================================ */
@media (max-width: 576px) {
  .service-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .service-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .service-hero-actions a {
    width: 100%;
  }
}