/* ==========================================================================
   fh-theme.css — Fraudehulp public redesign (v3 · sober loket, whitespace-first)
   --------------------------------------------------------------------------
   Self-contained stylesheet for the WordPress-snapshot pages served by
   app/[[...slug]]/route.ts (raw HTML that never passes through app/layout.tsx
   or Tailwind).

   Design intent: a Dutch overheidsloket / Rijksoverheid content page — mostly
   white, one calm reading column, generous whitespace, almost no boxes or
   colour. Structure comes from typography and space, not from cards, shadows or
   accent bars. A single navy page-title band carries the H1 (like the reference
   screenshot); everything below is quiet prose with underlined links.

   Humanist sans (Fira Sans, standing in for the proprietary RijksoverheidSans).
   Navy #0b4571 dominant, oranje #e87722 only as one thin keyline. WCAG AA.

   NOT an official-status claim: no state emblem, no "overheid/rijk" wording;
   "Een dienst van Firontis B.V." stays explicit. Commercial no-cure-no-pay.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0b4571;
  --navy-700: #0d4f82;
  --navy-800: #093a5f;
  --navy-900: #072e4c;
  --navy-050: #eef3f8;

  --orange: #e87722;
  --orange-ink: #9c4b0c;

  --ink: #14293b; /* headings (~12:1) */
  --body: #2b3c4b; /* body (~8.5:1) */
  --muted: #5a6b78; /* secondary (~4.9:1) */
  --line: #dbe1e7; /* hairlines */
  --line-soft: #eaeef2;
  --white: #ffffff;
  --green: #17794c;

  --font: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --wrap: 1120px;
  --col: 720px; /* the single reading column */
  --radius: 6px;
  --focus-ring: 0 0 0 2px #fff, 0 0 0 5px var(--orange);
}

/* ---- Reset -------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body.fh {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.fh img {
  max-width: 100%;
  height: auto;
  display: block;
}
:where(.fh h1, .fh h2, .fh h3) {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
body.fh p {
  margin: 0 0 1.1rem;
  max-width: 66ch;
}
:where(.fh a) {
  color: var(--navy);
  text-decoration: none;
}
:where(.fh a:hover) {
  color: var(--navy-800);
}
body.fh :focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body.fh * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- Containers ---------------------------------------------------------- */
.fh-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.fh-col {
  width: 100%;
  max-width: var(--col);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---- Skip link ----------------------------------------------------------- */
.fh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
}
.fh-skip:focus {
  left: 0;
}

/* ==========================================================================
   Header — thin utility strip · white masthead · light nav bar
   ========================================================================== */
.fh-topbar {
  background: var(--navy-900);
  color: #c6d8e8;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--orange);
}
.fh-topbar .fh-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 36px;
  padding-block: 5px;
  flex-wrap: wrap;
}
.fh-topbar h2 {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
}
.fh-topbar-right {
  margin-left: auto;
  color: #93b1c9;
}
.fh-topbar-right strong {
  color: #fff;
  font-weight: 600;
}

/* Sticky header wrapper (masthead + mobile panel + nav). The utility topbar
   sits above it and scrolls away. */
.fh-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
}
.fh-masthead {
  background: var(--white);
}
.fh-masthead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
}
.fh-masthead-actions {
  display: flex;
  gap: 10px;
  flex: none;
}
.fh-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.fh-emblem {
  width: 46px;
  height: 46px;
  flex: none;
  display: block;
}
.fh-emblem svg,
.fh-emblem img {
  width: 100%;
  height: 100%;
  display: block;
}
.fh-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.fh-brand-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.fh-brand-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

