.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  overflow: hidden;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 16, 14, 0.93) 0%, rgba(5, 16, 14, 0.78) 38%, rgba(5, 16, 14, 0.14) 70%),
    url("../img/hero-oplossingen.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 40%, rgba(7, 25, 22, 0.65));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 205px;
  padding-bottom: 170px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.2vw, 6.2rem);
}

.hero h1 .hero-title-accent {
  color: #ff9a5d;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero .text-link {
  color: var(--white);
}

.hero-principles {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
}

.hero-principles span {
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-principles span:first-child {
  padding-left: 0;
}

.hero-principles span:last-child {
  padding-right: 0;
  border-right: 0;
}

.approach {
  background: var(--paper);
}

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

.process-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(24, 32, 30, 0.07);
}

.process-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-body {
  padding: 30px;
}

.step {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-body p {
  color: var(--ink-soft);
}

.conviction {
  color: var(--white);
  background: var(--forest);
}

.conviction-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
}

.conviction h2 {
  margin-bottom: 0;
}

.conviction-copy {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

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

  .process-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.85fr) 1.15fr;
  }

  .process-card img {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .conviction-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 850px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(5, 16, 14, 0.28) 0%, rgba(5, 16, 14, 0.92) 52%, rgba(5, 16, 14, 0.98) 100%),
      url("../img/hero-oplossingen.png") 68% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 200px;
    padding-bottom: 145px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.2vw, 4.7rem);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-principles {
    bottom: 24px;
    justify-content: space-between;
  }

  .hero-principles span {
    padding: 0 10px;
    font-size: 0.6rem;
  }

  .process-card {
    display: block;
  }

  .process-card img {
    aspect-ratio: 1 / 0.84;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
