/* =====================================================================
   hub.css — "Luchtontvochtiger hub" landing page
   (template-luchtontvochtiger-hub.php)

   Self-contained, like overons.css / adviescentrum.css: it carries its
   own design tokens + base reset so every var() resolves WITHOUT home.css
   (which is enqueued on the front page only — see the PDP token gotcha).

   Ported verbatim from the standalone prototype
   "Qlimatix Claude Design / Luchtontvochtiger (hub).html". The page chrome
   (topbar/header/footer) and the container system (.page / .wrap) come from
   the theme (get_header/get_footer + layout.css), so the prototype's
   .page / .wrap / .header / .topbar overrides and the design-only tweaks panel
   are intentionally NOT ported.

   Tokens + base resets are scoped to the page wrapper with :where(.hub-page)
   (specificity 0) so component classes always win — the same fix used on the
   PDP/cart pages to stop the link/button reset from clobbering components.
   ===================================================================== */

/* ---------- design tokens ----------
   Declared on :root (NOT scoped to .hub-page). hub.css is enqueued only on this
   template (see inc/assets.php), so :root is effectively page-scoped and the
   tokens never leak to other pages — same pattern as home.css. This is the fix
   for the "invisible CTA / no token colours" bug: a .hub-page { --tokens } rule
   placed first in the file was being dropped by the CSS parser, leaving
   var(--orange)/var(--navy) unresolved (transparent button, white-on-white
   text, no step circles). :root resolves reliably. */
:root {
  --navy: #01273f;
  --navy-2: #052e4a;
  --orange: #e77935;
  --orange-hover: #d96b27;
  --cream: #f1ede5;
  --light-blue: #cfdae6;
  --light-blue-2: #dfe6ef;
  --text: #0e2a3f;
  --muted: #5e6f7c;
  --muted-2: #6f7e8c;
  --border: #e7eaee;
  --border-soft: #eef1f4;
  --star: #f5b400;
}

