/* =========================================================================
   Riooldienst Nederland — design system
   Synthesis of 247Ontstopper.nl (urgency/trust) + VanHeijdenInstallatie.nl
   (structure/components). Tokens from brand-guidelines skill.
   ========================================================================= */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  --blue:        #0053D6;
  --blue-dark:   #0041A8;
  --orange:      #E8430B;
  --orange-dark: #C73509;
  --navy:        #132547;
  --navy-alt:    #1A2F5A;
  --sand:        #F2EFEE;
  --ink:         #1E1E1E;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --green:       #16A34A;
  --green-dark:  #128a3e;
  --red:         #DC2626;
  --white:       #FFFFFF;

  --gold:        #F5A623;

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --radius-btn: 8px;
  --radius-card: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(19,37,71,.08);
  --shadow-md: 0 8px 24px rgba(19,37,71,.10);
  --shadow-lg: 0 20px 48px rgba(19,37,71,.16);

  --maxw: 1180px;
  --gap: 24px;
  --sec-pad: 80px;
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--ink); }

/* ---- Layout helpers -------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--sec-pad) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }
.section--tight { padding: 56px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--blue);
  margin-bottom: 12px;
}
.section--navy .section__eyebrow, .section--blue .section__eyebrow { color: #7fb0ff; }
.section__title { font-size: clamp(26px, 4vw, 40px); }
.section--navy .section__title, .section--blue .section__title { color: #fff; }
.section__sub { color: var(--muted); font-size: 18px; margin-top: 14px; }
.section--navy .section__sub, .section--blue .section__sub { color: rgba(255,255,255,.82); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800; font-size: .9375rem;
  line-height: 1; text-align: center; text-decoration: none;
  padding: 15px 26px; border-radius: var(--radius-btn); border: 2px solid transparent;
  transition: background .15s ease, transform .08s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color:#fff; }
.btn--secondary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--secondary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color:#fff; }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--navy); }
.btn--whatsapp { background: var(--green); color: #fff; border-color: var(--green); }
.btn--whatsapp:hover { background: var(--green-dark); border-color: var(--green-dark); color:#fff; }
.btn--lg { padding: 18px 32px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---- Focus visibility ------------------------------------------------ */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px;
}

/* ---- Utility bar ----------------------------------------------------- */
.utilitybar { background: var(--navy); color: #fff; font-size: 13px; }
.utilitybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.utilitybar__list { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.utilitybar__item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); }
.utilitybar__item svg { width: 15px; height: 15px; color: var(--orange); }
.utilitybar__phone { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; }
.utilitybar__phone:hover { color: #fff; text-decoration: underline; }
.utilitybar__phone svg { width: 15px; height: 15px; color: var(--orange); }

/* ---- Nav ------------------------------------------------------------- */
.nav { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .2s ease; }
.nav.is-stuck { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.nav__logo img { height: 58px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--ink); }
.nav__link:hover, .nav__link.is-active { color: var(--blue); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); display: inline-flex; align-items: center; white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---- Hero ------------------------------------------------------------ */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,22,46,.93) 0%, rgba(11,22,46,.82) 42%, rgba(11,22,46,.45) 100%); }
.hero__inner { position: relative; padding: 84px 0 76px; max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--orange);
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px;
  padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: .04em;
}
.hero__badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6);} 70%{box-shadow:0 0 0 10px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }
.hero__title { font-size: clamp(32px, 5.4vw, 56px); line-height: 1.08; color: #fff; letter-spacing: -.01em; }
.hero__title .accent { color: var(--orange); }
.hero__sub { font-size: clamp(16px, 2.2vw, 20px); color: rgba(255,255,255,.88); margin-top: 20px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; align-items: center; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,.9); }
.hero__trust-item svg { width: 18px; height: 18px; color: #4ade80; }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero__rating strong { color: #fff; }

/* ---- Trust strip ----------------------------------------------------- */
.truststrip { background: #fff; border-bottom: 1px solid var(--border); }
.truststrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 32px; padding: 32px 0; }
.truststrip__item { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
.truststrip__item svg { width: 30px; height: 30px; color: var(--blue); flex: none; margin-top: 2px; }
.truststrip__text { display: flex; flex-direction: column; gap: 3px; }
.truststrip__title { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.truststrip__desc { font-size: 13.5px; color: var(--muted); line-height: 1.4; }

/* ---- Service cards --------------------------------------------------- */
.svc-group-label { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 20px; margin: 8px 0 22px; }
.svc-group-label .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--orange); }
.svc-group-label--reg .dot { background: var(--blue); }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 26px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  display: flex; flex-direction: column; height: 100%;
}
.svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card__icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(0,83,214,.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.svc-card__title { font-size: 20px; margin-bottom: 8px; }
.svc-card__title .spoed-tag { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .06em; display: inline-block; margin-left: 8px; vertical-align: middle; }
.svc-card__text { color: var(--muted); font-size: 15px; flex: 1 1 auto; }
.svc-card__link { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--blue);
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }
.svc-card__link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.svc-card:hover .svc-card__link svg { transform: translateX(3px); }

