/* ══════════════════════════════════════════════════════════════
   HUDSON BEDRIJFSWAGENS — Website v2 Stylesheet
   ══════════════════════════════════════════════════════════════ */
:root {
  --hbn-blue:    #1F4E79;
  --hbn-mblue:   #2E75B6;
  --hbn-lblue:   #BDD7EE;
  --hbn-lblue2:  #DEEAF1;
  --hbn-green:   #1a7a3c;
  --hbn-green-bg:#E2EFDA;
  --hbn-amber:   #C55A11;
  --hbn-amber-bg:#FFF2CC;
  --hbn-grey:    #F5F5F5;
  --hbn-dark:    #1a1a2e;
  --hbn-text:    #1a1a1a;
  --hbn-text-muted: #666;
  --hbn-white:   #ffffff;
  --hbn-radius:  10px;
  --hbn-shadow:  0 2px 16px rgba(31,78,121,.12);
}

/* RESET & BASE */
.hbn-page { font-family: Arial, Helvetica, sans-serif; color: var(--hbn-text); line-height: 1.6; }
.hbn-page *, .hbn-page *::before, .hbn-page *::after { box-sizing: border-box; }
.hbn-page h1 { font-size: clamp(26px,4vw,42px); font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
.hbn-page h2 { font-size: clamp(22px,3vw,32px); font-weight: 700; margin: 0 0 12px; }
.hbn-page h3 { font-size: clamp(17px,2vw,22px); font-weight: 600; margin: 0 0 10px; }
.hbn-page p  { margin: 0 0 12px; }
.hbn-page ul { padding-left: 20px; }
.hbn-page ul li { margin-bottom: 6px; }
.hbn-page a  { color: var(--hbn-mblue); }

/* SECTIONS */
.hbn-section { padding: 64px 0; }
.hbn-section-dark  { background: var(--hbn-dark); color: #fff; }
.hbn-section-blue  { background: var(--hbn-blue); color: #fff; }
.hbn-section-grey  { background: var(--hbn-grey); }
.hbn-section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hbn-section-hdr   { text-align: center; margin-bottom: 40px; }
.hbn-section-hdr p { color: var(--hbn-text-muted); font-size: 16px; max-width: 680px; margin: 0 auto; }
.hbn-section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--hbn-mblue); margin-bottom: 8px; }
.hbn-light .hbn-section-eyebrow { color: var(--hbn-lblue); }
.hbn-light { color: #fff; }
.hbn-light h2, .hbn-light h3, .hbn-light p { color: #fff; }
.hbn-light .hbn-section-hdr p { color: rgba(255,255,255,.75); }

/* BUTTONS */
.hbn-btn-primary, .hbn-btn-sec {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 7px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: all .18s; white-space: nowrap;
}
.hbn-btn-primary { background: var(--hbn-blue); color: #fff !important; border-color: var(--hbn-blue); }
.hbn-btn-primary:hover { background: #17406a; transform: translateY(-1px); }
.hbn-btn-sec { background: transparent; color: var(--hbn-blue) !important; border-color: var(--hbn-blue); }
.hbn-btn-sec:hover { background: var(--hbn-blue); color: #fff !important; }
.hbn-btn-light { color: #fff !important; border-color: rgba(255,255,255,.6); }
.hbn-btn-light:hover { background: rgba(255,255,255,.15); }
.hbn-btn-lg  { padding: 13px 28px; font-size: 15px; }
.hbn-btn-xl  { padding: 15px 34px; font-size: 16px; }
.hbn-btn-nav {
  background: var(--hbn-blue) !important; color: #fff !important;
  padding: 8px 18px !important; border-radius: 6px !important;
  font-weight: 600 !important; font-size: 14px !important;
  text-decoration: none !important; display: inline-flex !important;
  align-items: center !important; gap: 5px !important;
  transition: background .2s !important;
}
.hbn-btn-nav:hover { background: #17406a !important; }
.hbn-nav-cta { display: flex !important; align-items: center !important; margin-left: 10px !important; }

/* FLOATING BUTTON */
.hbn-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 9999;
  background: var(--hbn-blue); color: #fff !important;
  padding: 13px 20px; border-radius: 50px; font-weight: 600; font-size: 14px;
  text-decoration: none !important; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(31,78,121,.4);
  animation: hbn-pulse 2.5s ease-in-out infinite;
}
.hbn-float:hover { background: #17406a; transform: translateY(-2px); animation: none; }
@keyframes hbn-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(31,78,121,.4); }
  50%      { box-shadow: 0 4px 30px rgba(31,78,121,.65); }
}
@media (max-width:600px) { .hbn-float-txt { display:none; } .hbn-float { padding: 14px 16px; border-radius: 50%; } }

/* HERO */
.hbn-hero { background: linear-gradient(135deg, var(--hbn-dark) 0%, var(--hbn-blue) 100%); color: #fff; padding: 80px 0 64px; }
.hbn-hero-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hbn-hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--hbn-lblue); margin-bottom: 12px; }
.hbn-hero-h1 { font-size: clamp(30px,4.5vw,52px); line-height: 1.15; margin-bottom: 18px; color: #fff; }
.hbn-hero-h1 em { font-style: italic; color: var(--hbn-lblue); }
.hbn-hero-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hbn-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hbn-trust-bar { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.75); }
.hbn-trust-bar span { display: flex; align-items: center; gap: 4px; }
.hbn-trust-light .hbn-trust-bar { color: rgba(255,255,255,.75); margin-top: 0; }
.hbn-hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.hbn-stat { background: rgba(255,255,255,.1); border-radius: 10px; padding: 16px; text-align: center; border: 1px solid rgba(255,255,255,.15); }
.hbn-stat-n { font-size: 28px; font-weight: 700; color: #fff; }
.hbn-stat-l { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; }
@media (max-width:768px) {
  .hbn-hero-inner { grid-template-columns: 1fr; }
  .hbn-hero-stats { grid-template-columns: repeat(3,1fr); gap:8px; }
  .hbn-stat-n { font-size: 20px; }
}

/* URGENTIE STRIP */
.hbn-urgent-strip { background: #fff; border-bottom: 1px solid #e8e8e8; border-top: 1px solid #e8e8e8; }
.hbn-urgent-inner { max-width: 1140px; margin: 0 auto; padding: 20px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.hbn-urgent-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.hbn-urgent-icon { font-size: 20px; flex-shrink: 0; }
.hbn-urgent-item strong { display: block; color: var(--hbn-blue); font-size: 14px; }
@media (max-width:900px) { .hbn-urgent-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width:600px) { .hbn-urgent-inner { grid-template-columns: 1fr; } }

/* MODELS GRID */
.hbn-models-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hbn-model-card { border-radius: var(--hbn-radius); border: 1.5px solid #e0e0e0; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; background: #fff; }
.hbn-model-card:hover { box-shadow: 0 6px 28px rgba(31,78,121,.15); transform: translateY(-3px); }
.hbn-model-card-top { padding: 20px; flex: 1; position: relative; }
.hbn-model-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; background: var(--m-color, var(--hbn-blue)); color: #fff; margin-bottom: 10px; }
.hbn-model-img-ph { width: 100%; height: 160px; background: var(--hbn-grey); border-radius: 6px; margin-bottom: 12px; overflow: hidden; position: relative; }
.hbn-model-img-ph img { width: 100%; height: 100%; object-fit: cover; }
.hbn-model-img-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--m-color,var(--hbn-blue)) 0%, rgba(31,78,121,.7) 100%); }
.hbn-model-img-fallback span { font-size: 28px; font-weight: 700; color: #fff; }
.hbn-model-klasse { font-size: 11px; color: var(--hbn-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.hbn-model-prijs { font-size: 18px; font-weight: 700; color: var(--m-color, var(--hbn-blue)); margin: 2px 0 6px; }
.hbn-model-card h3 { font-size: 20px; margin: 0 0 8px; }
.hbn-model-txt { font-size: 13px; color: var(--hbn-text-muted); }
.hbn-model-card-specs { padding: 0 20px 16px; }
.hbn-spec-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.hbn-spec-row span { color: var(--hbn-text-muted); }
.hbn-spec-row strong { color: var(--hbn-text); }
.hbn-model-card-btns { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.hbn-model-card-btns .hbn-btn-primary, .hbn-model-card-btns .hbn-btn-sec { width: 100%; justify-content: center; }
@media (max-width:900px) { .hbn-models-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px) { .hbn-models-grid { grid-template-columns: 1fr; } }

/* TCO COMPARE */
.hbn-tco-compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.hbn-tco-col { border-radius: var(--hbn-radius); padding: 20px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); }
.hbn-tco-col-hdr { font-weight: 700; font-size: 16px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.15); }
.hbn-tco-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.08); }
.hbn-tco-row span { opacity: .8; }
.hbn-tco-total { font-size: 15px; font-weight: 600; border-bottom: none; padding-top: 10px; }
.hbn-tco-ev { background: rgba(26,122,60,.15); border-color: rgba(26,122,60,.4); }
.hbn-tco-free { background: rgba(26,122,60,.2); border-color: rgba(26,122,60,.5); }
.hbn-green { color: #6fd98d; }
.hbn-tco-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width:768px) { .hbn-tco-compare { grid-template-columns: 1fr; } }

/* ZE-ZONES */
.hbn-ze-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hbn-ze-badge { padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.hbn-ze-actief    { background: #E2EFDA; color: #375623; }
.hbn-ze-binnenkort{ background: #FFF2CC; color: #633806; }
.hbn-ze-gepland   { background: #F2F2F2; color: #444; }
.hbn-ze-legend { display: flex; gap: 20px; font-size: 13px; }
.hbn-ze-actief    .hbn-ze-legend span, span.hbn-ze-actief    { color: #375623; font-weight: 500; }
span.hbn-ze-binnenkort { color: #633806; font-weight: 500; }
span.hbn-ze-gepland    { color: #888; font-weight: 500; }

/* SUBSIDIES */
.hbn-sub-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.hbn-sub-card { background: rgba(255,255,255,.1); border-radius: var(--hbn-radius); padding: 20px; border: 1px solid rgba(255,255,255,.15); }
.hbn-sub-card-hdr { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.hbn-sub-card-body { font-size: 13px; opacity: .85; margin-bottom: 10px; }
.hbn-sub-card-for { font-size: 11px; opacity: .7; margin-bottom: 6px; }
.hbn-sub-card-bedrag { font-size: 18px; font-weight: 700; color: #6fd98d; }
@media (max-width:900px) { .hbn-sub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:600px) { .hbn-sub-grid { grid-template-columns: 1fr; } }

/* SCAN CTA & OVER STRIP */
.hbn-scan-cta-block { background: var(--hbn-lblue2); border-radius: 16px; padding: 48px; border: 1px solid var(--hbn-lblue); }
.hbn-scan-steps { list-style: none; padding: 0; margin: 0 0 24px; }
.hbn-scan-steps li { padding: 6px 0; font-size: 15px; }
.hbn-scan-steps li strong { color: var(--hbn-blue); }
.hbn-over-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hbn-over-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 24px 0; }
.hbn-over-fact { text-align: center; }
.hbn-over-fact strong { display: block; font-size: 24px; font-weight: 700; color: var(--hbn-blue); }
.hbn-over-fact span { font-size: 11px; color: var(--hbn-text-muted); }
@media (max-width:768px) { .hbn-over-strip { grid-template-columns: 1fr; } .hbn-over-facts { grid-template-columns: repeat(2,1fr); } }

/* FINAL CTA */
.hbn-final-cta { background: var(--hbn-blue); color: #fff; padding: 64px 0; text-align: center; }
.hbn-final-cta-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.hbn-final-cta h2 { font-size: clamp(24px,3.5vw,38px); color: #fff; margin-bottom: 12px; }
.hbn-final-cta h2 em { font-style: italic; color: var(--hbn-lblue); }
.hbn-final-cta p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; }
.hbn-final-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* MODEL HERO */
.hbn-model-hero { padding: 64px 0 48px; background: linear-gradient(135deg, var(--hbn-dark) 0%, var(--m-color, var(--hbn-blue)) 100%); color: #fff; }
.hbn-model-hero-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hbn-model-hero-eye { font-size: 13px; opacity: .8; margin-bottom: 10px; }
.hbn-model-hero h1 { color: #fff; }
.hbn-model-hero p { color: rgba(255,255,255,.85); font-size: 17px; }
.hbn-model-hero-key { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.hbn-model-hero-key span { background: rgba(255,255,255,.15); padding: 5px 12px; border-radius: 20px; font-size: 13px; }
.hbn-model-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hbn-model-hero-img img { width: 100%; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,.3); }
@media (max-width:768px) { .hbn-model-hero-inner { grid-template-columns: 1fr; } }

/* USPS */
.hbn-usp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.hbn-usp-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; background: var(--hbn-green-bg); border-radius: 8px; font-size: 14px; }
.hbn-usp-check { color: var(--hbn-green); font-weight: 700; flex-shrink: 0; }
@media (max-width:600px) { .hbn-usp-grid { grid-template-columns: 1fr; } }

/* SPECS TABLE */
.hbn-specs-table { border-radius: var(--hbn-radius); overflow: hidden; border: 1px solid #e0e0e0; }
.hbn-specs-row { display: grid; grid-template-columns: 1fr 1fr; }
.hbn-specs-row:nth-child(even) { background: #f8f8f8; }
.hbn-specs-lbl { padding: 10px 16px; font-size: 13px; color: var(--hbn-text-muted); border-right: 1px solid #e8e8e8; }
.hbn-specs-val { padding: 10px 16px; font-size: 13px; font-weight: 500; }

/* TCO HIGHLIGHT */
.hbn-tco-highlight { text-align: center; padding: 32px; }
.hbn-tco-hl-num { font-size: 36px; font-weight: 700; color: #6fd98d; margin-bottom: 8px; }
.hbn-tco-hl-sub { font-size: 14px; opacity: .7; }

/* DOELGROEPEN */
.hbn-doel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hbn-doel-item { padding: 12px 16px; background: var(--hbn-lblue2); border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--hbn-blue); }
@media (max-width:600px) { .hbn-doel-grid { grid-template-columns: 1fr 1fr; } }

/* PAGE HERO */
.hbn-page-hero { padding: 48px 0; }
.hbn-page-hero h1 { margin-bottom: 10px; }
.hbn-page-hero p { opacity: .85; font-size: 17px; }

/* SUBSIDIES */
.hbn-sub-detail { margin-bottom: 8px; }
.hbn-sub-key { padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; margin-bottom: 12px; background: var(--hbn-lblue2); border-left: 4px solid var(--hbn-mblue); }
.hbn-sub-key.hbn-amber { background: var(--hbn-amber-bg); border-color: var(--hbn-amber); color: var(--hbn-amber); }
.hbn-sub-key.hbn-green  { background: var(--hbn-green-bg); border-color: var(--hbn-green); color: var(--hbn-green); }

/* TCO CALCULATOR */
.hbn-tco-calc { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.hbn-tco-form { background: var(--hbn-grey); border-radius: var(--hbn-radius); padding: 24px; }
.hbn-tco-result { border-radius: var(--hbn-radius); border: 1px solid #e0e0e0; padding: 24px; }
@media (max-width:768px) { .hbn-tco-calc { grid-template-columns: 1fr; } }

/* FORMS */
.hbn-form-group { margin-bottom: 14px; }
.hbn-form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--hbn-text-muted); margin-bottom: 4px; }
.hbn-form-group input, .hbn-form-group select, .hbn-form-group textarea {
  width: 100%; padding: 9px 12px; border: 1px solid #d0d0d0; border-radius: 7px;
  font-size: 14px; font-family: inherit; color: var(--hbn-text);
  transition: border-color .15s;
}
.hbn-form-group input:focus, .hbn-form-group select:focus, .hbn-form-group textarea:focus {
  outline: none; border-color: var(--hbn-mblue);
}
.hbn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hbn-api-tag { display: inline-block; padding: 1px 6px; border-radius: 10px; font-size: 10px; font-weight: 600; background: #EDDBF7; color: #3C3489; margin-left: 4px; }

/* OFFERTE GRID */
.hbn-offerte-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.hbn-offerte-form-wrap { background: #fff; }
.hbn-offerte-form h3 { font-size: 16px; color: var(--hbn-blue); margin: 24px 0 12px; padding-bottom: 6px; border-bottom: 1px solid #e8e8e8; }
.hbn-offerte-form h3:first-child { margin-top: 0; }
.hbn-sidebar-card { background: var(--hbn-grey); border-radius: var(--hbn-radius); padding: 20px; margin-bottom: 16px; }
.hbn-sidebar-card h4 { font-size: 15px; color: var(--hbn-blue); margin: 0 0 12px; }
.hbn-sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.hbn-sidebar-card ul li { padding: 4px 0; font-size: 14px; }
.hbn-sidebar-card p { font-size: 13px; color: var(--hbn-text-muted); margin: 0 0 8px; }
@media (max-width:900px) { .hbn-offerte-grid { grid-template-columns: 1fr; } }
@media (max-width:600px) { .hbn-form-row { grid-template-columns: 1fr; } }

/* SCAN WIDGET */
.hbn-scan-widget { max-width: 680px; margin: 0 auto; }
.hbn-scan-steps-bar { display: flex; gap: 4px; margin-bottom: 28px; }
.hbn-scan-step { flex: 1; padding: 8px; text-align: center; font-size: 12px; background: var(--hbn-grey); border-radius: 6px; color: var(--hbn-text-muted); font-weight: 500; }
.hbn-scan-step.active { background: var(--hbn-blue); color: #fff; }
.hbn-scan-step.done   { background: var(--hbn-green-bg); color: var(--hbn-green); }
.hbn-scan-panel { display: none; }
.hbn-scan-panel.active { display: block; }
.hbn-scan-panel h3 { font-size: 20px; margin-bottom: 20px; color: var(--hbn-blue); }
.hbn-scan-opts { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.hbn-scan-opt { padding: 14px 16px; border: 1.5px solid #d0d0d0; border-radius: 8px; background: #fff; font-size: 14px; cursor: pointer; text-align: left; transition: all .15s; font-family: inherit; }
.hbn-scan-opt:hover, .hbn-scan-opt.selected { border-color: var(--hbn-blue); background: var(--hbn-lblue2); color: var(--hbn-blue); font-weight: 500; }
.hbn-scan-form input { margin-bottom: 12px; }
.hbn-scan-privacy { font-size: 11px; color: var(--hbn-text-muted); text-align: center; margin-top: 8px; }

/* OVER ONS */
.hbn-over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width:768px) { .hbn-over-grid { grid-template-columns: 1fr; } }

/* DEALERS */
.hbn-dealer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 8px; }
.hbn-dealer-stat { background: var(--hbn-blue); color: #fff; border-radius: var(--hbn-radius); padding: 24px; text-align: center; }
.hbn-dealer-n { font-size: 36px; font-weight: 700; }
.hbn-dealer-l { font-size: 13px; opacity: .8; margin-top: 4px; }
@media (max-width:768px) { .hbn-dealer-grid { grid-template-columns: 1fr 1fr; } }

/* SCAN RESULT */
#scan-result-content .hbn-result-model { font-size: 28px; font-weight: 700; color: var(--hbn-blue); margin-bottom: 8px; }
#scan-result-content .hbn-result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 16px 0; }
#scan-result-content .hbn-result-stat { background: var(--hbn-lblue2); border-radius: 8px; padding: 14px; text-align: center; }
#scan-result-content .hbn-result-stat strong { display: block; font-size: 20px; font-weight: 700; color: var(--hbn-blue); }
#scan-result-content .hbn-result-stat span { font-size: 11px; color: var(--hbn-text-muted); }