/* ---------- base reset (page-scoped) ---------- */
.hub-page {
  font-family: "Onest", system-ui, -apple-system, sans-serif;
  color: var(--text);
}
:where(.hub-page) *, :where(.hub-page) *::before, :where(.hub-page) *::after { box-sizing: border-box; }
:where(.hub-page) img { display: block; max-width: 100%; }
:where(.hub-page) a { color: inherit; text-decoration: none; }
:where(.hub-page) button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
:where(.hub-page) h1, :where(.hub-page) h2, :where(.hub-page) h3, :where(.hub-page) h4 { margin: 0; color: var(--text); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
:where(.hub-page) [hidden] { display: none !important; }

/* ---------- orange pill button (from homepage.css) ---------- */
.hub-page .btn-pill { display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 4px 28px 4px 4px; background: var(--orange); color: #fff; border-radius: 999px; font-weight: 500; font-size: 15px; letter-spacing: 0.005em; box-shadow: 0 8px 18px -8px rgba(231,121,53,0.55); transition: background .15s, transform .15s; }
.hub-page .btn-pill:hover { background: var(--orange-hover); }
.hub-page .btn-pill__arrow { width: 48px; height: 48px; border-radius: 999px; background: #fff; display: grid; place-items: center; color: var(--text); flex-shrink: 0; }
.hub-page .btn-pill__arrow svg { display: block; }
.hub-page .btn-pill--lg { height: 60px; padding: 4px 32px 4px 4px; font-size: 15px; }
.hub-page .btn-pill--lg .btn-pill__arrow { width: 52px; height: 52px; }

/* ============ SHARED SECTION HEADERS ============ */
.sec { padding: 64px 0 0; }
.sec--tight { padding-top: 44px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.02em; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.sec-title { font-size: 40px; line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; color: var(--text); margin: 0; max-width: 640px; }
.sec-sub { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 12px 0 0; max-width: 560px; }
.sec-all {
  display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
  font-size: 14.5px; font-weight: 600; color: var(--navy); padding-bottom: 6px; transition: gap .15s;
}
.sec-all:hover { gap: 16px; }
.sec-all__arrow { width: 40px; height: 40px; border-radius: 999px; background: var(--navy); color: #fff; display: grid; place-items: center; transition: background .15s; }
.sec-all:hover .sec-all__arrow { background: var(--orange); }

/* ============ HERO ============ */
.cat-hero { padding: 26px 0 8px; }
.cat-crumb { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 26px; flex-wrap: wrap; }
.cat-crumb a { color: var(--muted); transition: color .15s; }
.cat-crumb a:hover { color: var(--text); }
.cat-crumb__sep { color: #c2ccd4; }
.cat-crumb__cur { color: var(--text); }
.cat-hero__grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: stretch; margin-bottom: 30px; }
.cat-hero__title { font-size: 58px; line-height: 1.03; letter-spacing: -0.03em; font-weight: 600; color: var(--navy); margin: 0 0 20px; }
.cat-hero__intro { color: var(--muted); font-size: 17px; line-height: 1.62; max-width: 600px; margin: 0 0 26px; }
.cat-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cat-hero__photo { border-radius: 26px; overflow: hidden; background: #dfe7ee; position: relative; min-height: 420px; }
.cat-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-hero__grid--img { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
.cat-hero__grid--img .cat-hero__photo { min-height: 460px; height: 100%; }
.cat-hero__col { display: flex; flex-direction: column; justify-content: center; }
.cat-hero__help { background: var(--light-blue-2); border-radius: 18px; padding: 22px 24px; margin: 4px 0 24px; }
.cat-hero__help h3 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.cat-hero__help p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 16px; }
.cat-hero__help .cat-hero__steps { margin-bottom: 20px; }
.cat-hero__actions .btn-pill, .cat-hero__help .btn-pill, .toolcard .btn-pill { white-space: nowrap; }
.cat-hero__steps { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cat-hero__steps li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text); }
.cat-hero__steps b { width: 24px; height: 24px; flex-shrink: 0; border-radius: 999px; background: var(--navy); color: #fff; font-size: 12.5px; font-weight: 700; display: grid; place-items: center; }

/* ============ USP STRIP ============ */
.usps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: #f6f9fb; border: 1px solid var(--border-soft); border-radius: 16px;
  padding: 20px 24px; margin-top: 36px;
}
.usps__item { display: flex; align-items: center; gap: 13px; }
.usps__ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; background: var(--light-blue-2); color: var(--navy); display: grid; place-items: center; }
.usps__t { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.25; }
.usps__s { font-size: 12.5px; color: var(--muted); line-height: 1.3; }

/* ============ TYPE CHOICE CARDS ============ */
.types__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.typecard {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.typecard:hover { box-shadow: 0 26px 50px -34px rgba(8,38,65,0.4); border-color: #d8e0e8; transform: translateY(-3px); }
.typecard__media { overflow: hidden; aspect-ratio: 16 / 10; background: #dde7f0; }
.typecard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.typecard:hover .typecard__media img { transform: scale(1.04); }
.typecard__body { padding: 30px 32px 30px; display: flex; flex-direction: column; flex: 1; }
.typecard__temp { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--navy); background: #eef3f7; border-radius: 999px; padding: 6px 13px; margin-bottom: 14px; }
.typecard__temp svg { color: var(--orange); }
.typecard__title { font-size: 24px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; margin: 0 0 8px; }
.typecard__desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0 0 16px; }
.typecard__rooms { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.typecard__rooms li { font-size: 13px; font-weight: 500; color: var(--text); background: #f4f7fa; border: 1px solid var(--border-soft); border-radius: 999px; padding: 6px 13px; }
.typecard__link { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--orange); }
.typecard__link svg { transition: transform .15s; }
.typecard:hover .typecard__link svg { transform: translate(2px,-2px); }

/* ============ CATEGORY GRID (shop op ruimte) ============ */
.lk-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 26px; row-gap: 40px; }
.lk-card { display: block; }
.lk-card__img { border-radius: 20px; overflow: hidden; aspect-ratio: 1.5 / 1; background: #eef1f4; }
.lk-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.lk-card:hover .lk-card__img img { transform: scale(1.04); }
.lk-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; }
.lk-card__label { font-size: 20px; line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.lk-card__count { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.lk-card__arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 999px; background: #fff; color: var(--text); display: grid; place-items: center; box-shadow: 0 10px 24px -10px rgba(8,38,65,0.28), 0 2px 6px rgba(8,38,65,0.06); transition: background .18s, color .18s, transform .18s; }
.lk-card:hover .lk-card__arrow { background: var(--orange); color: #fff; transform: translateY(-2px); }
.lk-more { margin-top: 30px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.lk-more__chips { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.lk-more__chips a { font-size: 13.5px; font-weight: 500; color: var(--navy); background: #f4f7fa; border: 1px solid var(--border-soft); padding: 8px 15px; border-radius: 999px; transition: border-color .15s, background .15s; }
.lk-more__chips a:hover { border-color: var(--navy); background: #fff; }

/* ============ FEATURE EXPLAINER ============ */
.feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featcard { background: #fff; border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s, transform .2s; }
.featcard:hover { box-shadow: 0 24px 44px -30px rgba(8,38,65,0.34); border-color: var(--border); transform: translateY(-3px); }
.featcard__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--light-blue-2); }
.featcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featcard:hover .featcard__img img { transform: scale(1.04); }
.featcard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.featcard__title { font-size: 19px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; margin: 0 0 10px; }
.featcard__text { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.featcard__link { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); }
.featcard__link .featcard__arrow { width: 30px; height: 30px; border-radius: 999px; background: var(--light-blue-2); color: var(--navy); display: grid; place-items: center; transition: background .15s, color .15s, transform .15s; }
.featcard:hover .featcard__arrow { background: var(--orange); color: #fff; transform: translate(2px,-2px); }

/* ============ TOOLS CTA ============ */
.tools__grid { display: block; }
.toolcard { position: relative; overflow: hidden; border-radius: 24px; padding: 40px 40px 38px; display: flex; flex-direction: column; color: #fff; min-height: 240px; }
.toolcard--solo { flex-direction: row; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; min-height: 0; padding: 46px 52px; }
.toolcard--solo .toolcard__main { max-width: 600px; }
.toolcard--solo .toolcard__title { font-size: 32px; }
.toolcard--solo .toolcard__text { margin-bottom: 0; }
.toolcard--solo .btn-pill { flex-shrink: 0; }
.toolcard--keuze { background: radial-gradient(120% 120% at 0% 0%, #16456b 0%, rgba(22,69,107,0) 55%), var(--navy); }
.toolcard--reken { background: var(--light-blue); color: var(--text); }
.toolcard__tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 34px; }
.toolcard--keuze .toolcard__tag { color: var(--orange); background: rgba(231,121,53,0.16); }
.toolcard--reken .toolcard__tag { color: var(--navy); background: rgba(1,39,63,0.08); }
.toolcard__title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 10px; }
.toolcard--keuze .toolcard__title { color: #fff; }
.toolcard__text { font-size: 15px; line-height: 1.6; margin: 0 0 24px; max-width: 420px; }
.toolcard--keuze .toolcard__text { color: rgba(255,255,255,0.78); }
.toolcard--reken .toolcard__text { color: var(--muted); }
.toolcard__cta { margin-top: auto; align-self: flex-start; }

/* ============ SEO CONTENT ============ */
.seo { padding: 64px 0 0; }
.seo__layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; align-items: start; }
.seo__main { min-width: 0; }
.seo h2 { font-size: 36px; color: var(--navy); letter-spacing: -0.02em; margin: 0 0 6px; }
.seo__lede { font-size: 17px; font-style: italic; color: var(--muted); margin: 0 0 26px; }
.seo h3 { font-size: 23px; color: var(--navy); letter-spacing: -0.01em; margin: 38px 0 14px; }
.seo h4 { font-size: 17px; color: var(--navy); margin: 22px 0 8px; }
.seo p { font-size: 15.5px; color: var(--text); line-height: 1.7; margin: 0 0 14px; }
.seo p .lnk, .seo a.lnk { color: var(--orange); font-weight: 500; }
.seo ul { margin: 6px 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.seo ul li { position: relative; padding-left: 34px; font-size: 15px; color: var(--text); line-height: 1.6; }
.seo ul li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 999px; background: var(--navy); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M4 16L11 23 27 7'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
.seo strong { color: var(--navy); font-weight: 600; }
.seo-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 10px 0 24px; font-size: 14px; font-variant-numeric: tabular-nums; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.seo-table th, .seo-table td { text-align: left; padding: 14px 18px; }
.seo-table thead th { background: var(--navy); color: #fff; font-weight: 600; font-size: 13.5px; }
.seo-table tbody td { color: var(--text); }
.seo-table tbody tr:nth-child(odd) td { background: #fff; }
.seo-table tbody tr:nth-child(even) td { background: #eef3f7; }
.seo-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.seo__benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 10px 0 24px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; background: #f6f9fb; border: 1px solid var(--border-soft); border-radius: 14px; padding: 18px; }
.benefit__ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--light-blue-2); color: var(--navy); display: grid; place-items: center; }
.benefit h4 { margin: 1px 0 4px; font-size: 15.5px; color: var(--navy); }
.benefit p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.seo__tip { display: flex; gap: 16px; align-items: flex-start; background: var(--navy); border-radius: 16px; padding: 22px 24px; margin: 10px 0 26px; }
.seo__tip svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.seo__tip p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.seo__tip b { color: #fff; }
/* Dr. Dry AI card */
.aichat { position: sticky; top: 24px; border-radius: 22px; padding: 26px 26px 28px; background: radial-gradient(120% 90% at 0% 0%, #eef4fb 0%, rgba(238,244,251,0) 55%), radial-gradient(120% 90% at 100% 100%, #fbeee7 0%, rgba(251,238,231,0) 55%), #f4f7fb; border: 1px solid #e3eaf2; }
.aichat__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.aichat__id { display: flex; align-items: center; gap: 12px; }
.aichat__avatar { width: 50px; height: 50px; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.aichat__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aichat__name { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.aichat__role { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.aichat__role::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: #34b35a; }
.aichat__nav { display: flex; gap: 6px; }
.aichat__nav button { width: 30px; height: 30px; display: grid; place-items: center; color: #9aa9b6; transition: color .15s; }
.aichat__nav button:hover { color: var(--navy); }
.aichat__lead { font-size: 14.5px; line-height: 1.55; color: var(--text); margin: 0 0 18px; }
.aichat__suggs { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.aichat__sugg { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; background: #fff; border: 1px solid #d8e0e9; border-radius: 12px; padding: 12px 14px; font-size: 13.5px; color: var(--navy); transition: border-color .15s, background .15s; }
.aichat__sugg:hover { border-color: var(--navy); background: #f7fafc; }
.aichat__sugg svg { display: block; color: var(--orange); flex-shrink: 0; }
.aichat__input { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #d8e0e9; border-radius: 12px; padding: 13px 14px; }
.aichat__input input { flex: 1; border: none; outline: none; background: none; font-size: 14.5px; color: var(--text); font-family: inherit; }
.aichat__input input::placeholder { color: #9aa9b6; }
.aichat__send { width: 28px; height: 28px; display: grid; place-items: center; color: #b3bfca; }
.aichat__disclaim { font-size: 12.5px; color: #98a4ae; margin: 14px 2px 0; line-height: 1.5; }
.aichat.is-chatting .aichat__lead, .aichat.is-chatting .aichat__suggs { display: none; }
.aichat__thread { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.aichat__msg { display: flex; gap: 9px; max-width: 92%; }
.aichat__msg--user { align-self: flex-end; }
.aichat__msg--bot { align-self: flex-start; }
.aichat__msg-av { width: 32px; height: 32px; border-radius: 999px; overflow: hidden; flex-shrink: 0; background: linear-gradient(160deg,#dfeaf6,#cdddee); }
.aichat__msg-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aichat__bubble { padding: 11px 14px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.aichat__msg--user .aichat__bubble { background: var(--navy); color: #fff; border-bottom-right-radius: 5px; }
.aichat__msg--bot .aichat__bubble { background: #fff; border: 1px solid #d8e0e9; color: var(--text); border-bottom-left-radius: 5px; }
.aichat__bubble strong { font-weight: 700; color: var(--navy); }
.aichat__msg--user .aichat__bubble strong { color: #fff; }
.aichat__typing { display: inline-flex; gap: 5px; align-items: center; }
.aichat__typing span { width: 7px; height: 7px; border-radius: 999px; background: #b3c1cf; display: block; animation: aichatBlink 1.2s infinite ease-in-out; }
.aichat__typing span:nth-child(2){ animation-delay: .2s; }
.aichat__typing span:nth-child(3){ animation-delay: .4s; }
@keyframes aichatBlink { 0%,80%,100%{ opacity:.3; transform: translateY(0); } 40%{ opacity:1; transform: translateY(-2px); } }

/* ============ AUTHOR-STYLE CAROUSELS ============ */
.au-section { padding: 64px 0 0; }
.au-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin: 0 0 28px; }
.au-section__title { font-size: 36px; line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; color: var(--text); margin: 0; max-width: 560px; }
.au-section__sub { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 10px 0 0; max-width: 520px; }
.au-section__link { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; font-size: 14.5px; font-weight: 600; color: var(--navy); transition: gap .15s; }
.au-section__link:hover { gap: 13px; }
.au-section__link .arrow-circle { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--border); background: #fff; flex-shrink: 0; display: grid; place-items: center; color: var(--navy); transition: background .15s, color .15s, border-color .15s; }
.au-section__link:hover .arrow-circle { background: var(--orange); color: #fff; border-color: var(--orange); }
.au-slider-foot { display: flex; align-items: center; gap: 26px; margin-top: 24px; }
.au-slider-bar { position: relative; flex: 1; height: 4px; border-radius: 999px; background: var(--border-soft); overflow: hidden; }
.au-slider-bar__thumb { position: absolute; top: 0; left: 0; height: 100%; min-width: 14%; width: 30%; border-radius: 999px; background: var(--navy); transition: left .18s ease, width .18s ease; }
.au-slider-nav { display: flex; gap: 10px; flex-shrink: 0; }
.au-slider-nav button { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--text); display: grid; place-items: center; transition: background .15s, border-color .15s, color .15s, box-shadow .15s, transform .12s; }
.au-slider-nav button:hover { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 14px 24px -14px rgba(8,38,65,0.45); }
.au-slider-nav button:active { transform: scale(0.94); }
.au-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 2px 12px; margin: 0 -2px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.au-slider::-webkit-scrollbar { display: none; }
.au-slider > * { flex: 0 0 auto; width: 360px; scroll-snap-align: start; }
.au-video { display: flex; flex-direction: column; }
.au-video__thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: radial-gradient(120% 120% at 50% 40%, #0e3a5b 0%, #052438 100%); cursor: pointer; }
.au-video__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.au-video:hover .au-video__thumb img { transform: scale(1.05); }
.au-video__thumb::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to top, rgba(4,18,30,0.45) 0%, rgba(4,18,30,0) 34%); }
.au-video__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 999px; background: var(--orange); color: #fff; display: grid; place-items: center; z-index: 3; padding-left: 3px; box-shadow: 0 12px 30px -8px rgba(231,121,53,0.65); transition: transform .18s, background .18s; }
.au-video:hover .au-video__play { transform: translate(-50%,-50%) scale(1.08); background: var(--orange-hover); }
.au-video__dur { position: absolute; right: 12px; bottom: 12px; z-index: 3; background: rgba(4,18,30,0.82); color: #fff; font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; padding: 4px 10px; border-radius: 7px; }
.au-video__title { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.32; letter-spacing: -0.01em; margin: 16px 0 6px; text-wrap: pretty; }
.au-video__meta { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.au-video__meta svg { color: #c0392b; }

/* ============ ARTICLE CARDS in carousel (from blog-grid.css) ============ */
.advh-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; text-decoration: none; transition: transform .18s, box-shadow .18s, border-color .18s; }
.advh-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(8,38,65,0.4); border-color: var(--border); }
.advh-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--light-blue); }
.advh-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.advh-card:hover .thumb img { transform: scale(1.04); }
.advh-card .c { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.advh-card .cat { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange); margin: 0 0 9px; }
.advh-card h4 { font-size: 18.5px; font-weight: 600; color: var(--text); line-height: 1.28; letter-spacing: -0.015em; margin: 0 0 11px; text-wrap: pretty; }
.advh-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 20px; }
.advh-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.advh-card .read { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.advh-card .read svg { display: block; color: var(--muted-2); }
.advh-card .more { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); }
.advh-card .more svg { width: 30px; height: 30px; flex: none; box-sizing: border-box; border-radius: 999px; background: var(--light-blue); color: var(--navy); padding: 7px; display: grid; place-items: center; transition: background .15s, color .15s, transform .15s; }
.advh-card:hover .more svg { background: var(--orange); color: #fff; transform: translate(2px, -2px); }

/* ============ FAQ ============ */
.faqcat__grid { display: grid; grid-template-columns: 330px 1fr; gap: 60px; align-items: start; }
.faqcat__aside { position: sticky; top: 24px; }
.faqcat__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.faqcat__title { font-size: 34px; text-align: left; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.faqcat__intro { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.faqitem { border-bottom: 1px solid var(--border); }
.faqitem > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 4px; font-size: 17px; font-weight: 600; color: var(--navy); }
.faqitem > summary::-webkit-details-marker { display: none; }
.faqitem__icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 999px; border: 1.5px solid var(--border); display: grid; place-items: center; color: var(--navy); transition: transform .25s ease; }
.faqitem[open] .faqitem__icon { background: var(--orange); color: #fff; border-color: var(--orange); transform: rotate(45deg); }
.faqitem__body { padding: 0 4px 24px; }
.faqitem__body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0 0 10px; }
.faqitem__body a { color: var(--orange); font-weight: 500; }

/* tail spacing before footer — the footer's "Blijf op de hoogte" newsletter band
   overlaps ~150px upward, so the last section needs generous bottom padding to
   clear it (matches the homepage's faqcat 200px). */
.page__tail { padding-bottom: 200px; }

/* ============ RESPONSIVE (tablet + mobile) ============ */
@media (max-width: 1080px){
  .lk-grid { grid-template-columns: repeat(2, 1fr); }
  .feat__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .sec { padding-top: 50px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
  .sec-title { font-size: 34px; max-width: none; }
  .sec-sub { max-width: none; }

  /* hero */
  .cat-hero { padding: 18px 0 4px; }
  .cat-hero__grid, .cat-hero__grid--img { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .cat-hero__grid--img .cat-hero__photo, .cat-hero__photo { min-height: 320px; }
  .cat-hero__title { font-size: 46px; }
  .cat-hero__intro { max-width: none; }

  /* usp strip — icon above text (tablet) */
  .usps__item { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* seo + ai advisor */
  .seo { padding-top: 50px; }
  .seo__layout { grid-template-columns: 1fr; gap: 32px; }
  .aichat { position: static; }
  .seo h2 { font-size: 30px; }

  /* carousel section heads */
  .au-section { padding-top: 50px; }
  .au-section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .au-section__title { font-size: 30px; max-width: none; }
  .au-section__sub { max-width: none; }

  /* faq */
  .faqcat__grid { grid-template-columns: 1fr; gap: 26px; }
  .faqcat__aside { position: static; }

  /* feature explainer — image left, text right, text vertically centered (tablet) */
  .feat__grid { grid-template-columns: 1fr; gap: 16px; }
  .featcard { flex-direction: row; align-items: stretch; }
  .featcard__img { flex: 0 0 38%; max-width: 320px; aspect-ratio: 4 / 3; }
  .featcard__img img { height: 100%; }
  .featcard__body { justify-content: center; padding: 24px 28px; }
  .featcard__link { margin-top: 16px; }

  /* reserve space for the footer's upward-overlapping newsletter band */
  .page__tail { padding-bottom: 200px; }
}

@media (max-width: 760px){
  .types__grid { grid-template-columns: 1fr; gap: 20px; }
  .toolcard--solo { flex-direction: column; align-items: flex-start; gap: 22px; padding: 34px 28px; }
  .toolcard--solo .toolcard__title { font-size: 26px; }
  .seo__benefits { grid-template-columns: 1fr; }
  /* feedback: drop the secondary "view all" links on phones — they read as a
     stray link under the heading once the section header stacks. The room cards,
     carousel and global nav already cover these paths. */
  .sec-all { display: none; }              /* "Bekijk alle luchtontvochtigers" (shop op ruimte) */
  .au-section__link { display: none; }      /* "Naar het adviescentrum" (artikelen carrousel) */
}

@media (max-width: 680px){
  .usps { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; padding: 18px 16px; margin-top: 26px; }
  .usps__item { flex-direction: row; align-items: center; gap: 11px; }
  .usps__ico { width: 36px; height: 36px; border-radius: 10px; }
  .usps__t { font-size: 13px; }
  .usps__s { font-size: 11.5px; }
  .lk-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .cat-hero__title { font-size: 38px; }
  .sec-title { font-size: 28px; }
  .seo h2 { font-size: 26px; }
  .seo h3 { font-size: 20px; }
  .au-section__title { font-size: 26px; }
  .faqcat__title { font-size: 27px; }
  .seo-table { font-size: 12.5px; }
  .seo-table th, .seo-table td { padding: 10px 11px; }
  /* phones: stack the photo back on top */
  .feat__grid { gap: 18px; }
  .featcard { flex-direction: column; }
  .featcard__img { flex: none; max-width: none; aspect-ratio: 16 / 10; }
  .featcard__body { justify-content: flex-start; padding: 24px 26px 26px; }
  /* slider cards fit the viewport */
  .au-slider > * { width: min(85vw, 320px); }
}

@media (max-width: 400px){
  .cat-hero__title { font-size: 32px; }
  .cat-hero__grid--img .cat-hero__photo, .cat-hero__photo { min-height: 240px; }
  /* keep the 4 USP's as a tidy 2x2 (not a tall single column) on small phones */
  .usps { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; padding: 16px 13px; }
  .usps__ico { width: 32px; height: 32px; }
  .usps__t { font-size: 12.5px; line-height: 1.2; }
  .usps__s { font-size: 11px; line-height: 1.25; }
}
