/* =========================================================
   MKB Versnellers - Design System (overkoepelend)
   Basis gedeeld met de sector-sites (o.a. Bouwversnellers).
   Kleuren: donkerblauw · wit · staal-grijs · accent per sector.
   ========================================================= */

:root {
  /* Brand basis */
  --navy-900: #0a1a2f;
  --navy-800: #0e2238;
  --navy-700: #12304b;
  --anthracite: #161b22;

  /* Parent-accent (MKB Versnellers rustblauw) - sectorpagina's overschrijven dit via een thema-class */
  --accent: #2179b0;
  --accent-600: #1a6391;
  --accent-soft: rgba(33, 121, 176, .12);

  /* Secundaire merkkleur (licht blauw) */
  --secondary: #5fa8c9;
  --secondary-600: #2d6a83;
  --secondary-soft: rgba(95, 168, 201, .14);

  /* Neutraal / staal-beton */
  --white: #ffffff;
  --paper: #f5f6f8;
  --steel-50: #eef1f5;
  --steel-100: #e3e8ef;
  --steel-200: #cfd6e0;
  --steel-400: #94a3b4;
  --steel-500: #6b7787;
  --ink: #16202c;
  --ink-soft: #45525f;

  /* Semantisch */
  --bg: var(--white);
  --bg-alt: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--steel-100);

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Vorm */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --header-h: 70px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --shadow-sm: 0 2px 10px rgba(10, 26, 47, .06);
  --shadow-md: 0 14px 40px rgba(10, 26, 47, .10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 47, .18);
  --shadow-accent: 0 12px 30px rgba(33, 121, 176, .28);
}

