/* ===== Service Hero ===== */
.service-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #d1fae5 70%, #a7f3d0 100%);
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(45, 106, 79, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-number-lg {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  color: var(--color-primary-light);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}

.service-hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-hero-description {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 2;
  max-width: 640px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 13px;
  margin-bottom: 32px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.breadcrumb .separator {
  margin: 0 8px;
  color: var(--color-border);
}

/* ===== Service Detail Grid ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-feature {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-feature-number {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.service-feature p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== Process Steps (Timeline) ===== */
.process-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  position: relative;
  padding: 0 0 48px 72px;
}

.process-step:last-child {
  padding-bottom: 0;
}

/* Vertical line */
.process-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--color-primary-light);
  opacity: 0.4;
}

.process-step:last-child::before {
  display: none;
}

/* Circle dot */
.process-step::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.process-step-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== Service CTA ===== */
.service-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  text-align: center;
  padding: 80px 0;
}

.service-cta .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.service-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.service-cta .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.service-cta .btn-primary:hover {
  background: #f0fdf4;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Other Services Navigation ===== */
.other-services {
  text-align: center;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.other-service-link {
  display: block;
  padding: 28px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.other-service-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.other-service-link .service-number {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-light);
  opacity: 0.4;
  margin-bottom: 8px;
}

.other-service-link h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* ===== LP Responsive ===== */
@media (max-width: 768px) {
  .service-hero {
    padding: 120px 0 48px;
  }

  .service-number-lg {
    font-size: 56px;
  }

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

  .process-step {
    padding-left: 52px;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero-title {
    font-size: 26px;
  }

  .service-hero-description {
    font-size: 15px;
  }
}