/* Light navigation bar (not a heavy navy block) */
.fh-mainnav {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fh-mainnav .fh-wrap {
  display: flex;
  align-items: stretch;
}
.fh-mainnav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.fh-mainnav a {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.fh-mainnav a:hover {
  color: var(--navy);
  border-bottom-color: var(--line);
}
.fh-mainnav a[aria-current='page'] {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
/* Borderless icon buttons (mobile menu + search) */
.fh-icon-btn {
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}
.fh-icon-btn:hover {
  background: var(--navy-050);
  color: var(--navy);
}
.fh-icon-btn svg {
  width: 24px;
  height: 24px;
}
.fh-menu-toggle {
  display: none;
}

/* ==========================================================================
   Page-title band (navy) — the one strong block, carries the H1
   ========================================================================== */
.fh-pagehead {
  background: var(--navy);
  color: #cfe0ef;
}
.fh-pagehead .fh-col {
  padding-block: clamp(34px, 5vw, 56px);
}
.fh-breadcrumb {
  font-size: 0.86rem;
  margin: 0 0 14px;
}
.fh-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #a9c4da;
}
.fh-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fh-breadcrumb li:not(:first-child)::before {
  content: '›';
  color: #7a9bb8;
}
.fh-breadcrumb a {
  color: #bcd4e8;
  text-decoration: none;
}
.fh-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
.fh-pagehead h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0;
}
.fh-pagehead-intro {
  color: #cfe0ef;
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: 60ch;
  margin: 16px 0 0;
}

/* ==========================================================================
   Content — single calm column on white
   ========================================================================== */
.fh-section {
  padding-block: clamp(40px, 5.5vw, 68px);
}
.fh-section + .fh-section {
  border-top: 1px solid var(--line-soft);
}
.fh-section h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin: 0 0 0.5em;
}
.fh-section > .fh-col > h2:first-child,
.fh-section > .fh-col > .fh-lead {
  margin-top: 0;
}
.fh-lead {
  font-size: 1.12rem;
  color: var(--body);
  margin: 0 0 1.2rem;
}
.fh-muted {
  color: var(--muted);
}

/* ---- Prose (restyled stored info-page content) --------------------------- */
.fh-prose {
  font-size: 1.05rem;
}
.fh-prose > * {
  max-width: 100%;
}
.fh-prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin: 1.7em 0 0.5em;
}
.fh-prose h3 {
  font-size: 1.3rem;
  margin: 1.5em 0 0.4em;
}
.fh-prose h4,
.fh-prose h5 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.08rem;
  margin: 1.3em 0 0.3em;
}
.fh-prose > *:first-child,
.fh-prose h2:first-child,
.fh-prose h3:first-child {
  margin-top: 0;
}
.fh-prose p {
  margin: 0 0 1.1rem;
}
.fh-prose ul,
.fh-prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.5em;
}
.fh-prose ul {
  list-style: disc;
}
.fh-prose ol {
  list-style: decimal;
}
.fh-prose li {
  margin: 0 0 0.4rem;
}
.fh-prose strong,
.fh-prose b {
  font-weight: 700;
  color: var(--ink);
}
.fh-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 0.6rem 0;
}
.fh-prose figure {
  margin: 1.2rem 0;
}
.fh-prose svg {
  max-width: 26px;
  max-height: 26px;
  vertical-align: middle;
}
.fh-prose blockquote {
  margin: 1.3rem 0;
  padding-left: 18px;
  border-left: 3px solid var(--line);
  color: var(--ink);
}
.fh-prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}
.fh-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.3rem 0;
  font-size: 0.98rem;
}
.fh-prose th,
.fh-prose td {
  border: 1px solid var(--line);
  padding: 9px 12px;
  text-align: left;
}
.fh-prose th {
  background: var(--paper);
  font-weight: 700;
  color: var(--ink);
}
/* Forms embedded in stored content (contact / meld-uw-zaak / search) */
.fh-prose label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.fh-prose input[type='text'],
.fh-prose input[type='email'],
.fh-prose input[type='tel'],
.fh-prose input[type='search'],
.fh-prose input[type='number'],
.fh-prose input[type='url'],
.fh-prose input[type='date'],
.fh-prose textarea,
.fh-prose select {
  width: 100%;
  max-width: 520px;
  min-height: 48px;
  padding: 10px 14px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  margin-bottom: 12px;
}
.fh-prose textarea {
  min-height: 120px;
}
.fh-prose input:focus,
.fh-prose textarea:focus,
.fh-prose select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 69, 113, 0.15);
}
.fh-prose button,
.fh-prose input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.fh-prose button:hover,
.fh-prose input[type='submit']:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
}