/* Accent per sector (zet de class op <body> of op een kaart) */
.theme-bouw        { --accent: #ff6a1a; --accent-600: #e85d10; --accent-soft: rgba(255, 106, 26, .12); --shadow-accent: 0 12px 30px rgba(255, 106, 26, .28); }
.theme-groothandel { --accent: #16a34a; --accent-600: #13883e; --accent-soft: rgba(22, 163, 74, .12);  --shadow-accent: 0 12px 30px rgba(22, 163, 74, .28); }
.theme-retail      { --accent: #7c3aed; --accent-600: #6d28d9; --accent-soft: rgba(124, 58, 237, .12); --shadow-accent: 0 12px 30px rgba(124, 58, 237, .28); }
.theme-horeca      { --accent: #f43f5e; --accent-600: #e11d48; --accent-soft: rgba(244, 63, 94, .12);  --shadow-accent: 0 12px 30px rgba(244, 63, 94, .28); }
.theme-transport   { --accent: #e0a100; --accent-600: #946b00; --accent-soft: rgba(224, 161, 0, .14);  --shadow-accent: 0 12px 30px rgba(224, 161, 0, .28); }

/* ---------- Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font-body); color: var(--text);
  background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .5em; color: var(--navy-900); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(1140px, 100% - 44px); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-lead { font-size: 1.08rem; color: var(--text-soft); }
.text-accent { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Knoppen ---------- */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-900); border: 1.6px solid var(--steel-200); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-600); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-on-dark { background: transparent; color: #fff; border: 1.6px solid rgba(255,255,255,.3); }
.btn-on-dark:hover { border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.94); border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.16rem; color: var(--navy-900); }
.brand-mark { color: var(--navy-800); display: inline-flex; }
.brand-mark svg { width: 32px; height: 32px; flex: 0 0 auto; }
.brand-mark svg rect:nth-child(3) { fill: var(--accent); }
.brand-text strong { color: var(--navy-900); }
.brand-text span { color: var(--accent); }

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { font-weight: 500; font-size: .96rem; color: var(--text-soft); position: relative; padding: 4px 0; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .22s var(--ease); }
.main-nav a:hover { color: var(--navy-900); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--navy-900); font-weight: 600; }
.main-nav a.active::after { width: 100%; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px; padding: 16px 22px 24px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 13px 6px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--steel-50); }
.mobile-nav a.btn { margin-top: 12px; border-bottom: 0; color: #fff; }

@media (max-width: 860px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero (zelfde indeling als Bouwversnellers) ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 64px) 0 56px; background: radial-gradient(125% 120% at 78% -10%, #16344f 0%, #0e2339 46%, #0a1a2f 100%); color: #eaf0f7; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid {
  position: absolute; inset: -20% -10% 0; opacity: .10;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 30%, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
.hero-glow-1 { width: 640px; height: 640px; opacity: .30; background: radial-gradient(circle, rgba(95,168,201,.34), transparent 70%); top: -200px; right: -120px; }
.hero-glow-2 { width: 620px; height: 620px; opacity: .42; background: radial-gradient(circle, rgba(33,121,176,.5), transparent 70%); bottom: -240px; left: -160px; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero-copy h1 { color: #fff; }
.hero .eyebrow { color: #9fd0e6; }
.hero h1 .text-accent { color: var(--secondary); }
.hero-sub { font-size: 1.16rem; color: #bcc8d6; max-width: 42ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; color: #cfd9e4; font-size: .96rem; font-weight: 500; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .ico { width: 20px; height: 20px; color: var(--secondary); flex: 0 0 auto; }

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; }
.mock-dash { background: linear-gradient(160deg, #11283f, #0c1d30); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 16px; position: relative; z-index: 2; }
.mock-dash-head { display: flex; align-items: center; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #44566b; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.mock-dash-title { margin-left: 8px; font-size: .82rem; color: #8fa3b8; font-family: var(--font-head); }
.mock-dash-body { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 14px; }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 13px 14px; }
.kpi-label { display: block; font-size: .72rem; color: #8298ad; text-transform: uppercase; letter-spacing: .06em; }
.kpi-value { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; }
.kpi-trend { font-size: .76rem; font-weight: 600; }
.kpi-trend.up { color: var(--secondary); }
.mock-chart { grid-column: 1 / -1; display: flex; align-items: flex-end; gap: 9px; height: 92px; padding: 10px 12px; background: rgba(255,255,255,.03); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.06); }
.mock-chart .bar { flex: 1; height: var(--h); background: linear-gradient(180deg, #3f7fb8, #2b5d8c); border-radius: 5px 5px 2px 2px; transform-origin: bottom; animation: growBar .9s var(--ease) both; }
.mock-chart .bar-accent { background: linear-gradient(180deg, var(--secondary), var(--accent)); }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.mock-row { grid-column: 1 / -1; display: flex; gap: 8px; flex-wrap: wrap; }
.mock-pill { font-size: .74rem; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.06); color: #b9c7d6; border: 1px solid rgba(255,255,255,.08); }
.mock-pill.ok { background: rgba(95,168,201,.16); color: #aee0f2; border-color: rgba(95,168,201,.34); }

.mock-chat { position: absolute; bottom: -26px; right: -14px; width: 250px; z-index: 3; background: #fff; color: var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 13px; animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.chat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.chat-avatar { width: 28px; height: 28px; border-radius: 8px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; display: grid; place-items: center; font-family: var(--font-head); }
.chat-name { font-size: .82rem; font-weight: 600; }
.chat-bubble { font-size: .82rem; line-height: 1.4; padding: 8px 11px; border-radius: 12px; margin-bottom: 6px; }
.chat-bubble.in { background: var(--steel-50); border-bottom-left-radius: 3px; }
.chat-bubble.out { background: var(--accent-soft); color: var(--accent-600); border-bottom-right-radius: 3px; font-weight: 500; }
.chat-meta { font-size: .68rem; color: var(--steel-500); text-align: right; }

/* Trustbar */
.trustbar { position: relative; margin-top: 64px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.10); }
.trustbar-label { font-size: .82rem; color: #8298ad; font-weight: 500; }
.trustbar ul { display: flex; gap: 12px 26px; flex-wrap: wrap; }
.trustbar li { font-family: var(--font-head); font-weight: 600; color: #c4d1de; font-size: .98rem; }

/* ---------- Waarde-rij ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-ico { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin-bottom: 16px; }
.value-ico svg { width: 26px; height: 26px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Sector-grid (kern van de hub) ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.sector-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 26px 26px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.sector-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent); }
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.sector-ico { width: 54px; height: 54px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; }
.sector-ico svg { width: 28px; height: 28px; }
.sector-shot { display: block; width: 100%; height: 128px; object-fit: cover; object-position: top center; border-radius: var(--r-sm); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.sector-card:hover .sector-shot { transform: scale(1.015); }
.sector-card h3 { margin: 0; font-size: 1.28rem; }
.sector-card p { margin: 0; color: var(--text-soft); font-size: .96rem; flex-grow: 1; }
.sector-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.sector-link { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--accent-600); display: inline-flex; align-items: center; gap: 6px; }
.sector-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.sector-card:hover .sector-link svg { transform: translateX(3px); }

/* Status-badges */
.status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.status-live { background: var(--secondary-soft); color: var(--secondary-600); }
.status-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 0 rgba(95,168,201,.5); animation: pulse 2s infinite; }
.status-soon { background: var(--accent-soft); color: var(--accent-600); }
.status-soon .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(95,168,201,.5); } 70% { box-shadow: 0 0 0 7px rgba(95,168,201,0); } 100% { box-shadow: 0 0 0 0 rgba(95,168,201,0); } }

/* ---------- Stappen / werkwijze ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 8px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-accent); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: .94rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- CTA-band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--r-lg); padding: clamp(34px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4d1de; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Coming soon (sectorpagina) ---------- */
.cs-hero { position: relative; background: radial-gradient(125% 120% at 78% -10%, #16344f 0%, #0e2339 46%, #0a1a2f 100%); color: #fff; overflow: hidden; padding: clamp(80px, 12vw, 150px) 0 clamp(60px, 9vw, 110px); text-align: center; }
.cs-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 75% at 50% -5%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%), radial-gradient(70% 80% at 50% 120%, rgba(40,104,164,.26), transparent 75%); }
.cs-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cs-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 22px; }
.cs-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse-accent 2s infinite; }
@keyframes pulse-accent { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); } 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.cs-hero h1 { color: #fff; }
.cs-hero h1 .text-accent { color: var(--accent); }
.cs-sub { font-size: clamp(1.05rem, 2vw, 1.24rem); color: #c4d1de; max-width: 600px; margin: 18px auto 32px; }
.cs-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Voorbeeld-features op sectorpagina */
.cs-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cs-feature { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.cs-feature .value-ico { margin-bottom: 14px; }
.cs-feature h3 { font-size: 1.1rem; }
.cs-feature p { color: var(--text-soft); font-size: .94rem; margin: 0; }
@media (max-width: 760px) { .cs-features { grid-template-columns: 1fr; } }

/* Notify / aanmeld-strook */
.notify { max-width: 540px; margin: 0 auto; text-align: center; }
.notify-form { display: flex; gap: 10px; margin-top: 18px; }
.notify-form input { flex: 1; padding: 14px 16px; border: 1.6px solid var(--steel-200); border-radius: 999px; font: inherit; background: #fff; }
.notify-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.notify-hint { font-size: .82rem; color: var(--text-soft); margin-top: 10px; }
.form-success { background: var(--accent-soft); color: var(--accent-600); border-radius: var(--r-sm); padding: 12px 16px; font-weight: 600; margin-top: 14px; }
@media (max-width: 520px) { .notify-form { flex-direction: column; } .notify-form input, .notify-form .btn { width: 100%; } }

/* ---------- Contactformulier ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.6px solid var(--steel-200); border-radius: var(--r-sm); font: inherit; background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field-error { color: #d4513b; font-size: .82rem; min-height: 1.1em; display: block; margin-top: 4px; }
.field input.invalid, .field textarea.invalid { border-color: #d4513b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--anthracite); color: #aeb9c5; padding: 58px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand-text strong, .footer-brand .brand-mark { color: #fff; }
.footer-brand p { font-size: .94rem; max-width: 38ch; color: #93a0ad; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 6px; }
.footer-nav a { font-size: .94rem; color: #aeb9c5; transition: color .18s var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-contact p { font-size: .94rem; margin: 0 0 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: .86rem; color: #7f8c9a; }
.footer-bottom p { margin: 0; }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Terug naar boven ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-accent);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent-600); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Reveal-animatie ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Wat je terugkrijgt (rustige opbrengst-kaarten) ---------- */
.gain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gain-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 38px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.gain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gain-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin: 0 auto 20px; }
.gain-ico svg { width: 30px; height: 30px; }
.gain-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.gain-card p { color: var(--text-soft); margin: 0; font-size: .96rem; }
.gain-card.is-secondary .gain-ico { background: var(--secondary-soft); color: var(--secondary-600); }
@media (max-width: 760px) { .gain-grid { grid-template-columns: 1fr; } }

/* ---------- Van druk naar rust (voor/na) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.compare-col { border-radius: var(--r-lg); padding: 32px 30px; border: 1px solid var(--border); }
.compare-before { background: #fff; }
.compare-after { background: linear-gradient(160deg, color-mix(in srgb, var(--secondary) 9%, #fff), #fff); border-color: color-mix(in srgb, var(--secondary) 35%, var(--border)); }
.compare-tag { font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; display: inline-block; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.compare-before .compare-tag { background: var(--steel-50); color: var(--steel-500); }
.compare-after .compare-tag { background: var(--secondary-soft); color: var(--secondary-600); }
.compare-col h3 { font-size: 1.22rem; margin-bottom: 18px; }
.compare-list { display: grid; gap: 13px; }
.compare-list li { position: relative; padding-left: 30px; color: var(--text-soft); line-height: 1.5; }
.compare-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%; background-repeat: no-repeat; background-position: center; background-size: 12px; }
.compare-before .compare-list li::before { background-color: var(--steel-50); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%236b7787' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); }
.compare-after .compare-list li::before { background-color: var(--secondary-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7' fill='none' stroke='%232e6f8e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.compare-after .compare-list li { color: var(--text); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* ---------- FAQ (rustige, transparante antwoorden) ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq details[open] { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: 0 0 auto; width: 11px; height: 11px; border-right: 2.4px solid var(--accent); border-bottom: 2.4px solid var(--accent); transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -4px; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-body { padding: 0 20px 18px; color: var(--text-soft); line-height: 1.6; }
.faq-body p { margin: 0; }

/* ---------- Rustige belofte-band ---------- */
.calm-band { text-align: center; max-width: 720px; margin: 0 auto; }
.calm-band .eyebrow { color: var(--secondary); }
.calm-band p { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-family: var(--font-head); font-weight: 600; color: var(--navy-900); line-height: 1.4; }

/* ---------- Van druk naar rust (zelfde indeling als Bouw 'problemen') ---------- */
.prob-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; }
.prob-col { display: flex; flex-direction: column; gap: 12px; }
.prob-col li { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: var(--r-md); font-weight: 500; line-height: 1.4; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.tag { flex: 0 0 auto; font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; margin-top: 1px; }
.tag-x { background: var(--steel-50); color: var(--steel-500); }
.tag-v { background: #fff; color: var(--accent-600); box-shadow: var(--shadow-sm); }
/* Linkerkant ('Nu') gedempt, rechterkant ('Straks') als gewenste uitkomst eruit laten springen */
.prob-pain li { color: var(--text-soft); }
.prob-gain li { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); color: var(--navy-900); box-shadow: var(--shadow-md); }
.prob-gain li .tag-v { color: var(--accent-600); }
.prob-arrow { color: var(--accent); display: grid; place-items: center; }

/* ---------- Responsive (gelijk aan Bouwversnellers) ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; }
}
@media (max-width: 860px) {
  .prob-grid { grid-template-columns: 1fr; gap: 16px; }
  .prob-arrow { margin: 4px 0; }
  .prob-arrow svg { transform: rotate(90deg); }
}
@media (max-width: 560px) {
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-cta .btn { flex: 1; }
  .mock-chat { right: 0; width: 220px; }
}

/* ---------- Diversen ---------- */
.lead-narrow { max-width: 620px; margin-inline: auto; }
.center { text-align: center; }
.mt-band { margin-top: clamp(40px, 6vw, 72px); }

/* ============================================================
   UITBREIDINGEN — tijdwinst per proces, bewijs, team, locatie
   Zelfde tokens en kaart-patroon als de rest. Geen nieuwe waarden.
   ============================================================ */

/* Tijdwinst per proces — tastbare uren in rij-vorm */
.timewin { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.timewin-row { display: grid; grid-template-columns: 1.15fr 1.6fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 15px 20px; }
.timewin-name { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.tw-ico { width: 36px; height: 36px; flex: 0 0 auto; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; }
.tw-ico svg { width: 20px; height: 20px; }
.timewin-bar { height: 8px; border-radius: 999px; background: var(--steel-50); overflow: hidden; }
.timewin-fill { display: block; height: 100%; width: var(--w, 50%); border-radius: 999px; background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 55%, var(--secondary)), var(--accent)); }
.timewin-save { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--accent-600); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; white-space: nowrap; text-align: center; }
.timewin-total { text-align: center; margin-top: 24px; font-family: var(--font-head); font-size: 1.05rem; color: var(--navy-900); }
.timewin-total strong { color: var(--accent-600); }
@media (max-width: 620px) { .timewin-row { grid-template-columns: 1fr auto; } .timewin-bar { display: none; } }

/* Bewijs — cijfers + quotes */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-stat { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 16px; box-shadow: var(--shadow-sm); }
.proof-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 4vw, 2.9rem); color: var(--accent-600); line-height: 1; font-variant-numeric: tabular-nums; }
.proof-num .unit { font-size: .5em; color: var(--accent); margin-left: 2px; }
.proof-label { display: block; margin-top: 10px; color: var(--text-soft); font-size: .92rem; line-height: 1.4; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr 1fr; } }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.08rem; line-height: 1.55; color: var(--navy-900); }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.qa-name { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); font-size: .96rem; }
.qa-role { display: block; font-size: .85rem; color: var(--text-soft); }
@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.team-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar { width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(160deg, var(--accent-soft), color-mix(in srgb, var(--secondary) 16%, #fff)); color: var(--accent-600); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; border: 1px solid var(--border); }
.team-card h3 { font-size: 1.1rem; margin: 0 0 2px; }
.team-role { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--accent-600); }
.team-card p { color: var(--text-soft); font-size: .92rem; margin: 10px 0 0; }

/* Locatie — info + gestileerde 'kaart' (geen foto) */
.location { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }
.location-info { display: grid; gap: 14px; align-content: start; }
.loc-row { display: flex; align-items: flex-start; gap: 13px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 15px 18px; }
.loc-ico { width: 40px; height: 40px; flex: 0 0 auto; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; }
.loc-ico svg { width: 20px; height: 20px; }
.loc-label { font-size: .8rem; color: var(--text-soft); }
.loc-val { font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.loc-val a { color: var(--accent-600); }
.location-map { position: relative; min-height: 240px; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; background:
  repeating-linear-gradient(0deg, transparent 0 27px, var(--steel-100) 27px 28px),
  repeating-linear-gradient(90deg, transparent 0 27px, var(--steel-100) 27px 28px),
  var(--paper); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: var(--accent); }
.map-pin svg { width: 40px; height: 40px; filter: drop-shadow(0 6px 10px rgba(10,26,47,.25)); }
.map-chip { position: absolute; left: 16px; bottom: 16px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; box-shadow: var(--shadow-sm); }
@media (max-width: 760px) { .location { grid-template-columns: 1fr; } }

/* Branche quick-pick onder de hero */
.branchepick { text-align: center; }
.branchepick-label { display: block; font-size: .9rem; color: var(--text-soft); margin-bottom: 14px; }
.branchepick-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.bp-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent-600); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border)); border-radius: 999px; padding: 10px 18px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.bp-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.bp-chip.is-neutral { background: var(--steel-50); color: var(--steel-500); border-color: var(--border); }
.bp-live { font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; background: var(--secondary-soft); color: var(--secondary-600); padding: 2px 7px; border-radius: 999px; }

/* ---------- Hero tijd-calculator ---------- */
.calc { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(20px, 2.4vw, 28px); width: 100%; max-width: 440px; }
.calc-head { margin-bottom: 16px; }
.calc-eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-600); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; }
.calc-title { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin: 12px 0 6px; line-height: 1.2; }
.calc-intro { font-size: .9rem; color: var(--text-soft); margin: 0; }
.calc-branche { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 18px; }
.calc-chip { font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: var(--text-soft); background: var(--steel-50); border: 1px solid var(--border); border-radius: 999px; padding: 6px 13px; cursor: pointer; transition: color .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease); }
.calc-chip:hover { color: var(--navy-900); }
.calc-chip.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.calc-sliders { display: flex; flex-direction: column; gap: 15px; }
.calc-slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; font-size: .88rem; gap: 10px; }
.calc-slider-name { color: var(--text); font-weight: 500; }
.calc-uur { color: var(--text-soft); font-size: .82rem; white-space: nowrap; }
.calc-uur b { color: var(--accent-600); font-family: var(--font-head); }
.calc-slider input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--steel-100); outline-offset: 4px; cursor: pointer; margin: 0; }
.calc-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .15s var(--ease); }
.calc-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-slider input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; }
.calc-result { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin: 18px 0; padding: 16px 18px; background: var(--accent-soft); border-radius: var(--r-md); }
.calc-result-main { display: flex; align-items: baseline; gap: 9px; }
.calc-result-num b { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3rem); color: var(--accent-600); line-height: 1; font-variant-numeric: tabular-nums; }
.calc-result-unit { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy-900); line-height: 1.15; }
.calc-result-sub { margin: 0; font-size: .85rem; color: var(--text-soft); flex: 1 1 100%; }
.calc .btn-block { width: 100%; }
@media (max-width: 980px) { .calc { max-width: none; } }

