.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 50%, #0e0e0e 100%);
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--on-surface) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.06rem;
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services,
.process {
  padding: 4rem 2rem;
}

.services {
  background: var(--surface);
}

.process {
  background: var(--surface-container-low);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.section-header p {
  color: var(--on-surface-variant);
}

.services-grid,
.process-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.process-step {
  background: var(--surface-container);
  border: 1px solid rgba(129, 236, 255, 0.12);
  border-radius: 8px;
  padding: 1.1rem;
}

.service-card:hover,
.process-step:hover {
  border-color: rgba(129, 236, 255, 0.35);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  color: var(--primary);
  background: var(--surface-container-highest);
  font-weight: 700;
}

.service-card p,
.process-step p {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.process-step h3,
.service-card h3 {
  margin-bottom: 0.35rem;
}

@media (max-width: 700px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