/* ==========================================================================
   Stored info/review pages (fh-prose--page): tame leftover Elementor chrome
   --------------------------------------------------------------------------
   These pages are sliced from WordPress/Elementor markup whose own CSS is
   deliberately stripped. Without it, Elementor's decorative widgets render raw:
   big 256px icon images, a misleading "verified" seal on fraud reports, and
   share buttons that are non-functional <div>s (they need Elementor JS). None
   carry SEO value (empty alt / no href / no text), so we hide them and let the
   headings, values, report text and internal links read as a calm government-
   style column. Blog articles use plain .fh-prose and keep their imagery.
   ========================================================================== */

/* Decorative icon widgets + the big square "verified" badge / step icons.
   Elementor exports these as square PNG icons (size-large / size-full, empty
   alt); the report thumbnails below are size-medium and are kept. */
.fh-prose--page .elementor-widget-icon,
.fh-prose--page .elementor-icon-wrapper,
.fh-prose--page img.size-large,
.fh-prose--page img.size-full,
.fh-prose--page img[src*='verify'] {
  display: none;
}
/* Non-functional Elementor share buttons (JS-driven <div role=button>). */
.fh-prose--page .elementor-widget-share-buttons,
.fh-prose--page .elementor-share-buttons,
.fh-prose--page .elementor-social-icons-wrapper {
  display: none;
}
/* Elementor wraps every widget in nested divs; strip their baked-in gaps so the
   content flows on our own rhythm instead of collapsing into large voids. */
.fh-prose--page .elementor-widget-container,
.fh-prose--page .elementor-widget-wrap,
.fh-prose--page .elementor-element {
  margin: 0;
  padding: 0;
}
/* Label + value heading pairs (e.g. "Datum eerste melding" / "2024-05-11")
   read as tight rows rather than a stack of shouting headings. */
.fh-prose--page .elementor-widget-heading {
  margin: 0;
}
.fh-prose--page .elementor-heading-title {
  margin: 0.55em 0 0.15em;
}
/* Remaining report thumbnails (size-medium) stay, but never dominate. */
.fh-prose--page img.size-medium {
  max-width: 160px;
  height: auto;
}

/* --- Prose polish: a comfortable, professional reading rhythm -------------- */
.fh-prose--page {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--body);
}
/* Lead: the first paragraph of the content reads a touch larger. */
.fh-prose--page > p:first-of-type,
.fh-prose--page .elementor-widget-text-editor:first-of-type p:first-child {
  font-size: 1.14rem;
  color: var(--ink);
}
.fh-prose--page h2,
.fh-prose--page .elementor-heading-title {
  color: var(--ink);
  line-height: 1.25;
}
/* Clean bullet lists with a branded marker */
.fh-prose--page ul {
  list-style: none;
  padding-left: 0;
}
.fh-prose--page ul > li {
  position: relative;
  padding-left: 1.6em;
  margin: 0 0 0.6em;
}
.fh-prose--page ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}

/* --- Shop directory listings (controleer-rapporten, alle-webshoprapporten) --
   Each shop entry is an Elementor container-link wrapping a heading + text, so
   without styling the whole block renders underlined. Turn those link-blocks
   into clean cards and lay the loop grids out in columns. */