/* ---- Steps (Hoe werkt het) ------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step__num { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 24px; position: relative; z-index: 2; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 32px; left: 60%; width: 80%;
  height: 2px; background: var(--border); z-index: 1; }
.step__title { font-size: 18px; margin-bottom: 6px; }
.step__text { color: var(--muted); font-size: 14px; }

/* ---- Benefits (Waarom) ----------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit__icon { flex: none; width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center; }
.benefit__icon svg { width: 24px; height: 24px; color: #7fb0ff; }
.benefit__title { font-size: 17px; color: #fff; margin-bottom: 4px; }
.benefit__text { font-size: 14.5px; color: rgba(255,255,255,.78); }
.benefits-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.benefits-media img { border-radius: var(--radius-card); box-shadow: var(--shadow-lg); }

/* ---- Stats ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 46px); color: var(--blue); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ---- Reviews --------------------------------------------------------- */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; height: 100%; display: flex; flex-direction: column; }
.review-card__stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card__text { font-size: 15px; color: var(--ink); flex: 1 1 auto; }
.review-card__meta { margin-top: 16px; font-size: 13px; color: var(--muted); }
.review-card__meta strong { color: var(--ink); font-family: var(--font-head); display: block; font-size: 14px; }
.reviews-summary { display: inline-flex; align-items: center; gap: 12px; background: var(--sand);
  border-radius: var(--radius-pill); padding: 10px 22px; margin-top: 10px; font-size: 15px; }
.reviews-summary .stars { font-size: 18px; }

/* ---- Werkgebied ------------------------------------------------------ */
.prov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prov-card { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 18px 20px; transition: border-color .15s ease, box-shadow .15s ease; }
.prov-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); text-decoration: none; }
.prov-card__name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.prov-card__name svg { width: 18px; height: 18px; color: var(--blue); }
.prov-card__count { font-size: 13px; color: var(--muted); }
.gem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gem-pill { display: block; text-align: center; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 10px; font-size: 14px; color: var(--ink); transition: all .12s ease; }
.gem-pill:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.prov-block { margin-bottom: 44px; }
.prov-block__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.prov-block__head h2 { font-size: 22px; display: inline-flex; align-items: center; gap: 10px; }
.prov-block__head h2 svg { width: 20px; height: 20px; color: var(--blue); }
.prov-block__head .count { font-size: 13px; color: var(--muted); }

/* ---- FAQ accordion --------------------------------------------------- */
.faq-group { margin-bottom: 36px; }
.faq-group__title { font-size: 20px; margin-bottom: 8px; padding-bottom: 10px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q { width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px; font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--ink); }
.faq-item__q .chev { flex: none; width: 20px; height: 20px; color: var(--blue); transition: transform .2s ease; }
.faq-item[open] .faq-item__q .chev, .faq-item.is-open .faq-item__q .chev { transform: rotate(90deg); }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height .25s ease; }
.faq-item.is-open .faq-item__a { max-height: 500px; }
.faq-item__a-inner { padding: 0 4px 18px; color: var(--muted); font-size: 15px; }

