/* =========================================================
   Service Page Styles
   ========================================================= */

/* ----- Service Hero ----- */
.service-hero {
  padding: 4rem 0 3.5rem;
  background: var(--hero-gradient);
}

.service-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.service-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.service-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 2rem;
}

/* ----- Overview ----- */
.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-overview__text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-overview__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-overview__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

/* ----- Feature list ----- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--color-text);
  margin-top: 0.15rem;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ----- Process steps ----- */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 3px solid var(--color-accent);
}

.process-step__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.process-step__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.process-step__body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ----- CTA ----- */
.service-cta {
  text-align: center;
}

.service-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-cta__body {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ----- Responsive ----- */
@media (max-width: 760px) {
  .service-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-overview__image {
    order: -1;
  }
}
