/* ============================================
   AANBIEDING-LUIERS.NL — DESIGN SYSTEM
   Thema: Helder, vertrouwen, ouder-vriendelijk
   Palette: Warm wit, diep teal, frisse oranje CTA
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --teal:        #0A7E6E;
  --teal-light:  #E6F5F2;
  --teal-dark:   #065A4E;
  --orange:      #F2620A;
  --orange-light:#FFF0E8;
  --orange-dark: #C44C06;
  --yellow:      #FFB800;
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --border:      #E8E6E0;
  --text:        #1A1A1A;
  --text-muted:  #6B6860;
  --text-light:  #9A9890;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10);
  --font-head:   'Sora', sans-serif;
  --font-body:   'Nunito', sans-serif;
  --max-w:       1140px;
  --content-w:   780px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.content-container { max-width: var(--content-w); margin: 0 auto; padding: 0 20px; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--teal);
  color: white;
  font-size: 13px;
  text-align: center;
  padding: 7px 20px;
  font-family: var(--font-head);
  letter-spacing: .01em;
}
.topbar strong { color: var(--yellow); }

/* ---- HEADER ---- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 26px; }

/* ---- NAV ---- */
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: var(--radius-md) !important;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 0;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: var(--text-light); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #0D9E8A 100%);
  color: white;
  padding: 52px 20px 44px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 13px;
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 680px;
}
.hero p {
  font-size: 17px;
  opacity: .9;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 500;
}
.hero-stat-icon { font-size: 18px; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item strong { color: var(--teal); }

/* ---- SECTION ---- */
.section { padding: 48px 0; }
.section-sm { padding: 28px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}

/* ---- WIDGET CONTAINER ---- */
.widget-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}
.widget-header {
  background: var(--teal-light);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.widget-header-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-update {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.widget-update::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.widget-body { padding: 0; }

/* Deal.nl widget wrapper */
.deal-widget-wrap {
  min-height: 200px;
  padding: 16px;
}

/* iframe widget wrapper */
.iframe-widget-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-banner-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-banner-text p { font-size: 15px; opacity: .9; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-md); font-family: var(--font-head); font-weight: 600; font-size: 15px; text-decoration: none; transition: all .15s; cursor: pointer; border: none; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white { background: white; color: var(--orange); }
.btn-white:hover { background: #FFF8F5; transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ---- CARDS ---- */
.card-grid { display: grid; gap: 16px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .card-grid-3 { grid-template-columns: 1fr; } }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .card-grid-4 { grid-template-columns: 1fr; } }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all .18s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal); }
.card-icon { font-size: 28px; }
.card-label { font-size: 11px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }
.card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.3; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.card-meta { font-size: 12px; color: var(--text-light); margin-top: auto; }
.card-badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-family: var(--font-head); font-weight: 600; }
.badge-green { background: #DCFCE7; color: #166534; }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }

/* ---- MAAT SELECTOR ---- */
.maat-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.maat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--surface);
  transition: all .15s;
}
.maat-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.maat-btn.active { border-color: var(--teal); background: var(--teal); color: white; }

/* ---- MAAT TABLE ---- */
.maat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.maat-table th {
  background: var(--teal);
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
}
.maat-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.maat-table tr:last-child td { border-bottom: none; }
.maat-table tr.highlight td { background: var(--teal-light); font-weight: 600; }
.maat-table a { color: var(--teal); text-decoration: none; font-weight: 600; }
.maat-table a:hover { text-decoration: underline; }

/* ---- BLOG/CONTENT ---- */
.prose h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
  scroll-margin-top: 80px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--teal); }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); font-weight: 700; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose table th { background: var(--teal); color: white; padding: 8px 12px; font-family: var(--font-head); font-size: 13px; text-align: left; }
.prose table td { border: 1px solid var(--border); padding: 8px 12px; font-size: 14px; }
.prose table tr:nth-child(even) td { background: #F7F7F5; }

/* ---- TOC ---- */
.toc {
  background: var(--teal-light);
  border: 1px solid rgba(10,126,110,.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.toc-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 12px; color: var(--teal-dark); }
.toc ol { margin-left: 18px; }
.toc li { margin-bottom: 5px; font-size: 14px; }
.toc a { color: var(--teal); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  transition: background .15s;
  user-select: none;
}
.faq-q:hover { background: var(--teal-light); }
.faq-q::after { content: '+'; font-size: 20px; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 500px; padding: 12px 20px 18px; }

/* ---- SIDEBAR LAYOUT ---- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) { .page-layout { grid-template-columns: 1fr; } }

.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-card-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: all .12s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a:hover { color: var(--teal); background: var(--teal-light); }
.sidebar-links a.active { color: var(--teal); background: var(--teal-light); font-weight: 600; }
.sidebar-links a::before { content: '›'; font-size: 16px; color: var(--teal); opacity: 0.6; }

/* ---- INFO BOX ---- */
.info-box {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--teal-dark);
}
.info-box strong { display: block; font-family: var(--font-head); margin-bottom: 4px; font-size: 15px; }
.tip-box {
  background: #FFFBEB;
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: #78350F;
}

/* ---- BESPAAR HIGHLIGHT ---- */
.bespaar-highlight {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E8 100%);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  margin: 28px 0;
}
.bespaar-number { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--orange); line-height: 1; }
.bespaar-label { font-size: 15px; color: var(--text-muted); margin-top: 4px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.8);
  padding: 48px 20px 32px;
  margin-top: 64px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; opacity: .7; margin-bottom: 16px; line-height: 1.6; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: white; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .12s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: .55;
}