/* Subtiele rust: zachte puls op de achtergrondgloed (uit bij reduce-motion) */
@media (prefers-reduced-motion: no-preference) {
  .hero-glow-1 { animation: heroGlowPulse 9s var(--ease) infinite alternate; }
  .hero-glow-2 { animation: heroGlowPulse 12s var(--ease) infinite alternate; }
  @keyframes heroGlowPulse { from { opacity: .7; } to { opacity: 1; } }
}

/* ---------- Sectoren-dropdown in de hoofdnav (zelfde component als de sectorsites) ---------- */
.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-trigger svg { width: 11px; height: 11px; max-width: none; flex: 0 0 auto; transition: transform .22s var(--ease); }
.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown:focus-within .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 300px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 8px; display: grid; gap: 2px; z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(7px); }
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: var(--r-sm); }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--paper); }
.dropdown-menu a strong { display: block; font-family: var(--font-head); color: var(--accent-600); font-size: .95rem; font-weight: 600; }
.dropdown-menu a .dd-live { display: inline-block; margin-left: 8px; font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; vertical-align: middle; background: var(--secondary-soft); color: var(--secondary-600); padding: 2px 6px; border-radius: 999px; }
.dropdown-menu a span.dd-desc { display: block; font-size: .82rem; color: var(--text-soft); margin-top: 2px; }
.mobile-nav a.m-sector { padding-left: 24px; font-size: .95rem; color: var(--text-soft); }

