/* =========================================================
   SiteVivo premium visual system
   Built as a final cascade layer so existing page content,
   structure and business data remain intact.
   ========================================================= */

:root {
  --white: #fff;
  --bg-soft: #f5f7f2;
  --bg-tint: #eaf2ec;
  --bg-tint-2: #dcebe1;
  --green: #176b49;
  --green-dark: #0f5438;
  --green-deep: #0c2f22;
  --green-mid: #2e8b63;
  --green-light: #9ad0b3;
  --ink: #10251b;
  --text: #3d4e46;
  --muted: #66756e;
  --border: #dfe7e1;
  --border-2: #cddbd2;
  --surface: #ffffff;
  --surface-muted: #f0f3ee;
  --shadow-sm: 0 1px 2px rgba(12, 47, 34, .04), 0 8px 24px rgba(12, 47, 34, .05);
  --shadow-md: 0 2px 4px rgba(12, 47, 34, .04), 0 22px 64px rgba(12, 47, 34, .10);
  --shadow-green: 0 16px 34px rgba(23, 107, 73, .22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

html { scroll-padding-top: 104px; }

body {
  background: var(--bg-soft);
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

::selection { background: #cfe6d7; color: var(--green-deep); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 20000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--green-deep);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 750;
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform 140ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 {
  color: var(--ink);
  letter-spacing: -.035em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.container {
  width: min(100% - 48px, 1240px);
  max-width: none;
  padding: 0;
}

.section { padding: 112px 0; }
.section-no-top { padding-top: 0; }

.section-soft {
  background: var(--surface-muted);
  border-block: 1px solid rgba(16, 37, 27, .05);
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { max-width: 760px; }

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -.055em;
}

.section-head p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.section-head.center p { margin-inline: auto; }

.eyebrow {
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: .2em;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
}

/* Header */
header {
  top: 0;
  background: transparent;
  border: 0;
  padding-top: 14px;
  pointer-events: none;
}

header .nav {
  width: min(calc(100% - 32px), 1240px);
  height: 72px;
  padding: 0 16px 0 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(12, 47, 34, .09);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(12, 47, 34, .06);
  backdrop-filter: blur(18px) saturate(1.3);
  pointer-events: auto;
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

header.scrolled { box-shadow: none; }
header.scrolled .nav {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(12, 47, 34, .13);
  box-shadow: 0 12px 38px rgba(12, 47, 34, .10);
}

.nav-logo { gap: 10px; }
.brand-mark { font-size: 21px; padding-bottom: 4px; }
.brand-mark::after { height: 2px; }
.brand-word { font-size: 18px; letter-spacing: -.035em; }

.nav-links { gap: 6px; }

.nav-links a {
  padding: 10px 11px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 550;
  transition: color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}

.nav-links a.active {
  color: var(--green-dark);
  background: var(--bg-tint);
  font-weight: 700;
}

.nav-cta {
  margin-left: 4px;
  padding: 11px 18px !important;
  border-radius: 11px;
  background: var(--green) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 8px 18px rgba(23, 107, 73, .18);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: var(--bg-soft);
}

.nav-toggle span { margin: 5px auto; transition: transform 180ms var(--ease-out), opacity 150ms 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); }

/* Buttons and links */
.btn-primary, .btn-ghost, .btn-white, .btn-submit, .nav-cta,
.cookie-accept, .cookie-decline {
  min-height: 48px;
  border-radius: 12px;
  justify-content: center;
  transition: transform 140ms var(--ease-out), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn-primary {
  padding: 14px 24px;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 10px 22px rgba(23,107,73,.17);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-ghost {
  padding: 13px 23px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover { background: #fff; border-color: #9eb8a7; }

.btn-white {
  color: var(--green-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .13);
}

.btn-primary:active, .btn-ghost:active, .btn-white:active, .btn-submit:active,
.nav-cta:active, .cookie-accept:active, .cookie-decline:active {
  transform: scale(.97);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 750;
}

.text-link span { transition: transform 180ms var(--ease-out); }

/* Motion */
.reveal {
  transform: translateY(14px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
}

/* Homepage hero */
.hero {
  min-height: 760px;
  padding: 180px 0 116px;
  background:
    radial-gradient(circle at 82% 24%, rgba(60, 145, 101, .14), transparent 32%),
    linear-gradient(180deg, #f8faf6 0%, #f3f6f1 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(rgba(23,107,73,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(23,107,73,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 2%, #000 22%, #000 72%, transparent 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  gap: clamp(64px, 8vw, 108px);
}

.hero-eyebrow {
  margin-bottom: 30px;
  padding: 8px 15px 8px 11px;
  background: rgba(255,255,255,.74);
  border-color: rgba(23,107,73,.18);
  box-shadow: 0 6px 20px rgba(12,47,34,.05);
  font-size: 12px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(23,107,73,.11);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.25vw, 5rem);
  line-height: .99;
  letter-spacing: -.07em;
}

.hero h1 em { color: var(--green); }

.hero-sub {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.74;
}

.hero-btns { gap: 12px; }
.hero-points { gap: 12px 24px; margin-top: 30px; }
.hero-point { color: #506058; font-size: 13.5px; }
.hero-point svg { width: 16px; height: 16px; }

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -26px 28px 24px -28px;
  border-radius: 36px;
  background: var(--green-deep);
  transform: rotate(-3deg);
  box-shadow: 0 32px 80px rgba(12,47,34,.18);
}

.screen {
  position: relative;
  border-color: rgba(12,47,34,.12);
  border-radius: 20px;
  box-shadow: 0 30px 72px rgba(12,47,34,.2), 0 2px 8px rgba(12,47,34,.08);
}

.screen-bar { padding: 14px 17px; }
.screen-url { border-radius: 8px; }
.prev-nav { padding: 17px 20px; }
.prev-hero { padding: 34px 22px 26px; }
.prev-cards { gap: 11px; padding: 18px 20px 24px; }
.prev-card { border-radius: 10px; padding: 14px 12px; }
.prev-card s.short { width: 50%; }

.hero-badge {
  bottom: -24px;
  left: -30px;
  border-radius: 16px;
  padding: 15px 18px;
  box-shadow: var(--shadow-md);
}

/* Trust strip */
.trust {
  position: relative;
  z-index: 2;
  background: transparent;
  border: 0;
  margin-top: -42px;
}

.trust-inner {
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.trust-item { padding: 24px 30px; }
.trust-item:first-child { padding-left: 30px; }
.trust-ic { width: 44px; height: 44px; border-radius: 12px; }
.trust-item strong { font-size: 14px; }

/* Shared cards */
.teaser-grid, .cards, .forwho, .wk-stats { gap: 18px; }

.teaser-card, .card, .forwho-card, .wk-stat, .price-card {
  border-color: rgba(16,37,27,.09);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 1px rgba(12,47,34,.02);
}

.teaser-card { padding: 36px 32px 38px; }
.teaser-ic, .card-ic, .forwho-ic, .why-reason-ic, .contact-detail-ic {
  border: 1px solid rgba(23,107,73,.09);
  border-radius: 14px;
}

.teaser-card h3, .card h3, .forwho-card h3 { font-size: 1.1rem; }
.teaser-card p, .card p, .forwho-card p { color: var(--muted); }

/* Homepage process */
.home-process-section { background: #fff; }

.home-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.home-process-head .section-head { margin-bottom: 0; }

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.home-process-card {
  min-height: 220px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: #fff;
  transition: background-color 180ms ease, color 180ms ease;
}

.home-process-card:last-child { border-right: 0; }

.home-process-card > span {
  margin-bottom: auto;
  color: var(--green);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.home-process-card strong {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.4;
}

.home-process-card small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.home-pricing-section {
  background: var(--green-deep);
  border-block: 1px solid rgba(255,255,255,.07);
}

.home-pricing-section .eyebrow { color: var(--green-light); }
.home-pricing-section .section-head h2 { color: #fff; }
.home-pricing-section .section-head h2 em { color: var(--green-light); }
.home-pricing-section .section-head p { color: #b9ccc1; }

.home-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.home-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
}

.home-price-card > p { grid-column: 1 / -1; color: var(--muted); font-size: 14px; }
.home-price-card .btn-primary, .home-price-card .btn-ghost { grid-column: 1 / -1; }
.home-price-card--featured { box-shadow: 0 20px 60px rgba(0,0,0,.18); }

.home-price-label {
  color: var(--green);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-price-card h3 {
  margin-top: 8px;
  font-size: 2.7rem;
  letter-spacing: -.06em;
}

.home-price-card h3 sup { color: var(--green); font-size: 1.2rem; vertical-align: super; }

.home-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--bg-tint);
  color: var(--green-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Page heroes */
.page-hero {
  padding: 176px 0 94px;
  background: var(--green-deep);
  border-bottom: 0;
}

.page-hero::before {
  opacity: .9;
  background:
    radial-gradient(circle at 82% 8%, rgba(88,163,121,.22), transparent 30%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}

.breadcrumb { margin-bottom: 28px; color: #8eaa9b; }
.breadcrumb a { color: #b9d7c7; }
.page-hero .eyebrow { color: var(--green-light); }

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.page-hero h1 em { color: var(--green-light); }

.page-hero .lead {
  max-width: 720px;
  color: #bdcec5;
  font-size: 17px;
  line-height: 1.8;
}

/* CTAs */
.cta-band {
  padding: 64px;
  border-radius: 28px;
  background: var(--green-deep);
  text-align: left;
  box-shadow: 0 28px 74px rgba(12,47,34,.18);
}

.cta-band::after {
  background: radial-gradient(circle at 92% 0%, rgba(84,168,121,.26), transparent 34%);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 56px;
  align-items: center;
}

.cta-band h2 { grid-column: 1; margin-bottom: 12px; font-size: clamp(2rem, 3.4vw, 3rem); letter-spacing: -.05em; }
.cta-band p { grid-column: 1; max-width: 620px; margin: 0; color: #bed0c6; }
.cta-band .btn-white { grid-column: 2; grid-row: 1 / 3; }

/* Services */
body .featured {
  margin-bottom: 64px;
  padding: 56px;
  border-radius: 26px;
  background: var(--green-deep);
  box-shadow: 0 28px 72px rgba(12,47,34,.16);
}

body .featured::after,
body .diensten-cta::after,
body .founder::after {
  background: radial-gradient(circle at 92% 0%, rgba(80,164,116,.26), transparent 38%);
}

body .featured h2 { font-size: clamp(1.7rem, 2.7vw, 2.3rem); }
body .featured p { color: #bdd0c5; }
body .featured-perks { min-width: 300px; }

.divider-label { margin-block: 14px 36px; }
.divider-label span { color: var(--green-dark); font-size: 11px; letter-spacing: .18em; }
.tarieven-divider { margin-top: 56px; }

body .card { padding: 36px 32px 40px; }
body .card::before { width: 100%; height: 3px; right: 0; bottom: auto; }

body .price-grid { gap: 18px; }

body .price-card {
  padding: 42px 38px 38px;
  border-radius: 22px;
}

body .price-card.featured-price {
  border-color: rgba(23,107,73,.45);
  box-shadow: 0 22px 54px rgba(23,107,73,.13);
}

body .price-badge { top: 18px; right: 18px; left: auto; }
body .price { font-size: 3.35rem; margin: 16px 0 12px; }
body .price-note { max-width: 760px; margin-top: 30px; }

body .diensten-cta {
  margin-top: 64px;
  padding: 56px;
  border-radius: 24px;
  background: var(--green-deep);
}

/* Process page */
body .steps { max-width: 980px; }

body .step {
  position: relative;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  margin-bottom: 14px;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
}

body .step:last-child { border: 1px solid var(--border); }

body .step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(23,107,73,.1);
}

body .step-body p { color: var(--muted); }
body .step-body .detail { margin-top: 16px; }

body .wk-stat {
  padding: 34px 26px;
  background: #fff;
}

body .wk-stat strong { font-size: 2.55rem; letter-spacing: -.06em; }

/* Why page */
body .why-layout { grid-template-columns: .82fr 1.18fr; gap: 88px; }
body .why-left { top: 110px; }

body .why-stat {
  padding: 44px 40px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

body .why-stat strong { font-size: 4.2rem; letter-spacing: -.07em; }

body .why-quote {
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(12,47,34,.15);
}

body .why-reason {
  gap: 24px;
  padding: 32px 0;
}

body .why-reason:first-child { padding-top: 8px; }
body .why-reason h3 { font-size: 1.18rem; }

/* About page */
body .story { grid-template-columns: 1.15fr .85fr; gap: 88px; }
body .story-body h2 { font-size: clamp(2rem,3.2vw,2.8rem); letter-spacing: -.05em; }
body .story-body p { font-size: 16px; line-height: 1.95; }

body .founder {
  top: 110px;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 28px 68px rgba(12,47,34,.17);
}

body .founder-avatar { width: 78px; height: 78px; border-radius: 22px; }

body .mission {
  padding: 58px;
  border-radius: 24px;
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

body .mission p { font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1.45; }

/* Contact */
body .contact-grid { grid-template-columns: .82fr 1.18fr; gap: 84px; }
body .contact-info h2 { font-size: clamp(2rem,3.2vw,2.8rem); }
body .contact-detail { margin-bottom: 20px; }

body .contact-note {
  margin-top: 34px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border-color: var(--border);
}

body .contact-form {
  gap: 18px;
  padding: 42px;
  border-radius: 24px;
  border-color: rgba(16,37,27,.1);
  box-shadow: var(--shadow-md);
}

body .form-group label { color: var(--green-dark); font-size: 11px; letter-spacing: .11em; }

body .form-group input,
body .form-group select,
body .form-group textarea {
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: #fbfcfa;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body .form-group input:focus,
body .form-group select:focus,
body .form-group textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23,107,73,.1);
}

body .form-group textarea { min-height: 150px; }

body .btn-submit {
  min-height: 54px;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(23,107,73,.18);
}

body .btn-submit:hover { background: var(--green-dark); }

.hp-field { display: none; }

.form-message {
  display: none;
  margin-top: 6px;
  padding: 14px 18px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.form-message-success { background: var(--bg-tint); color: var(--green-dark); }
.form-message-error { background: #fcecec; border-color: #f3c9c9; color: #a53d35; }
.form-message-error a { color: inherit; text-decoration: underline; }

/* Privacy */
body .privacy-inner { max-width: 850px; margin: 0 auto; }

body .privacy-meta {
  margin-bottom: 52px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

body .privacy-block {
  margin-bottom: 16px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

body .privacy-block h3 { margin-bottom: 14px; font-size: 11px; letter-spacing: .16em; }

/* Footer */
footer { background: #09271c; }

.footer-top {
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 72px;
  padding: 78px 0 58px;
}

.footer-brand p { max-width: 330px; color: #9fb6aa; }
.footer-col h4 { color: var(--green-light); }
.footer-col ul a { color: #b7cbc0; }
.footer-bottom { padding: 26px 0; }

/* Welcome prompt: preserve the original message without blocking the offer */
.welcome-overlay {
  inset: auto 24px 24px auto;
  width: min(430px, calc(100% - 32px));
  padding: 0;
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms;
}

.welcome-card {
  max-width: 430px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(12,47,34,.11);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(12,47,34,.2);
  pointer-events: auto;
  transform: translateY(12px) scale(.98);
  transition: transform 220ms var(--ease-out);
}

.welcome-badge { width: 50px; height: 50px; margin-bottom: 16px; border-radius: 14px; }
.welcome-badge .brand-mark { font-size: 21px; }
.welcome-card h2 { margin-bottom: 8px; padding-right: 28px; font-size: 1.25rem; }
.welcome-card p { margin-bottom: 20px; font-size: 13.5px; line-height: 1.65; }
.welcome-btns { flex-direction: row; gap: 8px; }
.welcome-btns .btn-primary, .welcome-btns .btn-ghost { min-height: 44px; padding: 11px 14px; font-size: 12px; }
.welcome-fineprint { margin-top: 12px; font-size: 11px; }

/* Cookie banner */
.cookie-banner {
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(12,47,34,.18);
}

/* Hover polish only for devices with a precise pointer */
@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.nav-cta):hover { background: var(--bg-soft); }
  .text-link:hover span { transform: translateX(4px); }
  .home-process-card:hover { background: var(--bg-soft); }
  .teaser-card:hover, .card:hover, .forwho-card:hover, .price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23,107,73,.22);
    box-shadow: 0 18px 44px rgba(12,47,34,.08);
  }
}

@media (max-width: 1100px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding-inline: 8px; font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr .82fr; gap: 56px; }
  .home-process-grid { grid-template-columns: 1fr 1fr; }
  .home-process-card:nth-child(2) { border-right: 0; }
  .home-process-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  body .why-layout, body .story, body .contact-grid { gap: 56px; }
}

@media (max-width: 1000px) {
  header .nav { padding-right: 12px; }

  .nav-links {
    top: 96px;
    left: 16px;
    right: 16px;
    padding: 10px 14px 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px) scale(.98);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms var(--ease-out), opacity 150ms ease;
  }

  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 12px;
    border-bottom: 0;
    border-radius: 10px;
  }

  .nav-links a.nav-cta { margin-top: 8px; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 78px; }
  .hero-inner > div:first-child { max-width: 760px; }
  .hero-visual { width: min(100%, 620px); max-width: none; margin-inline: auto; }
  .trust { margin-top: -28px; }
  .trust-inner { flex-direction: row; }
  .trust-item { border-right: 1px solid var(--border); border-bottom: 0; }
  .trust-item:last-child { border-right: 0; }
  body .why-layout, body .story, body .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  body .why-left, body .founder { position: static; }
  body .contact-info { max-width: 680px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 1240px); }
  .section { padding: 82px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(2rem, 10vw, 2.8rem); }

  .hero { padding: 154px 0 96px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-sub { font-size: 16.5px; }
  .hero-visual::before { inset: -18px 20px 18px -18px; }
  .hero-badge { left: -8px; bottom: -22px; }

  .trust-inner { flex-direction: column; padding: 8px 20px; }
  .trust-item, .trust-item:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: 0; }

  .home-process-head { align-items: flex-start; flex-direction: column; gap: 24px; }
  .home-process-grid { grid-template-columns: 1fr; }
  .home-process-card { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--border); }
  .home-process-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .home-process-card:last-child { border-bottom: 0; }

  .home-price-grid { grid-template-columns: 1fr; }
  .home-price-card { padding: 30px; }

  .page-hero { padding: 154px 0 74px; }
  .page-hero h1 { font-size: clamp(2.6rem, 12vw, 3.7rem); }

  .cta-band { padding: 44px 32px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band p { margin-bottom: 28px; }
  .cta-band .btn-white { grid-column: 1; grid-row: auto; justify-self: start; }

  body .featured, body .diensten-cta { padding: 38px 30px; }
  body .featured-perks { min-width: 0; }
  body .price-card { padding: 38px 28px 30px; }
  body .step { grid-template-columns: 1fr; padding: 28px 26px; }
  body .why-stat, body .why-quote, body .founder, body .contact-form { padding: 30px; }
  body .mission { padding: 40px 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .welcome-overlay { right: 16px; bottom: 16px; }
  .welcome-card { padding: 26px; }
  .welcome-btns { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1240px); }
  header { padding-top: 8px; }
  header .nav { width: calc(100% - 16px); height: 66px; border-radius: 16px; }
  .nav-links { top: 82px; left: 8px; right: 8px; }

  .hero { padding-top: 132px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { width: calc(100% - 8px); }
  .prev-links { display: none; }
  .prev-cards { grid-template-columns: 1fr 1fr; }
  .prev-card:last-child { display: none; }
  .hero-badge { position: relative; left: 0; bottom: auto; margin: -2px 14px 0; border-radius: 0 0 16px 16px; }

  .page-hero { padding-top: 132px; }
  .page-hero h1 br { display: none; }

  .home-price-card { grid-template-columns: 1fr; }
  .home-price-badge { position: static; justify-self: start; }

  body .form-row { grid-template-columns: 1fr; }
  body .contact-form { padding: 26px 20px; }
  body .privacy-block { padding: 24px 22px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; }

  .cookie-banner { width: calc(100% - 24px); bottom: 12px; padding: 18px; }
  .cookie-banner-btns { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: opacity 120ms ease !important; }
  .nav-links, .welcome-card { transition: opacity 120ms ease !important; transform: none !important; }
}

/* SiteVivo brand refresh */
.sitevivo-mark {
  display: block;
  width: 46px;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 5px;
}

.nav-logo { gap: 11px; }
.nav-logo .brand-word {
  color: var(--ink) !important;
  font-weight: 800;
}
.nav-logo .brand-accent { color: var(--green) !important; }

.footer-logo { gap: 11px; }
.footer-logo .sitevivo-mark {
  width: 48px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}
.footer-logo .brand-word { color: #fff !important; }
.footer-logo .brand-accent { color: var(--green-light) !important; }

.welcome-badge .sitevivo-mark { width: 44px; height: 26px; }
.founder-avatar .sitevivo-mark {
  width: 82px;
  height: 44px;
  border-radius: 9px;
}

/* Hero: reserve a real column for the mockup and prevent headline overflow. */
.hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  gap: clamp(48px, 4vw, 64px);
}
.hero-inner > div:first-child { min-width: 0; }
.hero h1 {
  font-size: clamp(2.25rem, 3.45vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 72px; }
  .hero-inner > div:first-child { max-width: 760px; }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 3.45rem); }
  .hero h1 .l1 { white-space: normal; }
}

@media (max-width: 760px) {
  .hero-inner { gap: 58px; }
  .hero h1 { font-size: clamp(2.35rem, 9.5vw, 3.35rem); }
}

@media (max-width: 520px) {
  .sitevivo-mark { width: 42px; height: 25px; }
  .brand-word { font-size: 17px; }
  .hero h1 { line-height: 1.06; letter-spacing: -.04em; }
}
