/* ============================================================
   Webdevelopment Hub – Pagina-specifieke Styles
   Shared styles (hero, stats, btn, cta-band) komen uit global.css
   ============================================================ */

/* ── Hero override: visual tot aan stats balk ── */
.hero { padding: 72px 0 0; }

/* ── Hero Grid (2 kolommen met code editor) ── */
.hero .oms-container .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-content { padding-bottom: 72px; }
.hero-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.hero-includes li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: rgba(255,255,255,.8); }
.hero-social-text strong { color: #fff; }

/* ── Code Editor (hero visual) ── */
.hero-visual {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.code-editor {
  background: #1e293b;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,.35);
  overflow: hidden;
  width: 100%;
  font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'Consolas', monospace;
}
.code-editor-top {
  background: #0f172a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.code-editor-top .browser-dots { display: flex; gap: 6px; }
.code-editor-top .browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.code-editor-top .browser-dots span:nth-child(1) { background: #ff5f57; }
.code-editor-top .browser-dots span:nth-child(2) { background: #febc2e; }
.code-editor-top .browser-dots span:nth-child(3) { background: #28c840; }
.code-editor-tabs { display: flex; gap: 2px; }
.code-tab {
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 6px 6px 0 0;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.code-tab.active {
  background: #1e293b;
  color: rgba(255,255,255,.9);
}
.code-editor-body {
  padding: 16px 0;
  font-size: 13px;
  line-height: 1.75;
}
.code-line {
  padding: 0 20px;
  display: flex;
  align-items: center;
  white-space: pre;
}
.code-line:hover { background: rgba(255,255,255,.03); }
.code-ln {
  color: rgba(255,255,255,.2);
  width: 28px;
  text-align: right;
  margin-right: 16px;
  font-size: 11px;
  flex-shrink: 0;
  user-select: none;
}
.code-purple { color: #c084fc; }
.code-cyan { color: #67e8f9; }
.code-green { color: #86efac; }
.code-orange { color: #fb923c; }
.code-white { color: #f1f5f9; }
.code-gray { color: rgba(255,255,255,.45); }
.code-empty { height: 22.75px; }
.code-cursor-char {
  color: rgba(255,255,255,.7);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ── Intro met voordelen sidebar ── */
.wd-intro {
  padding: 80px 0;
  background: var(--white);
}
.wd-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.wd-intro-content .section-label { margin-bottom: 16px; }
.wd-intro-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 16px;
}
.wd-intro-voordelen {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.wd-intro-voordelen h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}
.wd-voordeel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wd-voordeel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wd-voordeel-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.wd-voordeel-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.wd-voordeel-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ── Included / Wat zit erin ── */
.wd-included {
  padding: 80px 0;
  background: var(--gray-50);
}
.wd-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wd-included-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wd-included-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-included-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.wd-included-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
}
.wd-included-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}
.wd-included-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ── Diensten Grid ── */
.wd-diensten {
  padding: 80px 0;
  background: var(--white);
}
.wd-diensten-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.wd-diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wd-dienst-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.wd-dienst-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.wd-dienst-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 22px;
}
.wd-dienst-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}
.wd-dienst-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.wd-dienst-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wd-dienst-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.wd-dienst-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

/* ── Werkwijze Timeline ── */
.wd-werkwijze {
  padding: 80px 0;
  background: var(--gray-50);
}
.wd-werkwijze-header {
  text-align: center;
  margin-bottom: 64px;
}
.wd-werkwijze-timeline { position: relative; }
.wd-werkwijze-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-light));
}
.wd-werkwijze-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.wd-werkwijze-item:last-child { margin-bottom: 0; }
.wd-werkwijze-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(14,116,144,.3);
  position: relative;
  z-index: 1;
}
.wd-werkwijze-body {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  flex: 1;
  transition: all .2s;
}
.wd-werkwijze-body:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.wd-werkwijze-body .tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.wd-werkwijze-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.wd-werkwijze-body p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── Zelf doen vs Uitbesteden ── */
.wd-zelf-vs {
  padding: 80px 0;
  background: var(--white);
}
.wd-zelf-vs-header {
  text-align: center;
  margin-bottom: 48px;
}
.wd-zelf-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.wd-zelf-card {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.wd-zelf-card.zelf {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.wd-zelf-card.bureau {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
}
.wd-zelf-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.wd-zelf-card.zelf h3 { color: var(--gray-800); }
.wd-zelf-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.wd-zelf-card.zelf p { color: var(--gray-600); }
.wd-zelf-card.bureau p { color: rgba(255,255,255,.85); }
.wd-zelf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-zelf-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.wd-zelf-card.zelf .wd-zelf-list li { color: var(--gray-600); }
.wd-zelf-card.bureau .wd-zelf-list li { color: rgba(255,255,255,.9); }
.wd-zelf-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.wd-zelf-card.zelf .wd-zelf-list li::before {
  background: #fee2e2;
  content: '\2717';
  color: #dc2626;
}
.wd-zelf-card.bureau .wd-zelf-list li::before {
  background: rgba(255,255,255,.2);
  content: '\2713';
  color: #fff;
}

/* ── FAQ wrapper ── */
.wd-faq {
  padding: 80px 0;
  background: var(--gray-50);
}
.wd-faq > .oms-container {
  text-align: center;
}
.wd-faq > .oms-container > .faq-list {
  text-align: left;
}
.wd-faq .section-title {
  margin-bottom: 40px;
}

/* ── Contact CTA ── */
.wd-contact {
  padding: 80px 0;
  background: var(--white);
}
.wd-contact-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wd-contact h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.wd-contact p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}
.wd-contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wd-contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: all .2s;
}
.wd-contact-option:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}
.wd-contact-option-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}
.wd-contact-option-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}
.wd-contact-option-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}
.wd-scan-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: #fff;
}
.wd-scan-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.wd-scan-box p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  line-height: 1.6;
}
.wd-scan-checklist {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 28px;
}
.wd-scan-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.wd-scan-checklist li:last-child { border-bottom: none; }
.wd-scan-checklist li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Hero visual wrap + floating card ── */
.hero-visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-floating-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid var(--gray-100);
  min-width: 148px;
  text-align: center;
}
.hfc-score {
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hfc-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.hfc-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.hfc-bar-fill {
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 6px;
}
.hfc-sub {
  font-size: 9px;
  color: var(--gray-500);
}

/* ── Portfolio / Resultaten ── */
.wd-portfolio {
  padding: 80px 0;
  background: var(--gray-50);
}
.wd-portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.wd-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.wd-portfolio-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .2s;
}
.wd-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.wd-portfolio-type {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.wd-portfolio-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0;
}
.wd-portfolio-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.wd-portfolio-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wd-portfolio-metric {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.wd-portfolio-metric--green {
  background: #f0fdf4;
}
.wd-portfolio-metric-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.1;
}
.wd-portfolio-metric--green .wd-portfolio-metric-val {
  color: #16a34a;
}
.wd-portfolio-metric-label {
  font-size: 9px;
  color: var(--gray-500);
  margin-top: 3px;
  font-weight: 600;
}
.wd-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wd-portfolio-tags span {
  font-size: 11px;
  color: var(--gray-600);
  background: var(--gray-100);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 600;
}
.wd-portfolio-cta {
  text-align: center;
}

