@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader-VF.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader-Italic-VF.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-VF.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Italic-VF.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-VF.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Italic-VF.woff2') format('woff2');
  font-weight: 100 800;
  font-style: italic;
  font-display: swap
}

:root {
  --paper: #f7f9fc;
  --paper-2: #eef2f8;
  --paper-3: #e3e9f1;
  --ink: #0f1722;
  --ink-soft: #3e4858;
  --ink-mute: #6b7585;
  --ink-faint: #98a1b0;
  --line: #d4dbe5;
  --line-soft: #e2e7ee;
  --brand: #1e417b;
  --brand-deep: #112a52;
  --brand-soft: #e8eef8;
  --live: #2d9650;
  --live-bright: #3eb564;
  --warn: #b4521c;
  --maxw: 1180px;
  --gutter: 48px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s ease
}

a:hover {
  color: var(--brand-deep);
  text-decoration: underline
}

h1,
h2,
h3,
h4 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
  font-variation-settings: "opsz" 36
}

h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 72
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-variation-settings: "opsz" 48
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  font-variation-settings: "opsz" 28
}

h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Geist', sans-serif;
  letter-spacing: -0.005em
}

.lead {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
  font-variation-settings: "opsz" 20
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  max-width: 64ch
}

strong {
  color: var(--ink);
  font-weight: 600
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: "ss01"
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.eyebrow .sec-no {
  color: var(--brand);
  font-weight: 600
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink-mute);
  display: inline-block
}

.site-header {
  position: relative;
  z-index: 4;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--gutter) 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line)
}

.brand {
  display: block;
  line-height: 0;
  flex-shrink: 0
}

.brand img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500
}

.site-header nav a {
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 0;
  position: relative;
  transition: color .15s ease;
  text-decoration: none;
  white-space: nowrap
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(.65);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease
}

.site-header nav a:hover {
  color: var(--brand);
  text-decoration: none
}

.site-header nav a:hover::after {
  opacity: .32;
  transform: scaleX(1)
}

.site-header nav a.active {
  color: var(--brand)
}

.site-header nav a.active::after {
  opacity: 1;
  transform: scaleX(1)
}

.nav-cta {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px !important;
  font-weight: 500;
  border-radius: 2px;
  transition: background .15s ease
}

.nav-cta:hover {
  background: var(--brand-deep);
  color: var(--paper) !important;
  text-decoration: none
}

.nav-cta::after {
  display: none !important
}

.nav-cta .arr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px
}

main {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft)
}

section:last-of-type {
  border-bottom: none
}

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: baseline
}

.section-head .eyebrow {
  margin: 0
}

.section-head h2 {
  margin: 0
}

.hero {
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--line-soft);
  position: relative
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 28px
}

.hero h1 em {
  font-style: italic;
  color: var(--brand);
  font-variation-settings: "opsz" 72
}

.hero .lead {
  max-width: 52ch
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none
}

.btn-primary {
  background: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink)
}

.btn-primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  text-decoration: none
}

.btn-secondary {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink)
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper) !important;
  text-decoration: none
}

.btn .arr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px
}

.phone-inline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.phone-inline::before {
  content: "";
  width: 1px;
  height: 18px;
  background: var(--line);
  display: inline-block;
  margin-right: 8px
}

.hero-meta {
  position: absolute;
  top: 96px;
  right: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.7
}

.hero-meta .l {
  color: var(--ink-mute)
}

.hero-meta .v {
  color: var(--ink)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line)
}

.service {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  background: transparent;
  transition: background .2s ease
}

.service:nth-child(3n) {
  border-right: none
}

.service:hover {
  background: #fff
}

.service .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 22px;
  display: block
}

.service h3 {
  margin-bottom: 14px;
  font-size: 24px
}

.service p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: none
}

.service .stack {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  line-height: 1.7
}

.service .stack span {
  background: var(--paper-2);
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  display: inline-block;
  border-radius: 2px
}

.service .more {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px
}

.service .more:hover {
  color: var(--brand);
  border-color: var(--brand);
  text-decoration: none
}

.datasheet-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start
}

.datasheet-intro p {
  font-size: 17px;
  max-width: 52ch
}

.datasheet-intro h2 em {
  font-style: italic;
  color: var(--brand)
}

.datasheet {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  position: relative
}

.datasheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase
}

.datasheet-head .badge {
  background: var(--live);
  color: var(--paper);
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.08em
}

.datasheet-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px dashed var(--line)
}

.datasheet-row:last-child {
  border-bottom: none
}

.datasheet-row .k {
  color: var(--ink-mute);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.datasheet-row .v {
  color: var(--ink);
  font-size: 13px
}

.datasheet-row .v .ok {
  color: var(--live);
  font-weight: 600;
  margin-right: 4px
}

.datasheet-row .v .no {
  color: var(--ink-mute);
  text-decoration: line-through;
  opacity: .7
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.step {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line-soft);
  position: relative
}

.step:last-child {
  border-right: none
}

.step .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block
}