.fh-prose--page .elementor-loop-container,
.fh-prose--page .elementor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin: 0.6rem 0 1.6rem;
}
.fh-prose--page a:has(h2),
.fh-prose--page a:has(h3),
.fh-prose--page a:has(h4) {
  display: block;
  height: 100%;
  text-decoration: none;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--body);
  transition:
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}
.fh-prose--page a:has(h2):hover,
.fh-prose--page a:has(h3):hover,
.fh-prose--page a:has(h4):hover {
  border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(11, 69, 113, 0.08);
}
.fh-prose--page a:has(h4) .elementor-heading-title,
.fh-prose--page a:has(h4) h2,
.fh-prose--page a:has(h4) h3,
.fh-prose--page a:has(h4) h4 {
  color: var(--navy);
  margin: 0 0 4px;
}
.fh-prose--page a:has(h4) span.elementor-heading-title {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.92rem;
}
/* Visually-hide labels that lost their WordPress screen-reader class. */
.fh-prose--page .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
/* Hide the dead jet-search chrome (results panel + submit button) — fh-search.js
   supplies the live dropdown and Enter submits. */
.fh-prose--page .jet-ajax-search__results-holder,
.fh-prose--page .jet-ajax-search__submit,
.fh-prose--page .jet_search_listing_grid_hidden_template {
  display: none !important;
}
/* Give the search field on these pages the same clear navy box as elsewhere. */
.fh-prose--page .jet-ajax-search__field {
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  height: 52px;
  max-width: 560px;
}

/* --- FAQ accordion (native <details>, incl. Elementor nested-accordion) ---- */
.fh-prose--page details,
.fh-prose--page .e-n-accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 0 12px;
  background: var(--white);
  overflow: hidden;
}
.fh-prose--page summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--ink);
}
.fh-prose--page summary::-webkit-details-marker {
  display: none;
}
.fh-prose--page summary:hover {
  background: var(--navy-050);
}
/* Reuse the question <h4> as inline title; drop Elementor's own icon spans. */
.fh-prose--page summary h4,
.fh-prose--page summary .e-n-accordion-item-title-header {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}
.fh-prose--page summary .e-n-accordion-item-title-icon,
.fh-prose--page summary .elementor-widget-icon {
  display: none;
}
/* Our own +/- chevron */
.fh-prose--page summary::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.4px solid var(--navy);
  border-bottom: 2.4px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.fh-prose--page details[open] summary::after {
  transform: rotate(-135deg);
}
.fh-prose--page details > *:not(summary),
.fh-prose--page .e-n-accordion-item > *:not(summary) {
  padding: 0 20px 18px;
  margin: 0;
}
.fh-prose--page details p,
.fh-prose--page .e-n-accordion-item p {
  margin: 0;
  color: var(--body);
}

/* ==========================================================================
   Form pages (meld-uw-zaak intake + contact) — purpose-built layout
   ========================================================================== */
.fh-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}
.fh-form-main h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0 0 1rem;
}
.fh-form-card {
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(16, 32, 56, 0.04);
}
.fh-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 26px;
}
.fh-fieldset:last-of-type {
  margin-bottom: 12px;
}
.fh-fieldset legend {
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy-050);
  width: 100%;
  padding-bottom: 8px;
}
.fh-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.fh-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.fh-field--2 {
  grid-column: 1 / -1;
}
.fh-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.fh-req {
  color: var(--orange);
}
.fh-field input,
.fh-field select,
.fh-field textarea,
.fh-form input,
.fh-form select,
.fh-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong, #b9c2cc);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition:
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}
.fh-field textarea {
  min-height: 108px;
  resize: vertical;
}
.fh-field input:focus,
.fh-field select:focus,
.fh-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 69, 113, 0.15);
}
.fh-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b4571' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.fh-field-help {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
.fh-file-input {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1.5px dashed var(--line-strong, #b9c2cc);
  border-radius: 8px;
  background: var(--paper, #f7f9fb);
  font-size: 0.95rem;
  cursor: pointer;
}

/* Consent */
.fh-consent {
  margin: 20px 0 4px;
  padding: 16px 18px;
  background: var(--navy-050);
  border-radius: 8px;
}
.fh-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--body);
}
.fh-check input[type='checkbox'] {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--navy);
  cursor: pointer;
}
.fh-check a {
  color: var(--navy);
  text-decoration: underline;
}