/* ---- CTA banner ------------------------------------------------------ */
.cta-banner { background: var(--navy); color: #fff; text-align: center; }
.cta-banner__title { font-size: clamp(24px, 3.4vw, 34px); color: #fff; }
.cta-banner__sub { color: rgba(255,255,255,.82); font-size: 17px; margin-top: 12px; max-width: 600px; margin-inline: auto; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-banner__micro { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.8); }
.cta-banner__micro span { display: inline-flex; align-items: center; gap: 7px; }
.cta-banner__micro svg { width: 16px; height: 16px; color: #4ade80; }

/* ---- Footer ---------------------------------------------------------- */
.footer { background: var(--navy); color: #fff; border-top: 3px solid var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer__logo img { height: 46px; width: auto; margin-bottom: 18px; }
.footer__tagline { color: rgba(255,255,255,.72); font-size: 14.5px; margin-bottom: 20px; max-width: 300px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 12px; }
.footer__contact a { color: rgba(255,255,255,.82); }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 2px; }
.footer__col h4 { font-family: var(--font-head); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .10em; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer__col li { margin-bottom: 11px; }
.footer__col a { color: rgba(255,255,255,.78); font-size: 14px; }
.footer__col a:hover { color: #fff; text-decoration: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.55); }
.footer__bottom a { color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: #fff; }

/* ---- Floating action button (mobile call) ---------------------------- */
/* Mobile floating call button — orange, pulsing. Hidden on desktop where the
   nav already shows a prominent "Bel Direct" button. */
.call-float { display: none; }
.call-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--orange); z-index: 1; }
@keyframes callpulse {
  0%   { transform: scale(1);   opacity: .65; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .call-float__pulse, .hero__badge .pulse { animation: none !important; }
}

/* ---- Breadcrumbs ----------------------------------------------------- */
.breadcrumbs { background: var(--sand); border-bottom: 1px solid var(--border); }
.breadcrumbs__inner { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; padding: 12px 0; color: var(--muted); }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs .sep { color: var(--muted); }
.breadcrumbs .current { color: var(--ink); }

/* ---- Page header (subpages) ------------------------------------------ */
.pagehead { background: var(--navy); color: #fff; text-align: center; padding: 64px 0; position: relative; }
.pagehead--img { position: relative; }
.pagehead--img .pagehead__bg { position:absolute; inset:0; }
.pagehead--img .pagehead__bg img { width:100%;height:100%;object-fit:cover; }
.pagehead--img::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,22,46,.82), rgba(11,22,46,.88)); }
.pagehead__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.pagehead h1 { font-size: clamp(28px, 4.4vw, 46px); color: #fff; }
.pagehead p { color: rgba(255,255,255,.82); font-size: 18px; margin-top: 14px; }
.pagehead--logo .pagehead__logo { width: auto; height: 56px; margin: 0 auto 22px; display: block; }

/* ---- Content / prose ------------------------------------------------- */
.prose { font-size: 16.5px; color: var(--ink); }
.prose p { margin-bottom: 18px; }
.prose h2 { font-size: 28px; margin: 36px 0 14px; }
.prose h3 { font-size: 21px; margin: 28px 0 12px; }
.prose ul.check { margin: 18px 0; }
.prose ul.check li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.prose ul.check li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat; }

/* layout for service detail */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.detail-media img { border-radius: var(--radius-card); box-shadow: var(--shadow-md); margin-bottom: 28px; }
.sidebar-card { background: var(--navy); color: #fff; border-radius: var(--radius-card); padding: 28px; position: sticky; top: 96px; }
.sidebar-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.sidebar-card p { color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 18px; }
.sidebar-card .btn { width: 100%; margin-bottom: 10px; }
.sidebar-card__phone { text-align: center; margin-top: 6px; }
.sidebar-card__phone a { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 22px; }

/* ---- Contact form ---------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.contact-info-card .call-box { background: var(--blue); color: #fff; border-radius: var(--radius-btn); padding: 18px 20px; display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.contact-info-card .call-box svg { width: 28px; height: 28px; }
.contact-info-card .call-box .lbl { font-size: 13px; opacity: .85; }
.contact-info-card .call-box a { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.contact-info-card ul li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14.5px; color: var(--ink); }
.contact-info-card ul li svg { width: 19px; height: 19px; color: var(--blue); flex: none; margin-top: 2px; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 18px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-family: var(--font-head); font-weight: 800; font-size: 13px; margin-bottom: 7px; }
.form-label .req { color: var(--red); }
.form-control { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 12px 14px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .12s, box-shadow .12s; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,83,214,.12); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-spoed { text-align: center; margin-top: 16px; font-size: 14px; }
.form-spoed a { color: var(--orange); font-weight: 800; font-family: var(--font-head); }
.form-success { background: #ecfdf3; border: 1px solid #abefc6; color: #067647; border-radius: var(--radius-btn); padding: 16px 18px; margin-bottom: 20px; font-size: 15px; display: flex; gap: 10px; align-items: flex-start; }
.form-success svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* ---- Article / blog list --------------------------------------------- */
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.cat-pill { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 18px; font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--font-head); }
.cat-pill:hover, .cat-pill.is-active { background: var(--blue); color: #fff; border-color: var(--blue); text-decoration: none; }
.article-card { display: flex; gap: 0; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; height: 100%; transition: box-shadow .15s ease, transform .15s ease; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none; }
.article-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); font-family: var(--font-head); }
.article-card__title { font-size: 19px; margin: 10px 0; color: var(--ink); }
.article-card__excerpt { color: var(--muted); font-size: 14.5px; flex: 1; }
.article-card__meta { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; gap: 14px; }
.article-card__more { color: var(--blue); font-weight: 800; font-family: var(--font-head); font-size: 14px; margin-top: 14px; display:inline-flex; gap:6px; align-items:center; }
.article-card__more svg { width: 15px; height: 15px; flex: none; }
.svc-card__link svg, .center-btn .btn svg, .prov-card svg { flex: none; }

/* ---- Local intro band (gemeente) ------------------------------------- */
.local-intro { background: var(--sand); border-radius: var(--radius-card); padding: 28px 32px; border-left: 4px solid var(--blue); }
.local-intro p { margin: 0; font-size: 17px; }

/* ---- Misc ------------------------------------------------------------ */
.text-center { text-center: center; text-align: center; }
.mt-32 { margin-top: 32px; }
.center-btn { text-align: center; margin-top: 40px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--blue); padding: 10px 16px; z-index: 2000; }
.skip-link:focus { left: 12px; top: 12px; }

/* =======================  Responsive  ================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .benefits-wrap { grid-template-columns: 1fr; gap: 32px; }
  .prov-grid { grid-template-columns: repeat(2, 1fr); }
  .gem-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  :root { --sec-pad: 56px; }
  .nav__links, .nav__phone-label { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav.is-open .nav__link { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .grid--3, .grid--4, .stats, .truststrip__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .utilitybar__list .util-hide-sm { display: none; }
  /* Mobile floating call button + stacked WhatsApp (replaces sticky bar) */
  .call-float { display: flex; align-items: center; justify-content: center;
    position: fixed; right: 18px; bottom: 22px; z-index: 1200;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--orange); color: #fff;
    box-shadow: 0 8px 22px rgba(232,67,11,.5); }
  .call-float svg { width: 27px; height: 27px; position: relative; z-index: 2; }
  .call-float .call-float__pulse { animation: callpulse 1.8s cubic-bezier(.2,.6,.4,1) infinite; }
}
@media (max-width: 560px) {
  :root { --sec-pad: 48px; }
  .grid--2, .grid--3, .grid--4, .form-row--2 { grid-template-columns: 1fr; }
  .stats, .truststrip__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .prov-grid { grid-template-columns: 1fr; }
  .gem-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { padding: 56px 0 64px; }
  .hero__cta .btn { width: 100%; }
  .utilitybar__list { gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; }
}
