/* ── AANBOD / DIENSTEN (h2g/diensten + dienst-item) ── */
.aanbod {
  padding: 112px 64px;
  background: var(--n-700);
}

.aanbod .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.aanbod .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.aanbod .tagline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--teal-300);
  margin-bottom: 16px;
}

.aanbod .section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--n-0);
}

.aanbod .section-subheading {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--n-0);
}

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

/* Verticale kaart: foto boven, content onder */
.dienst-card {
  background: var(--n-900);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dienst-card-img {
  height: 233px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.dienst-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.dienst-card-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.dienst-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--n-0);
}

.dienst-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--n-0);
  flex: 1;
}

.dienst-card-actions {
  margin-top: auto;
  padding-top: 8px;
}


/* ── TESTIMONIALS / REVIEWS (h2g/reviews + review-item) ── */
.testimonials {
  padding: 112px 64px;
  background: var(--teal-500);
  color: var(--n-900);
}

.testimonials .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials .section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--n-900);
}

.testimonials .section-subheading {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--nile-900);
}

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

.review-card {
  background: var(--n-700);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-quote {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--n-0);
  flex: 1;
}

.review-avatar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--n-0);
}

.review-role {
  font-size: 16px;
  line-height: 1.5;
  color: var(--n-0);
}

/* ── DIENSTEN DETAIL (h2g/diensten-detail + dienst-detail-item) ── */
.diensten-detail {
  padding: 112px 64px;
  background: var(--n-700);
}

.diensten-detail .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.diensten-detail-title {
  margin-bottom: 80px;
  max-width: 768px;
}

.diensten-detail-title .tagline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--teal-300);
  margin-bottom: 16px;
}

.diensten-detail-title h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--n-0);
}

.diensten-detail-title p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--n-0);
}

.diensten-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dienst-detail-card {
  background: var(--n-900);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  min-height: 606px;
}

.dienst-detail-card-img {
  flex: 1 0 0;
  min-width: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--n-700);
}

.dienst-detail-card-body {
  flex: 1 0 0;
  min-width: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dienst-detail-card-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.dienst-detail-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--n-0);
}

.dienst-detail-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--n-0);
}

.dienst-detail-card p:last-child {
  margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .aanbod { padding: 80px 32px; }
  .aanbod-grid { grid-template-columns: repeat(2, 1fr); }
  .aanbod .section-heading { font-size: 40px; }
  .testimonials { padding: 80px 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials .section-heading { font-size: 40px; }
  .diensten-detail { padding: 80px 32px; }
  .diensten-detail-title h2 { font-size: 40px; }
  .dienst-detail-card { min-height: auto; }
}
@media (max-width: 768px) {
  .aanbod { padding: 64px 24px; }
  .aanbod-grid { grid-template-columns: 1fr; }
  .aanbod .section-heading { font-size: 32px; }
  .dienst-card h3 { font-size: 28px; }
  .testimonials { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials .section-heading { font-size: 32px; }
  .diensten-detail { padding: 64px 24px; }
  .diensten-detail-title h2 { font-size: 32px; }
  .dienst-detail-card { flex-direction: column; }
  .dienst-detail-card-img { flex: none; height: 260px; }
  .dienst-detail-card h4 { font-size: 28px; }
}
