:root {
  --ink: #102a3d;
  --ink-2: #18394e;
  --green: #167351;
  --green-dark: #0f6042;
  --green-pale: #e8f4ee;
  --cream: #f7f5ef;
  --sand: #eee9dc;
  --white: #ffffff;
  --text: #314655;
  --muted: #56646e;
  --line: #dde3e1;
  --error: #a63d34;
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 22px 70px rgba(16, 42, 61, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

button,
input,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.2vw, 4.75rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  border-bottom-color: rgba(16, 42, 61, 0.1);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #455965;
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.site-footer nav a:hover,
.button-link:hover {
  color: var(--green);
}

.text-link {
  text-decoration: underline;
  text-decoration-color: rgba(49, 70, 85, 0.35);
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(22, 115, 81, 0.2);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 1.02rem;
}

.button-full {
  width: 100%;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--green-pale);
  background: var(--green-pale);
  color: var(--ink);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 86px;
}

.hero::before {
  position: absolute;
  top: -340px;
  right: -270px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 115, 81, 0.16), rgba(22, 115, 81, 0) 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 76px;
}

.hero-copy h1 {
  max-width: 15ch;
}

.hero-lead,
.section-lead {
  max-width: 60ch;
  margin-bottom: 0;
  color: #526673;
  font-size: 1.14rem;
}