/* Bullet-lijst in feature-kaarten (o.a. bouw-branchepagina) */
.cs-bullets { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 8px; }
.cs-bullets li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--text-soft); line-height: 1.4; }
.cs-bullets li::before { content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent-soft); }
.cs-bullets li::after { content: ""; position: absolute; left: 5px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--accent-600); border-bottom: 2px solid var(--accent-600); transform: rotate(-45deg); }

/* ---------- Belofte-sectie (geen contracten / vanaf €10 / begin klein) ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 6px; }
.promise-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-card-accent { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 32%, var(--border)); }
.promise-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); margin-bottom: 18px; }
.promise-card-accent .promise-ico { background: #fff; }
.promise-ico svg { width: 24px; height: 24px; }
.promise-card h3 { font-size: 1.14rem; margin: 0 0 9px; }
.promise-card p { margin: 0; color: var(--text-soft); font-size: .96rem; }
.promise-price { font-family: var(--font-head); font-weight: 800; color: var(--accent-600); }
.promise-close { text-align: center; max-width: 640px; margin: 36px auto 0; font-size: 1.18rem; line-height: 1.55; color: var(--navy-900); }
.promise-close strong { color: var(--accent-600); }
/* Subtiele 'tijd voor'-strip */
.time-for { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 20px; margin: 18px auto 0; color: var(--text-soft); font-size: .94rem; }
.time-for .tf-label { font-weight: 600; color: var(--navy-900); }
.time-for > span { display: inline-flex; align-items: center; gap: 7px; }
.time-for svg { width: 16px; height: 16px; color: var(--accent-600); flex: 0 0 auto; }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; gap: 16px; } }