.fh-form-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.fh-form-actions .fh-btn {
  min-height: 52px;
  padding: 0 30px;
}
.fh-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Form banner + success panel (rendered by fh-forms.js) */
.fh-form-banner {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  background: #fdecea;
  color: #a01b0b;
  border: 1px solid #f3c0ba;
}
.fh-form-banner[data-ok='1'] {
  background: #e7f7ed;
  color: #11633a;
  border-color: #b7e3c8;
}
.fh-form-done {
  padding: 28px;
  border-radius: 12px;
  background: #e7f7ed;
  border: 1px solid #b7e3c8;
  color: #11633a;
}
.fh-form-done h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: #0c4a2a;
}
.fh-form-done p {
  margin: 0;
  font-size: 1.05rem;
}

/* Aside (trust / contact panel) */
.fh-form-aside {
  padding: 22px 24px;
  background: var(--paper, #f7f9fb);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: sticky;
  top: 96px;
}
.fh-form-aside h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.fh-form-aside > p {
  margin: 0 0 16px;
  color: var(--body);
  font-size: 0.95rem;
}
.fh-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.fh-trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--body);
}
.fh-trust-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.fh-trust-ic svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}
.fh-contact-dl {
  margin: 0;
}
.fh-contact-dl dt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
}
.fh-contact-dl dt:first-child {
  margin-top: 0;
}
.fh-contact-dl dd {
  margin: 2px 0 0;
  font-weight: 600;
  color: var(--ink);
}
.fh-contact-dl a {
  color: var(--navy);
}

@media (max-width: 820px) {
  .fh-form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fh-form-aside {
    position: static;
    order: -1;
  }
  .fh-field-grid {
    grid-template-columns: 1fr;
  }
}

/* Prose links get the governmental underline */
.fh-prose a,
.fh-col p a,
.fh-linklist a,
.fh-faq a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.fh-prose a:hover,
.fh-col p a:hover,
.fh-linklist a:hover,
.fh-faq a:hover {
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

/* Simple bullet list */
.fh-list {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.fh-list li {
  position: relative;
  padding-left: 30px;
  color: var(--body);
}
.fh-list li svg {
  position: absolute;
  left: 0;
  top: 4px;
  width: 19px;
  height: 19px;
  color: var(--green);
}

/* Primary action row (search + buttons) */
.fh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.fh-search-lead {
  max-width: 520px;
  margin: 0 0 14px;
}

/* Report link list (recent shops) — heading link + one quiet line */
.fh-linklist {
  list-style: none;
  margin: 0.4rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 22px;
}
.fh-linklist h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.fh-linklist h3 a {
  text-decoration: none;
}
.fh-linklist h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}
.fh-linklist .fh-ll-domain {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 6px;
}
.fh-linklist p {
  margin: 0;
  color: var(--body);
}

/* ==========================================================================
   Review money-page (data-driven layout: lead · facts panel · CTA · related)
   ========================================================================== */
.fh-report-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
}
.fh-report > h2:first-of-type {
  margin-top: 0;
}
/* Facts panel — a calm grid of label/value cells with hairline separators */
.fh-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin: 1.6rem 0 0.4rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fh-fact {
  background: var(--white);
  padding: 14px 18px;
}
.fh-fact dt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 3px;
}
.fh-fact dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}
.fh-fact dd a {
  color: var(--navy);
  text-decoration: none;
}
.fh-fact dd a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

/* Call-to-action panel */
.fh-cta-card {
  margin: 2rem 0 0.5rem;
  padding: clamp(22px, 3vw, 32px);
  background: var(--navy-050);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
}
.fh-cta-card h2 {
  margin: 0 0 0.5rem;
}
.fh-cta-card p {
  margin: 0 0 1.1rem;
  color: var(--body);
  max-width: 60ch;
}