.step h3 {
  font-size: 21px;
  margin-bottom: 10px
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: none
}

.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 64px var(--gutter);
  margin: 0 calc(-1 * var(--gutter)) 0
}

.cta-strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center
}

.cta-strip h2 {
  color: var(--paper);
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 16px
}

.cta-strip h2 em {
  font-style: italic;
  color: var(--live-bright)
}

.cta-strip p {
  color: rgba(247, 249, 252, .72);
  margin: 0;
  max-width: 48ch;
  font-size: 16px
}

.cta-strip .cta-contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 2;
  color: rgba(247, 249, 252, .85)
}

.cta-strip .cta-contact a {
  color: var(--paper);
  border-bottom: 1px solid rgba(247, 249, 252, .3);
  padding-bottom: 1px
}

.cta-strip .cta-contact a:hover {
  color: var(--live-bright);
  border-color: var(--live-bright);
  text-decoration: none
}

.cta-strip .cta-contact .k {
  color: rgba(247, 249, 252, .5);
  display: inline-block;
  width: 80px
}

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 36px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  z-index: 2
}

.site-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px
}

.site-footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px;
  font-weight: 500
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2
}

.site-footer a {
  color: var(--ink-soft)
}

.site-footer a:hover {
  color: var(--brand)
}

.site-footer .brand-foot {
  font-family: 'Newsreader', serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 500
}

.site-footer .tag {
  font-style: italic;
  color: var(--ink-mute);
  font-family: 'Newsreader', serif;
  font-size: 15px
}

.site-footer-meta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-transform: uppercase
}

.site-footer-meta .kvk span {
  color: var(--ink);
  margin-left: 4px
}

.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line-soft)
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(40px, 5.5vw, 64px)
}

.prose-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line-soft)
}

.prose-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start
}

.prose-grid .col-meta .eyebrow {
  margin: 0 0 14px
}

.prose-grid .col-meta .meta-list {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.9;
  letter-spacing: 0.03em
}

.prose-grid h2 {
  margin-bottom: 18px
}

.prose-grid p {
  font-size: 16.5px
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px
}

.bullets li {
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  position: relative;
  font-size: 15px
}

.bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--brand);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line)
}

.option {
  padding: 32px 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft)
}

.option:last-child {
  border-right: none
}

.option .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: inline-block;
  background: var(--brand-soft);
  padding: 3px 8px;
  border-radius: 2px
}

.option h3 {
  font-size: 24px;
  margin-bottom: 12px
}

.option p {
  font-size: 15px;
  max-width: none
}

.option .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 16px;
  letter-spacing: 0.04em
}

.about-wrap {
  max-width: 920px;
  padding: 72px 0 32px
}

.about-text h1 {
  margin-bottom: 28px;
  max-width: none
}

.about-text p {
  font-size: 17px;
  max-width: 64ch
}

.about-text p:first-of-type {
  font-family: inherit;
  font-size: 17px;
  color: inherit;
  font-style: normal;
  font-weight: inherit;
  margin-bottom: 24px;
  line-height: 1.7
}

.portrait-wrap {
  float: right;
  width: 190px;
  margin: 2px 0 24px 42px;
  position: static
}

.portrait {
  width: 100%;
  display: block;
  filter: grayscale(10%) contrast(1.02);
  border: 1px solid var(--line);
  border-radius: 14px
}

.portrait-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 10px;
  text-transform: uppercase
}

.timeline {
  clear: both;
  margin: 32px 0;
  padding-left: 0;
  list-style: none;
  border-left: 1px solid var(--line)
}

.timeline li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0 12px 20px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft)
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 22px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%
}

.timeline .yr {
  flex: 0 0 auto;
  min-width: 80px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.04em
}

.timeline .tl-text {
  flex: 1 1 auto;
  min-width: 0
}

@media (max-width:760px) {
  .about-wrap {
    padding-top: 48px
  }

  .portrait-wrap {
    float: none;
    width: 170px;
    margin: 0 0 28px
  }

  .about-text p {
    max-width: none
  }

  .site-header {
    flex-wrap: wrap
  }

  .site-header nav {
    width: 100%
  }
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px 0 40px
}

.contact-info {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-soft)
}

.contact-info .row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line)
}

.contact-info .row:last-child {
  border-bottom: none
}

.contact-info .row .k {
  color: var(--ink-mute);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 4px
}

.contact-info .row .v {
  color: var(--ink);
  font-size: 14px
}

.contact-info .row .v a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px
}

.contact-info .row .v a:hover {
  color: var(--brand);
  border-color: var(--brand);
  text-decoration: none
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 22px
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 11px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .15s ease
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand)
}

.field textarea {
  resize: vertical;
  min-height: 110px
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap
}

.form-foot small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em
}

