/* HOTFIX 53ag — /projecten lijst (PowerNexx full-page pattern) */

/* Hero */
.projecten-hero {
  background: #0a0a0a;
  color: #fff;
  padding: 70px 20px 80px;
  position: relative;
  overflow: hidden;
}

.projecten-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 106, 26, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.projecten-hero .container {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.projecten-hero .hero-eyebrow {
  color: #ff6a1a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.projecten-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
}

.projecten-hero .hero-intro {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 0 26px;
}

.hero-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e4e4e7;
}

.projecten-hero .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.projecten-hero .btn-primary {
  background: #ff6a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s;
}

.projecten-hero .btn-primary:hover {
  background: #b91818;
}

.projecten-hero .btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: border-color 0.15s, background 0.15s;
}

.projecten-hero .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .projecten-hero {
    padding: 50px 20px 60px;
  }

  .projecten-hero h1 {
    font-size: 32px;
  }
}

/* Cijfers-strip */
.cijfers-strip {
  background: #fafafa;
  padding: 40px 20px;
  border-bottom: 1px solid #e4e4e7;
}

.cijfers-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cijfer-item__icon {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.cijfer-item__waarde {
  font-size: 36px;
  font-weight: 800;
  color: #18181b;
  line-height: 1.1;
}

.cijfer-item__suffix {
  font-size: 24px;
}

.cijfer-item__label {
  font-size: 14px;
  color: #52525b;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .cijfers-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Grid */
.projecten-grid-section {
  padding: 56px 20px 64px;
}

.section-head__h2 {
  text-align: center;
  font-size: 28px;
  margin: 0 0 10px;
  color: #18181b;
}

.section-head__sub {
  text-align: center;
  color: #52525b;
  margin: 0 0 32px;
  font-size: 16px;
}

.projecten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.project-card--featured {
  grid-column: span 2;
}

.project-card--featured .project-card__media {
  height: 280px;
}

.project-card__media {
  position: relative;
  height: 220px;
  background: #27272a center / cover no-repeat;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.project-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.project-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fef2f2;
  color: #ff6a1a;
  padding: 4px 8px;
  border-radius: 4px;
}

.project-card__titel {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #18181b;
}

.project-card__plaats {
  font-size: 13px;
  color: #71717a;
  margin: 0 0 8px;
}

.project-card__beschrijving {
  font-size: 14px;
  color: #52525b;
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.project-card__lees-meer {
  color: #ff6a1a;
  font-weight: 700;
  font-size: 14px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .projecten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--featured {
    grid-column: span 1;
  }

  .project-card--featured .project-card__media {
    height: 220px;
  }
}

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

/* Klantreacties */
.reacties-section {
  background: #fafafa;
  padding: 60px 20px;
}

.reacties-section .section-head__h2 {
  margin-bottom: 30px;
}

.reacties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.reactie-card {
  background: #fff;
  padding: 24px 22px;
  border-radius: 12px;
  border: 1px solid #e4e4e7;
}

.reactie-card__sterren {
  color: #f59e0b;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.reactie-card__tekst {
  font-style: italic;
  color: #18181b;
  margin: 0 0 14px;
  line-height: 1.55;
}

.reactie-card__bron strong {
  display: block;
  color: #18181b;
}

.reactie-card__bron .muted {
  color: #71717a;
  font-size: 14px;
}

.reacties-section__more {
  text-align: center;
  margin: 28px 0 0;
}

.reacties-section__more a {
  color: #ff6a1a;
  font-weight: 700;
  text-decoration: none;
}

.reacties-section__more a:hover {
  text-decoration: underline;
}

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

/* Cert-cards */
.projecten-cert-section {
  padding: 56px 20px;
  background: #fff;
}

.projecten-cert-section__title {
  text-align: center;
  font-size: 24px;
  margin: 0 0 28px;
  color: #18181b;
}

.projecten-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.cert-card {
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}

.cert-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e4e4e7;
}

.cert-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #18181b;
}

.cert-card__sub {
  font-size: 13px;
  color: #71717a;
  margin: 0;
}

@media (max-width: 800px) {
  .projecten-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .projecten-cert-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA rood */
.cta-blok-rood {
  background: linear-gradient(135deg, #ff6a1a 0%, #991b1b 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-blok-rood .container {
  max-width: 720px;
  margin: 0 auto;
}

.cta-blok-rood h2 {
  margin: 0 0 10px;
  font-size: 32px;
  color: #fff;
}

.cta-blok-rood p {
  margin: 0 0 24px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-blok-rood__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-light {
  background: #fff;
  color: #ff6a1a;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary-light:hover {
  background: #fafafa;
}

.btn-secondary-light {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cta-blok-rood h2 {
    font-size: 26px;
  }
}