/* ---- MOBILE NAV ---- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--surface); flex-direction: column; justify-content: center; align-items: center; gap: 8px; z-index: 999; }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
  .hero h1 { font-size: 26px; }
  .hero-stats { gap: 14px; }
  .page-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}

/* ---- SCROLL INDICATOR ---- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  transition: all .15s;
  z-index: 50;
}
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }
.scroll-top.visible { display: flex; }

/* ---- RATING STARS ---- */
.stars { color: var(--yellow); letter-spacing: 2px; }

/* ---- SKIP TO CONTENT ---- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 20px; top: 20px; z-index: 9999; background: var(--teal); color: white; padding: 8px 16px; border-radius: var(--radius-sm); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .4s ease both; }
.fade-up-2 { animation: fadeUp .4s .1s ease both; }
.fade-up-3 { animation: fadeUp .4s .2s ease both; }

/* ── HOMEPAGE HUB NAVIGATIE ─────────────────────────────── */
.card-compact { padding: 12px 14px; }
.card-compact .card-title { font-size: 13px; font-weight: 700; }
.card-compact .card-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  background: var(--surface);
  transition: background .15s, color .15s, border-color .15s;
}
.pill:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ── PILL NAV — gerelateerde paginalinks ──────────────── */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}
.pill-nav a {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  background: var(--surface);
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.pill-nav a:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pill-nav a.pill-nav-cta {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pill-nav a.pill-nav-cta:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.related-nav {
  margin: 20px 0 8px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.related-nav-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

/* ── FOOTER KLEUR FIXES ─────────────────────────────────── */
.footer-tagline { color: rgba(255,255,255,0.70) !important; }
.footer-col-title { color: rgba(255,255,255,0.90) !important; }
.footer-links a { color: rgba(255,255,255,0.65) !important; }
.footer-links a:hover { color: #ffffff !important; }
.footer-brand { color: #ffffff !important; }
.footer-bottom { color: rgba(255,255,255,0.55) !important; }
.footer-bottom span { color: rgba(255,255,255,0.55) !important; }
.footer-bottom a { color: rgba(255,255,255,0.65) !important; }
.footer-bottom a:hover { color: #ffffff !important; }
/* Footer brand tagline paragraph */
.site-footer p { color: rgba(255,255,255,0.65) !important; }

/* ══ ONTBREKENDE BASISKLASSEN ════════════════════════════════════════════ */

/* Prose: content-blok (standalone) */
.prose {
  display: block;
  line-height: 1.7;
  color: var(--text);
  max-width: 100%;
}

/* Deal.nl widget container */
.deal-partner-widget {
  width: 100%;
  min-height: 120px;
}

/* iframe widget wrapper */
.iframe-widget-wrap {
  display: block;
  margin: 0 0 8px;
}
.iframe-widget-wrap iframe {
  border-radius: 8px;
  display: block;
  width: 100%;
}

/* Highlight box */
.highlight {
  background: var(--teal-light, #e8f5f3);
  border-left: 4px solid var(--teal);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px;
}

/* CTA banner (homepage) */
.cta-banner {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner-text h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}
.cta-banner-text p {
  color: rgba(255,255,255,.8);
  margin: 0;
  font-size: 15px;
}

/* Footer klassen (homepage footer) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 24px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.site-footer .footer-grid a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color .15s;
}
.site-footer .footer-grid a:hover { color: white; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══ 404 PAGINA KLASSEN ══════════════════════════════════════════════════ */
.err-hero { padding: 56px 20px 40px; text-align: center; }
.err-icon { font-size: 72px; margin-bottom: 12px; line-height: 1; }
.err-title { font-size: 2rem; font-weight: 700; margin: 0 0 8px; color: var(--teal-dark); }
.err-sub { max-width: 480px; margin: 0 auto 28px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.err-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.err-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; padding: 0 20px 60px; }
.err-cat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.err-cat:hover { border-color: var(--teal); box-shadow: 0 2px 12px rgba(6,90,78,.1); }
.err-cat-icon { font-size: 24px; margin-bottom: 8px; }
.err-cat-title { font-weight: 700; font-size: 14px; color: var(--teal-dark); margin-bottom: 6px; }
.err-cat-links { display: flex; flex-direction: column; gap: 3px; }
.err-cat-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; padding: 1px 0; }
.err-cat-links a:hover { color: var(--teal); }
.err-section-title { text-align: center; font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 20px; }
