/* ─── PROCESS SECTION ────────────────────────────────────– */

.process-section {
  background: var(--ivoor);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
}

.step-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.step-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.step-header h3 {
  font-size: 18px;
  color: var(--donker);
  line-height: 1.2;
}

.process-step p {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.7;
}

.step-arrow {
  align-self: center;
  font-size: 24px;
  color: rgba(44, 36, 32, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
  }

  .process-step {
    max-width: 100%;
  }

  .step-arrow {
    display: none;
  }

  .process-step + .process-step {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rand);
  }
}

/* ─── EXPECTATIONS SECTION ────────────────────────────────– */

.expectations-section {
  background: var(--creme);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.expectations-section h2 {
  margin-bottom: 48px;
  text-align: center;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.expectation {
  text-align: center;
}

.expectation-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.expectation h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--donker);
}

.expectation p {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.6;
}

/* ─── CTA SECTION ────────────────────────────────────────– */

.cta-section {
  background: var(--eik);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.cta-content {
  text-align: center;
  color: var(--ivoor);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--ivoor);
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    min-width: auto;
  }
}
