.service-overview {
  padding: var(--space-10) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.overview-prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.overview-prose p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.key-facts {
  background: var(--bg-navy);
  border: 1px solid var(--border-navy);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.key-facts h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.key-fact {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.key-fact:last-child {
  margin-bottom: 0;
}

.key-fact .fact-icon {
  width: 36px;
  height: 36px;
  background: rgb(212 175 55 / 10%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.key-fact .fact-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.key-fact .fact-value {
  font-size: 15px;
  font-weight: 500;
}

.features-section {
  padding: var(--space-10) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-navy);
  border: 1px solid var(--border-navy);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgb(212 175 55 / 30%);
  transform: translateY(-4px);
}

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  background: rgb(212 175 55 / 10%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-section {
  padding: var(--space-10) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: rgb(212 175 55 / 10%);
  border: 1px solid rgb(212 175 55 / 30%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

@media (max-width: 1000px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .key-facts {
    position: static;
    max-width: 420px;
  }

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

  .features-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