@media (max-width:1000px) {
  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .service:nth-child(3n) {
    border-right: 1px solid var(--line-soft)
  }

  .service:nth-child(2n) {
    border-right: none
  }

  .steps,
  .option-grid {
    grid-template-columns: 1fr 1fr
  }

  .step:nth-child(2n),
  .option:nth-child(2n) {
    border-right: none
  }

  .step:nth-child(odd),
  .option:nth-child(odd) {
    border-right: 1px solid var(--line-soft)
  }

  .datasheet-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .cta-strip-inner,
  .about-wrap,
  .contact-wrap,
  .prose-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .portrait-wrap {
    position: static;
    max-width: 380px
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 32px
  }

  .hero-meta {
    position: static;
    text-align: left;
    margin-top: 28px
  }

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

@media (max-width:640px) {
  .site-header {
    padding: 18px 16px 16px;
    flex-wrap: wrap;
    gap: 14px
  }

  .brand img {
    height: 36px
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2px;
    margin-top: 4px
  }

  .site-header nav a {
    padding: 6px 8px;
    font-size: 13.5px;
    white-space: nowrap
  }

  .nav-cta {
    margin-left: 0;
    padding: 7px 12px !important;
    font-size: 13.5px
  }

  .nav-cta .arr {
    font-size: 13px
  }

  main {
    padding-left: 16px;
    padding-right: 16px
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px
  }

  section {
    padding: 56px 0
  }

  .services-grid,
  .steps,
  .option-grid {
    grid-template-columns: 1fr
  }

  .service,
  .step,
  .option {
    border-right: none !important;
    border-bottom: 1px solid var(--line-soft)
  }

  .bullets {
    grid-template-columns: 1fr
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .phone-inline {
    margin-left: 0
  }

  .phone-inline::before {
    display: none
  }
}

.altcha-wrap {
  margin: 18px 0 20px
}

.altcha-wrap altcha-widget {
  --altcha-color-base: var(--paper);
  --altcha-color-border: var(--line);
  --altcha-color-text: var(--ink);
  --altcha-color-border-focus: var(--brand);
  max-width: 100%
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-mute)
}

.alert {
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 14px
}

.alert.ok {
  border-color: rgba(45, 150, 80, .35);
  background: rgba(45, 150, 80, .08)
}

.alert.error {
  border-color: rgba(180, 82, 28, .35);
  background: rgba(180, 82, 28, .08)
}

.home-hero {
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft)
}

.home-hero h1 {
  max-width: 12.5ch;
  margin-bottom: 26px;
  font-size: clamp(40px, 5.5vw, 64px)
}

.home-hero-copy>p:not(.lead) {
  font-size: 17px;
  max-width: 54ch
}

.now-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 34px 32px;
  box-shadow: 0 18px 45px rgba(17, 42, 82, .06)
}

.now-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 9px;
  margin-bottom: 18px
}

.now-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 18px
}

.now-card p {
  font-size: 15.5px
}

.now-card .more,
.home-service .more {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px
}

.now-card .more:hover {
  color: var(--brand);
  border-color: var(--brand);
  text-decoration: none
}

.home-services {
  padding: 64px 0
}

.section-head.compact {
  margin-bottom: 30px
}

.home-service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line-soft)
}

.home-service {
  display: block;
  padding: 28px 24px 26px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  min-height: 250px;
  text-decoration: none;
  transition: background .16s ease, transform .16s ease
}

.home-service:hover {
  background: #fff;
  color: var(--ink);
  text-decoration: none
}

.home-service span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 18px
}

.home-service h3 {
  font-size: 23px;
  margin-bottom: 14px
}

.home-service p {
  font-size: 14.5px;
  max-width: none;
  margin: 0
}

.home-cta {
  padding: 42px 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: none
}

.home-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 10px
}

.home-cta p {
  margin: 0;
  max-width: 62ch
}

.home-recent {
  padding: 56px 0
}

.recent-log {
  border-top: 1px solid var(--line)
}

.recent-log-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft)
}

.recent-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 2px
}

.recent-log-item p {
  margin: 0;
  max-width: 72ch;
  font-size: 15px
}

@media (max-width:640px) {
  .recent-log-item {
    grid-template-columns: 1fr;
    gap: 4px
  }
}

@media (max-width:1000px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .home-service-list {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .home-hero {
    padding: 56px 0 48px
  }

  .now-card {
    padding: 26px 22px 24px
  }

  .home-service-list {
    grid-template-columns: 1fr
  }

  .home-service {
    min-height: auto
  }

  .home-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 54px
  }
}


/* ===== Homepage: rustige kustfoto + lijniconen ===== */
.home-hero-visual {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  padding: 92px var(--gutter) 82px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.home-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, .80) 0%, rgba(247, 249, 252, .63) 44%, rgba(247, 249, 252, .34) 100%),
    linear-gradient(0deg, rgba(247, 249, 252, .22), rgba(247, 249, 252, .08));
}

.home-hero-visual .now-card {
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(4px);
}

.home-service .service-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.home-service .service-num {
  margin-bottom: 12px;
}

@media (max-width:640px) {
  .home-hero-visual {
    margin: 0 -16px;
    padding: 58px 16px 52px;
  }

  .home-hero-visual::after {
    background: rgba(247, 249, 252, .76);
  }
}