img.product-afbeelding {
  max-height: 300px; /* vaste hoogte voor alle afbeeldingen */
  width: auto;
  object-fit: contain; /* geen vervorming */
  display: block;
  margin: 0 auto;
}table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 16px 0 32px;
}
.comparison-table thead th {
  background: #0f172a;      /* donkerblauwe header */
  color: #fff;
  text-align: left;
  padding: 12px 10px;
  font-weight: 600;
  letter-spacing: .2px;
}
.comparison-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px;
  vertical-align: top;
}
.comparison-table tbody tr:nth-child(odd) td {
  background: #f8fafc;      /* zebra-striping */
}
.comparison-table a {
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 760px) {
  .comparison-table thead { display: none; }
  .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td { display: block; width: 100%; }
  .comparison-table tr { margin-bottom: 14px; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
  .comparison-table td { border: 0; padding: 8px 12px; }
  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
  }
}
.top3-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 40px;
}
.top3-card {
  flex: 1;
  min-width: 280px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.top3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.top3-card h3 {
  margin-bottom: 10px;
}
.cta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: #0f172a;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cta-btn:hover {
  background: #1e293b;
}
/* ========== GGW Design Tokens (pas deze 5 kleuren gerust aan) ========== */
:root{
  --ggw-accent:#2563eb;      /* Primair (blauw) */
  --ggw-accent-700:#1d4ed8;  /* Hover */
  --ggw-dark:#0f172a;        /* Donker tekst/headers */
  --ggw-muted:#64748b;       /* Sub-tekst */
  --ggw-bg:#f8fafc;          /* Zachte achtergrond */
  --ggw-border:#e2e8f0;      /* Lijnen */
}

/* ========== Typografie & headings ========== */
h1,h2,h3{
  color:var(--ggw-dark);
  line-height:1.2;
  letter-spacing:.2px;
  margin: 18px 0 10px;
  font-weight:800;
}
h1{ font-size:clamp(28px,4vw,40px); }
h2{ font-size:clamp(22px,3vw,28px); }
h3{ font-size:clamp(18px,2.2vw,22px); }

.section-title{
  position:relative; padding-bottom:8px; margin-bottom:16px;
}
.section-title::after{
  content:""; position:absolute; left:0; bottom:0;
  width:80px; height:3px; border-radius:3px;
  background:linear-gradient(90deg,var(--ggw-accent),transparent);
}

/* Intro alinea iets groter/lichter */
.lead{
  font-size:clamp(16px,1.6vw,18px);
  color:var(--ggw-muted);
}

/* ========== Links ========== */
a{
  color:var(--ggw-accent); text-decoration:none; font-weight:600;
}
a:hover{ color:var(--ggw-accent-700); text-decoration:underline; }

/* ========== Knoppen / CTA’s ========== */
.cta-btn{
  display:inline-block; padding:10px 18px; border-radius:10px;
  background:var(--ggw-accent); color:#fff !important; 
  font-weight:700; box-shadow:0 6px 14px rgba(37,99,235,.18);
  transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.cta-btn:hover{
  background:var(--ggw-accent-700);
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(29,78,216,.22);
}

/* Varianten */
.cta-btn--ghost{
  background:#fff; color:var(--ggw-accent) !important;
  border:2px solid var(--ggw-accent);
}
.cta-btn--secondary{
  background:var(--ggw-dark);
}
.btn-sm{ padding:8px 12px; border-radius:8px; font-size:14px; }

/* Full width op mobiel voor makkelijke taps */
@media (max-width:640px){
  .cta-btn, .cta-btn.btn-sm{ display:block; width:100%; text-align:center; }
}

/* ========== Tabel (sluit aan bij je eerdere tabel) ========== */
table.comparison-table{
  width:100%; border-collapse:collapse; margin:14px 0 28px; font-size:15px;
}
.comparison-table thead th{
  background:var(--ggw-dark); color:#fff; padding:12px 10px; text-align:left;
}
.comparison-table td{
  border-bottom:1px solid var(--ggw-border); padding:10px; vertical-align:top;
}
.comparison-table tbody tr:nth-child(odd) td{ background:var(--ggw-bg); }

/* ========== Productafbeeldingen (heb je al) ========== */
img.product-afbeelding{
  max-height:300px; width:auto; object-fit:contain; display:block; margin:0 auto;
}
.product { 
  display:flex; 
  align-items:flex-start; 
  gap:24px; 
  margin:16px 0 32px; 
}
.product-left  { flex:1; }
.product-right { flex:1; min-width:260px; }

/* optisch scheiding tussen items */
.product + .product { 
  border-top:1px solid #e5e7eb; 
  padding-top:24px; 
}

/* Afbeelding consistent */
img.product-afbeelding{
  max-height:300px; 
  width:auto; 
  object-fit:contain; 
  display:block; 
  margin:0 auto;
}

/* Mobiel stapelen */
@media (max-width: 768px){
  .product{ flex-direction:column; }
  .product-right{ min-width:auto; }
}