.hero-lead {
  max-width: 57ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow-light {
  color: #8ed5b7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #526673;
  font-size: 0.91rem;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.proof-list li span {
  color: var(--green);
  font-weight: 900;
}

.shortlist-preview {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(16, 42, 61, 0.08);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.shortlist-preview::after {
  position: absolute;
  right: 30px;
  bottom: -18px;
  left: 30px;
  z-index: -1;
  height: 50px;
  border-radius: 50%;
  background: rgba(16, 42, 61, 0.12);
  content: "";
  filter: blur(22px);
}

.preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.preview-head h2 {
  margin: 0;
  font-size: 1.48rem;
  letter-spacing: -0.025em;
}

.kicker {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-label {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.profile-row.active {
  border-color: rgba(22, 115, 81, 0.28);
  box-shadow: 0 7px 24px rgba(16, 42, 61, 0.08);
}

.profile-initial {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 800;
}

.profile-row strong,
.profile-row small {
  display: block;
}

.profile-row strong {
  color: var(--ink);
  font-size: 0.91rem;
}

.profile-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.profile-meta {
  text-align: right;
}

.preview-note {
  margin: 17px 2px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.trust-strip {
  border-top: 1px solid rgba(16, 42, 61, 0.08);
  border-bottom: 1px solid rgba(16, 42, 61, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #75828a;
  font-size: 0.79rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.request-section {
  background: var(--white);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 90px;
}

.request-grid h2 {
  max-width: 12ch;
}

.micro-proof {
  margin-top: 32px;
  padding: 19px 20px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
}

.micro-proof strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.micro-proof p {
  margin: 0;
  font-size: 0.9rem;
}

.request-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--cream);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid #7d8b86;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 115, 81, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6c737a;
}

.wa-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.form-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  display: none;
  margin: -6px 0 0;
  color: var(--error);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-error.visible {
  display: block;
}

.soft-section {
  background: #f0eee7;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  max-width: 18ch;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.benefit-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(16, 42, 61, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.number {
  display: block;
  margin-bottom: 52px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.benefit-card p {
  margin-bottom: 0;
  color: #5e6f79;
}

.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 100px;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.process-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.process-list p {
  max-width: 56ch;
  margin-bottom: 0;
}

.dark-section {
  background: var(--ink);
}

.dark-section h2 {
  color: var(--white);
}

.dark-section .section-lead {
  color: #b8c5cc;
}

.check-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.check-panel {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  list-style: none;
}

.check-panel li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #dfe8eb;
}

.check-panel li:first-child {
  border-top: 0;
}

.check-panel strong {
  color: #8ed5b7;
  font-size: 0.82rem;
  text-align: right;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.76fr;
  align-items: center;
  gap: 90px;
}

.price-copy h2 {
  max-width: 18ch;
}

.plain-checks {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.plain-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.plain-checks span {
  color: var(--green);
  font-weight: 900;
}

.price-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card > p:first-child {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 720;
}

.price {
  color: var(--ink);
  font-size: clamp(3.8rem, 7vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price span {
  margin-right: 5px;
  font-size: 0.45em;
  vertical-align: top;
}

.price-card small {
  display: block;
  margin: 10px 0 26px;
  color: var(--muted);
}

.price-card .price-foot {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.supply-callout {
  padding-top: 0;
}

.supply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 50px;
  border-radius: var(--radius-large);
  background: var(--green);
  color: var(--white);
}

.supply-inner h2 {
  max-width: 15ch;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.supply-inner p {
  max-width: 58ch;
  margin-bottom: 0;
  color: #d7eee5;
}

.supply-inner .kicker {
  color: #c8eadc;
}

.supply-inner .button {
  flex: 0 0 auto;
  max-width: 260px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 66ch;
  margin: -5px 0 22px;
  color: #5e6f79;
}

.final-cta {
  padding: 100px 0;
  background: var(--ink);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 18ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0 auto 30px;
  color: #bdcbd1;
  font-size: 1.08rem;
}

.site-footer {
  padding: 58px 0 28px;
  background: #0b202f;
  color: #aebcc4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div > p {
  max-width: 45ch;
  margin: 17px 0 0;
  font-size: 0.87rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 11px 28px;
  font-size: 0.87rem;
  font-weight: 620;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.mobile-cta {
  display: none;
}

.legal-hero,
.compact-hero {
  padding: 76px 0 82px;
}

.legal-hero .container,
.compact-hero .container {
  max-width: 900px;
}

.legal-hero h1,
.compact-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.legal-content {
  padding: 80px 0 110px;
  background: var(--white);
}

.legal-content .container {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 50px;
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-note {
  padding: 20px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.route-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.route-card p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .request-grid,
  .process-grid,
  .check-grid,
  .price-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .shortlist-preview {
    max-width: 620px;
  }

  .sticky-heading {
    position: static;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .number {
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
    scroll-padding-bottom: 96px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    background: rgba(247, 245, 239, 0.95);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 36px 0 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .hero-lead,
  .section-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button-link {
    justify-content: center;
  }

  .proof-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .shortlist-preview {
    padding: 21px;
    border-radius: 22px;
  }

  .preview-head {
    align-items: flex-start;
  }

  .profile-row {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    padding: 13px;
  }

  .profile-initial {
    width: 39px;
    height: 39px;
  }

  .trust-strip .container {
    justify-content: flex-start;
    overflow: hidden;
    flex-wrap: nowrap;
    gap: 24px;
    white-space: nowrap;
  }

  .request-form {
    padding: 23px;
  }

  .field-grid,
  .route-cards {
    grid-template-columns: 1fr;
  }

  .check-panel li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .check-panel strong {
    text-align: left;
  }

  .price-card {
    padding: 32px 23px;
  }

  .supply-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 34px 25px;
  }

  .supply-inner .button {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(247, 245, 239, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-cta .button {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.final-cta :focus-visible,
.site-footer :focus-visible,
.supply-inner :focus-visible,
.dark-section :focus-visible {
  outline-color: #fff;
}

/* Uitbreiding 22 september 2026: bestelroute, lokale pagina's en beheer. */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.preview-banner {
  padding: 8px 16px;
  background: #fff3c4;
  color: #5b4700;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.microcopy {
  margin: 16px 0 0;
  color: #526673;
  font-size: 0.92rem;
}

.fine-print {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.narrow {
  max-width: 760px;
}

.spaced {
  margin-top: 56px;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--ink);
  box-shadow: none;
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

/* Stappen */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps p {
  margin: 0;
  color: #5e6f79;
}

.step-num {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.request-intro .steps,
.steps-compact {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.request-intro .steps li,
.steps-compact li {
  padding: 18px;
}

.steps-compact h3,
.request-intro .steps h3 {
  font-size: 1.02rem;
}

/* Bestelformulier */
.order-form {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--cream);
}

.order-form fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.order-form legend {
  margin-bottom: 14px;
  padding: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
}

.fieldset-hint {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.field textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px 14px;
  border: 1px solid #7d8b86;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 115, 81, 0.1);
}

.field-hint {
  color: var(--muted);
  font-size: 0.8rem;
}

.field-error {
  display: none;
  color: var(--error);
  font-size: 0.84rem;
  font-weight: 700;
}

.field-error.visible {
  display: block;
}

.field [aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(166, 61, 52, 0.12);
}

.dagdelen {
  display: grid;
  grid-template-columns: minmax(84px, auto) 1fr 1fr;
  align-items: center;
  gap: 8px 10px;
}

.dagdelen-kop {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.dagdelen-dag {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.chip {
  position: relative;
  display: block;
}

.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.chip span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid #7d8b86;
  border-radius: 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
}

.chip span:empty::before {
  content: "";
}

.chip input:checked + span {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.chip input:checked + span:empty::before {
  content: "✓ Kan";
}

.order-form[data-lang="en"] .chip input:checked + span:empty::before {
  content: "✓ Yes";
}

.chip input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.chip-tekst span {
  color: var(--ink);
  font-weight: 650;
}

.keuzes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.keuzes .field-legend,
.field > label {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.keuzes .field-legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.form-duur {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.dagdelen:has([aria-invalid="true"]) .chip span,
.keuzes:has([aria-invalid="true"]) .chip span {
  border-color: var(--error);
}

.check-consent:has([aria-invalid="true"]) {
  border-color: var(--error);
  background: #fbeceb;
}

.check {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--ink);
  font-size: 0.93rem;
  cursor: pointer;
}

.check input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.check a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.check-consent {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 650;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  background: #fbeceb;
  color: var(--error);
}

.form-status.info {
  background: var(--green-pale);
  color: var(--ink);
}

.form-note a,
.prose a,
.legal-content a,
.micro-proof a,
.faq-list a,
.hero-lead a,
.info-card a,
.fine-print a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Voorbeeldprofiel en controles */
.example-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.example-profile {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

.example-profile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.example-profile-head h3 {
  margin: 0;
  font-size: 1.4rem;
}

.profile-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.profile-facts div,
.place-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.profile-facts dt,
.place-facts dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.profile-facts dd,
.place-facts dd {
  margin: 0;
  color: var(--ink);
}

.tag {
  display: inline-block;
  margin: 2px 0 0 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sand);
  color: #5b5446;
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.tag-checked {
  background: var(--green-pale);
  color: var(--green-dark);
}

.check-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.check-column {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.check-column .plain-checks,
.check-column .plain-crosses {
  margin-top: 0;
}

.check-column-not {
  background: #faf8f3;
}

.plain-crosses {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.plain-crosses li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.plain-crosses span {
  color: var(--error);
  font-weight: 900;
}

.price-points {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--text);
  font-size: 0.92rem;
  list-style: none;
  text-align: left;
}

.price-points li {
  display: flex;
  gap: 10px;
}

.price-points li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

/* Werkgebied */
.place-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.place-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
}

.place-chip small {
  color: var(--muted);
  font-weight: 500;
}

.place-chip:hover {
  border-color: var(--green);
}

.place-chip-active {
  border-color: rgba(22, 115, 81, 0.35);
  background: var(--green-pale);
}

.place-filter {
  max-width: 420px;
  margin-top: 26px;
}

.municipality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.municipality {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.municipality h3 {
  font-size: 1rem;
}

.municipality ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.municipality a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(16, 42, 61, 0.25);
  text-underline-offset: 3px;
}

.municipality[hidden],
.municipality li[hidden] {
  display: none;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 6px;
  content: "/";
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compact-hero .container {
  max-width: 900px;
}

.compact-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.hero-local .hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.local-card {
  padding: 28px;
  border: 1px solid rgba(16, 42, 61, 0.08);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.local-card h2 {
  font-size: 1.4rem;
}

.place-facts {
  margin: 20px 0 0;
}

.status-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--green-pale);
  color: var(--ink);
}

.status-note-wait {
  background: var(--sand);
}

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.prose p {
  max-width: 66ch;
  color: var(--text);
  font-size: 1.05rem;
}

/* Betaalpagina */
.pay-section {
  padding-top: 64px;
}

.pay-card,
.status-card,
.info-card {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
}

.pay-card[hidden],
.status-card[hidden] {
  display: none;
}

.info-card {
  background: var(--cream);
}

.info-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
}

.code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--green-pale);
}

.code-row .kicker {
  display: block;
}

.code {
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 820;
  letter-spacing: 0.06em;
}

.pay-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
}

.status-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.status-card p {
  margin: 0;
}

.status-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.status-card dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.status-card dt {
  color: var(--muted);
  font-weight: 700;
}

.status-card dd {
  margin: 0;
  color: var(--ink);
}

mark.todo {
  padding: 1px 6px;
  border-radius: 6px;
  background: #fff3c4;
  color: #5b4700;
  font-weight: 700;
}

.footer-company {
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-company a {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .steps,
  .check-columns,
  .example-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .example-grid,
  .two-col {
    gap: 36px;
  }

  .municipality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .order-form {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .municipality-grid {
    grid-template-columns: 1fr;
  }

  .profile-facts div,
  .place-facts div,
  .status-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .dagdelen {
    grid-template-columns: minmax(78px, auto) 1fr 1fr;
    gap: 6px 8px;
  }

  .example-profile,
  .local-card,
  .pay-card,
  .status-card,
  .info-card,
  .check-column {
    padding: 20px;
  }

  .code {
    font-size: 1.35rem;
  }

  .mobile-cta.verborgen {
    display: none;
  }

  .price {
    font-size: 3.4rem;
  }

  .price-card {
    text-align: left;
  }
}

.person-card {
  display: grid;
  gap: 12px;
  max-width: 760px;
  padding: 28px;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
}

.person-card p {
  margin: 0;
  font-size: 1.05rem;
}

.objections {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.objections li {
  display: flex;
  gap: 10px;
  color: var(--ink);
}

.objections li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-inline strong {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.pending-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 115, 81, 0.35);
  border-radius: 14px;
  background: var(--green-pale);
}

.pending-card p {
  margin: 0;
}

.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.pay-steps li {
  margin-bottom: 10px;
}

.pay-steps .code-row {
  margin-top: 8px;
}

.betaler-form {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.betaler-form .field-legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.betaler-rij {
  display: flex;
  gap: 8px;
}

.betaler-rij input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #7d8b86;
  border-radius: 10px;
  font: inherit;
}