/* Related report cards */
.fh-report-cards {
  list-style: none;
  margin: 0.6rem 0 1.8rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}
.fh-report-cards a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition:
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}
.fh-report-cards a:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(11, 69, 113, 0.08);
}
.fh-rc-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.fh-rc-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.fh-rc-go svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   Shop directory pages (controleer-rapporten, alle-webshoprapporten)
   ========================================================================== */
.fh-dir-search {
  max-width: 560px;
  margin: 0 0 16px;
}

/* A–Z index (full list of every reported shop) */
.fh-az-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 28px;
  position: sticky;
  top: 84px;
  background: var(--white);
  padding: 8px 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}
.fh-az-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.fh-az-nav a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.fh-az-section {
  margin: 0 0 26px;
  scroll-margin-top: 130px;
}
.fh-az-section > h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--navy-050);
}
.fh-idx-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px 18px;
}
.fh-idx-list a {
  display: flex;
  flex-direction: column;
  padding: 9px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
}
.fh-idx-list a:hover {
  background: var(--navy-050);
}
.fh-idx-name {
  font-weight: 600;
  color: var(--navy);
}
.fh-idx-domain {
  font-size: 0.82rem;
  color: var(--muted);
}
.fh-shop-cards {
  list-style: none;
  margin: 0.6rem 0 1.2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.fh-shop-cards > li {
  display: flex;
}
.fh-shop-cards a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  text-decoration: none;
  color: var(--body);
  transition:
    border-color 0.14s ease,
    box-shadow 0.14s ease;
}
.fh-shop-cards a:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(11, 69, 113, 0.08);
}
.fh-sc-name {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
}
.fh-sc-domain {
  font-size: 0.88rem;
  color: var(--muted);
}
.fh-sc-desc {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fh-sc-go {
  margin-top: auto;
  padding-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.fh-sc-go svg {
  width: 15px;
  height: 15px;
}

/* Related blogs — quiet link list */
.fh-blog-cards {
  list-style: none;
  margin: 0.6rem 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 2px;
}
.fh-blog-cards a {
  display: block;
  padding: 13px 12px;
  margin: 0 -12px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.fh-blog-cards a:hover {
  background: var(--navy-050);
}

/* Ranking (most reported) — quiet rows, hairline separators only */
.fh-rank {
  list-style: none;
  margin: 0.4rem 0 1.2rem;
  padding: 0;
  border-top: 1px solid var(--line);
}
.fh-rank li {
  border-bottom: 1px solid var(--line);
}
.fh-rank-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 13px 12px;
  margin: 0 -12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.12s ease;
}
.fh-rank-link:hover,
.fh-rank-link:focus-visible {
  background: var(--navy-050);
  outline: none;
}
.fh-rank-name {
  color: var(--ink);
  font-weight: 600;
}
.fh-rank-link:hover .fh-rank-name {
  color: var(--navy);
}
.fh-rank-name span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 8px;
}
.fh-rank-count {
  color: var(--navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fh-rank-count span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
}

/* Steps — plain numbered list */
.fh-steps {
  list-style: none;
  counter-reset: fhstep;
  margin: 0.4rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 20px;
}
.fh-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.fh-steps li::before {
  counter-increment: fhstep;
  content: counter(fhstep);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.fh-steps h3 {
  font-size: 1.15rem;
  margin: 4px 0 3px;
}
.fh-steps p {
  margin: 0;
  color: var(--body);
}

/* Services — heading + text, separated by space only */
.fh-defs {
  display: grid;
  gap: 26px;
  margin: 0.4rem 0 0;
}
.fh-defs h3 {
  font-size: 1.2rem;
  margin: 0 0 5px;
}
.fh-defs p {
  margin: 0;
  color: var(--body);
}

/* Testimonials — quiet quotes, no boxes */
.fh-quotes {
  display: grid;
  gap: 24px;
  margin: 0.4rem 0 1.2rem;
}
.fh-quote {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--line);
}
.fh-quote p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.1rem;
}
.fh-quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.94rem;
}