/* ── Technologie Stack ── */
.wd-tech-stack {
  padding: 80px 0;
  background: var(--white);
}
.wd-tech-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.wd-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-tech-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .2s;
}
.wd-tech-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background: #fff;
}
.wd-tech-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.wd-tech-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.wd-tech-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── Reviews / Testimonials ── */
.wd-reviews {
  padding: 80px 0;
  background: var(--gray-50);
}
.wd-reviews-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.wd-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wd-review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.wd-review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 72px;
  line-height: 1;
  color: var(--blue-light);
  font-family: Georgia, serif;
}
.wd-review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}
.wd-review-quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.wd-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wd-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wd-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
}
.wd-review-company {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ── Regio's ── */
.wd-regios {
  padding: 80px 0;
}
.wd-regios > .oms-container {
  text-align: center;
}
.wd-regios .ga-regios-grid {
  text-align: left;
}
.wd-regios .section-sub {
  margin: 0 auto 40px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .oms-container .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-floating-card { display: none; }
  .hero-content { padding-bottom: 64px; }
  .wd-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .wd-included-grid { grid-template-columns: 1fr; }
  .wd-zelf-vs-grid { grid-template-columns: 1fr; }
  .wd-contact-inner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .wd-portfolio-grid { grid-template-columns: 1fr 1fr; }
  .wd-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-reviews-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .hero-content { padding-bottom: 48px; }
  .hero-includes { margin-bottom: 24px; }
  .wd-intro { padding: 48px 0; }
  .wd-included { padding: 48px 0; }
  .wd-diensten { padding: 48px 0; }
  .wd-werkwijze { padding: 48px 0; }
  .wd-zelf-vs { padding: 48px 0; }
  .wd-faq { padding: 48px 0; }
  .wd-contact { padding: 48px 0; }
  .wd-portfolio { padding: 48px 0; }
  .wd-tech-stack { padding: 48px 0; }
  .wd-reviews { padding: 48px 0; }
  .wd-regios { padding: 48px 0; }
  .wd-diensten-grid { grid-template-columns: 1fr; }
  .wd-included-cards { grid-template-columns: 1fr; }
  .wd-werkwijze-timeline::before { display: none; }
  .wd-werkwijze-item { flex-direction: column; gap: 12px; }
  .wd-werkwijze-num { width: 52px; height: 52px; font-size: 18px; }
  .wd-werkwijze-body { padding: 20px; }
  .wd-contact-inner { padding: 24px; }
  .wd-scan-box { padding: 28px 20px; }
  .wd-portfolio-grid { grid-template-columns: 1fr; }
  .wd-portfolio-metrics { grid-template-columns: repeat(3, 1fr); }
  .wd-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-reviews-grid { grid-template-columns: 1fr; }
  .wd-review-card { padding: 28px 24px; }
  .wd-review-card::before { font-size: 56px; top: 16px; right: 20px; }
}

/* Mobile: uniforme vlak-padding */
@media (max-width: 480px) {
  .wd-intro-voordelen,
  .wd-dienst-card,
  .wd-werkwijze-body,
  .wd-zelf-card,
  .wd-contact-inner,
  .wd-portfolio-card,
  .wd-tech-item,
  .wd-review-card,
  .wd-scan-box { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════════════
   ONS EIGEN SYSTEEM
   ════════════════════════════════════════════════════════════ */
/* Gradient wit->grijs: vloeiende brug van de witte intro naar de grijze inbegrepen-sectie. */
.wd-systeem { padding: 80px 0; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.wd-systeem-header { text-align: center; margin-bottom: 48px; }
.wd-systeem-header .section-sub { max-width: 740px; margin: 16px auto 0; }
.wd-systeem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wd-systeem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wd-systeem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wd-systeem-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.wd-systeem-icon svg { width: 24px; height: 24px; stroke: var(--blue); stroke-width: 2; fill: none; }
.wd-systeem-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.wd-systeem-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ════════════════════════════════════════════════════════════
   HOSTING & ONDERHOUD
   ════════════════════════════════════════════════════════════ */
/* Gradient wit->grijs: vloeiende brug van de witte tech-stack naar de grijze werkwijze-sectie. */
.wd-hosting { padding: 80px 0; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.wd-hosting-header { text-align: center; margin-bottom: 48px; }
.wd-hosting-header .section-sub { max-width: 740px; margin: 16px auto 0; }
.wd-hosting-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.wd-hosting-block {
  text-align: center;
  padding: 36px 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wd-hosting-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wd-hosting-block-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(14,116,144,.25);
}
.wd-hosting-block-icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2; fill: none; }
.wd-hosting-block h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 10px; }
.wd-hosting-block p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }
.wd-hosting-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  background: linear-gradient(135deg, #f0fdfa, #e0f2fe);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.wd-hosting-detail-text h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 0 0 14px; }
.wd-hosting-detail-text p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin: 0; }
.wd-hosting-specs { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wd-hosting-specs li { font-size: 14px; color: var(--gray-800); padding-left: 26px; position: relative; line-height: 1.45; font-weight: 500; }
.wd-hosting-specs li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }

@media (max-width: 1024px) {
  .wd-systeem-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-hosting-blocks { grid-template-columns: 1fr; }
  .wd-hosting-detail { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
}
@media (max-width: 768px) {
  .wd-systeem, .wd-hosting { padding: 56px 0; }
  .wd-systeem-grid { grid-template-columns: 1fr; }
  .wd-hosting-specs { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wd-systeem-card, .wd-hosting-block { padding: 24px 20px; }
  .wd-hosting-detail { padding: 24px 20px; }
}