/* FAQ — minimal accordion, hairline separators */
.fh-faq {
  margin: 0.4rem 0 1.2rem;
  border-top: 1px solid var(--line);
}
.fh-faq details {
  border-bottom: 1px solid var(--line);
}
.fh-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 2px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.08rem;
}
.fh-faq summary::-webkit-details-marker {
  display: none;
}
.fh-faq summary::after {
  content: '';
  flex: none;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230b4571' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat center;
  transition: transform 0.2s ease;
}
.fh-faq details[open] summary::after {
  transform: rotate(180deg);
}
.fh-faq .fh-faq-body {
  padding: 0 2px 16px;
  color: var(--body);
}
.fh-faq .fh-faq-body p {
  margin: 0;
}

/* ---- Search box ---------------------------------------------------------- */
.jet-ajax-search {
  position: relative;
  display: block;
}
.jet-ajax-search__field {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 44px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230b4571' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")
    no-repeat 15px center;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.jet-ajax-search__field::placeholder {
  color: var(--muted);
}
.jet-ajax-search__field:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 69, 113, 0.18);
}

/* ---- Buttons ------------------------------------------------------------- */
.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.14s ease;
}
.fh-btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.fh-btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.fh-btn--primary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.fh-btn--ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.fh-btn--ghost:hover {
  background: var(--navy-050);
  color: var(--navy);
}
.fh-btn--sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}
/* Icon-only button (mobile header search) */
.fh-btn--icon {
  width: 44px;
  min-height: 44px;
  padding: 0;
}
.fh-search-icon {
  display: none;
}

/* ==========================================================================
   Footer — quiet, on white with a top rule (not a heavy navy slab)
   ========================================================================== */
.fh-footer {
  background: var(--white);
  color: var(--body);
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.fh-footer-top {
  padding-block: 48px 28px;
}
.fh-footer a {
  color: var(--navy);
  text-decoration: none;
}
.fh-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}
.fh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 34px;
}
.fh-footer-brand .fh-brand {
  margin-bottom: 12px;
}
.fh-footer-brand p {
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.94rem;
}
.fh-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.fh-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
}
.fh-footer-social svg {
  width: 19px;
  height: 19px;
}
.fh-footer h3 {
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}
.fh-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fh-footer-info dl {
  margin: 0;
  display: grid;
  gap: 8px;
}
.fh-footer-info dt {
  color: var(--muted);
  font-size: 0.82rem;
}
.fh-footer-info dd {
  margin: 0 0 4px;
  color: var(--ink);
}
.fh-footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}
.fh-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

/* Mobile menu */
.fh-mobile {
  display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  /* Mobile header: logo left, search + menu icons on the right */
  .fh-mainnav {
    display: none;
  }
  .fh-masthead-actions {
    gap: 2px;
  }
  .fh-desk-cta {
    display: none;
  }
  .fh-menu-toggle,
  .fh-search-icon {
    display: inline-flex;
  }
  .fh-mobile {
    display: block;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .fh-mobile.open {
    max-height: 680px;
  }
  .fh-mobile-inner {
    padding: 12px 24px 20px;
    display: grid;
    gap: 4px;
  }
  .fh-mobile .jet-ajax-search {
    margin-bottom: 10px;
  }
  .fh-mobile a.fh-mobile-link {
    padding: 12px 4px;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .fh-mobile .fh-btn {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  body.fh {
    font-size: 17px;
  }
  .fh-brand-name {
    font-size: 1.4rem;
  }
  .fh-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .fh-footer-brand {
    grid-column: 1 / -1;
  }
  .fh-actions .fh-btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .fh-footer-grid {
    grid-template-columns: 1fr;
  }
  .fh-topbar-right,
  .fh-brand-tag {
    display: none;
  }
}
