:root {
  --ink: #101916;
  --ink-2: #23302c;
  --muted: #65716b;
  --muted-2: #5f6b65;
  --surface: #f4f6f2;
  --surface-2: #edf1ec;
  --card: #ffffff;
  --line: #d9e0da;
  --line-strong: #bdc8c0;
  --orange: #d85532;
  --orange-deep: #b83f23;
  --orange-pale: #fff0ea;
  --green: #2d7a55;
  --green-pale: #e8f4ec;
  --night: #14201c;
  --night-2: #1d2c27;
  --sans: "Inter", Arial, sans-serif;
  --display: "Inter Tight", "Inter", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --shadow: 0 24px 64px rgba(25, 42, 35, 0.12);
  --shadow-soft: 0 12px 34px rgba(25, 42, 35, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  cursor: pointer;
}

svg {
  display: block;
}

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

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

[id] {
  scroll-margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(216, 85, 50, 0.45);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 246, 242, 0.92);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 24px rgba(23, 37, 31, 0.05);
}

.header-row {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--orange);
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #35433e;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #96341f;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: var(--card);
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.menu-toggle-lines i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-backdrop {
  position: fixed;
  z-index: 81;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(16, 25, 22, 0.48);
  transition: opacity 200ms ease;
}

.mobile-menu {
  position: fixed;
  z-index: 82;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(410px, 92vw);
  padding: max(22px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  background: var(--card);
  box-shadow: -24px 0 50px rgba(15, 27, 22, 0.15);
  flex-direction: column;
  transition: clip-path 230ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 230ms;
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.menu-backdrop.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-top {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.menu-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu > a:not(.mobile-menu-cta) {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mobile-menu > a span {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
}

.mobile-menu-cta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 12px;
  color: #fff;
  background: var(--orange-deep);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 94px 0 104px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: max(0px, calc((100vw - 1248px) / 2));
  width: min(52vw, 760px);
  height: 100%;
  content: "";
  opacity: 0.44;
  background-image: linear-gradient(rgba(33, 50, 43, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 50, 43, 0.065) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to left, #000 62%, transparent 100%);
}

.hero-layout {
  display: grid;
  align-items: center;
  gap: clamp(50px, 6vw, 88px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(570px, 1.18fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(216, 85, 50, 0.12);
}

.hero h1 {
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(58px, 5.4vw, 78px);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  color: var(--orange-deep);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -3px;
  left: 4px;
  height: 7px;
  content: "";
  transform: rotate(-1deg);
  border-radius: 50%;
  background: rgba(216, 85, 50, 0.14);
}

.hero-lede {
  max-width: 510px;
  margin-bottom: 30px;
  color: #4d5d57;
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

.button svg,
.text-link svg,
.form-submit svg,
.form-next svg,
.form-back svg,
.mobile-dock a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg,
.form-submit:hover svg,
.form-next:hover svg,
.mobile-dock a:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: var(--orange-deep);
  box-shadow: 0 10px 24px rgba(184, 63, 35, 0.17);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #96341f;
  box-shadow: 0 13px 30px rgba(184, 63, 35, 0.22);
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.54);
}

.button-quiet:hover {
  transform: translateY(-2px);
  border-color: #8d9b94;
  background: #fff;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 12px;
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-microcopy svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.product-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.product-accent {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -32px;
  width: 58%;
  height: calc(100% + 48px);
  border-radius: 22px 0 0 22px;
  background: var(--orange);
}

.desktop-product {
  overflow: hidden;
  border: 1px solid #cdd6d0;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.app-topbar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.app-title,
.app-status {
  display: flex;
  align-items: center;
}

.app-title {
  gap: 9px;
  font-size: 12px;
}

.app-title > span:last-child {
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.app-symbol {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: flex-end;
  gap: 2px;
  padding: 5px;
  border-radius: 7px;
  background: var(--ink);
}

.app-symbol i {
  width: 4px;
  border-radius: 1px;
  background: #fff;
}

.app-symbol i:nth-child(1) {
  height: 7px;
}

.app-symbol i:nth-child(2) {
  height: 12px;
  background: var(--orange);
}

.app-symbol i:nth-child(3) {
  height: 9px;
}

.app-status {
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.app-status i,
.live-badge i,
.app-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 122, 85, 0.12);
}

.app-filters {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.filter-chip,
.filter-more {
  min-height: 34px;
  border: 1px solid var(--line);
  color: #4f5f58;
  background: #fff;
  font-size: 10px;
  font-weight: 600;
}

.filter-chip {
  padding: 7px 10px;
  border-radius: 8px;
}

.filter-chip.is-active {
  border-color: #c4d7ca;
  color: #265a40;
  background: #edf7f0;
}

.filter-more {
  display: grid;
  width: 34px;
  place-items: center;
  padding: 0;
  border-radius: 8px;
}

.filter-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.app-body {
  display: grid;
  min-height: 454px;
  grid-template-columns: 40% 60%;
}

.signal-feed {
  position: relative;
  z-index: 3;
  padding: 15px 13px;
  border-right: 1px solid var(--line);
  background: #f8faf8;
}

.feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.feed-heading strong {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange-deep);
  font-size: 10px;
}

.signal-item {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  box-shadow: none;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.signal-item:hover,
.signal-item.is-selected {
  transform: translateY(-1px);
  border-color: rgba(216, 85, 50, 0.55);
  box-shadow: 0 8px 20px rgba(27, 43, 37, 0.07);
}

.signal-item.is-selected {
  box-shadow: inset 3px 0 0 var(--orange), 0 8px 20px rgba(27, 43, 37, 0.07);
}

.signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.signal-top small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.signal-top i,
.phase-badge {
  padding: 4px 6px;
  border-radius: 5px;
  color: #8f3d25;
  background: var(--orange-pale);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signal-top i.status-approved {
  color: #286548;
  background: var(--green-pale);
}

.signal-item > strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.25;
}

.signal-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
}

.signal-location svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--orange-deep);
  stroke-width: 1.5;
}

.signal-match {
  display: block;
  padding-top: 8px;
  border-top: 1px solid #edf0ed;
  color: #5b6b64;
  font-size: 9px;
}

.map-view {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #e4ebe5;
}

.parcel-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.parcel {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(56, 83, 71, 0.22);
  stroke-width: 1.2;
}

.road,
.water {
  fill: none;
  stroke: #fff;
  stroke-width: 16;
  stroke-linecap: round;
}

.road-small {
  stroke-width: 7;
}

.water {
  stroke: #c4d8de;
  stroke-width: 12;
}

.map-label {
  position: absolute;
  color: rgba(35, 60, 50, 0.55);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.label-zwolle {
  top: 56%;
  left: 28%;
}

.label-kampen {
  top: 19%;
  left: 18%;
}

.label-dalfsen {
  top: 23%;
  right: 12%;
}

.map-pin {
  position: absolute;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #607a6e;
  box-shadow: 0 4px 12px rgba(31, 53, 43, 0.18);
  pointer-events: none;
}

.map-pin span {
  font-family: var(--mono);
  font-size: 8px;
}

.map-pin.is-selected {
  width: 34px;
  height: 34px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(216, 85, 50, 0.15), 0 7px 15px rgba(31, 53, 43, 0.2);
}

.pin-one {
  top: 44%;
  left: 38%;
}

.pin-two {
  top: 25%;
  left: 18%;
}

.pin-three {
  top: 29%;
  right: 16%;
}

.map-card {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 15px;
  border: 1px solid rgba(39, 58, 50, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}

.map-card-head span {
  padding: 4px 6px;
  border-radius: 5px;
  color: #8f3d25;
  background: var(--orange-pale);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-card-head small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.map-card h3 {
  margin-bottom: 2px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.map-card > p {
  color: var(--muted);
  font-size: 10px;
}

.map-card dl {
  display: grid;
  gap: 9px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.map-card dt {
  margin-bottom: 2px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.map-card dd {
  font-size: 10px;
  font-weight: 600;
}

.source-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 700;
}

.source-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.app-footer {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
}

.app-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mobile-product {
  display: none;
}

.trust-rail {
  color: #edf3ef;
  background: var(--night);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-row > div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-row > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-row svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: #f18a68;
  stroke-width: 1.6;
}

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

.trust-row strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.trust-row small {
  color: #9fb0a8;
  font-size: 10px;
}

.section-intro {
  display: grid;
  max-width: 720px;
  margin-bottom: 62px;
}

.section-intro h2,
.example-copy h2,
.pricing-head h2,
.faq-heading h2,
.trial-copy h2 {
  font-family: var(--display);
  font-size: clamp(44px, 4.6vw, 62px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1;
  text-wrap: balance;
}

.section-intro > p:last-child {
  max-width: 590px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid li {
  position: relative;
  min-height: 325px;
  padding: 27px 30px 30px;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 44px;
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 10px;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 27px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--ink);
  background: var(--surface);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.process-grid p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
}

.example {
  background: var(--surface);
}

.example-layout {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: minmax(340px, 0.84fr) minmax(480px, 1.16fr);
}

.example-copy {
  max-width: 480px;
}

.example-copy > p:not(.section-kicker) {
  margin: 22px 0 29px;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.check-list li {
  display: flex;
  min-height: 55px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  color: #3c4b45;
  font-size: 14px;
}

.check-list span {
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 9px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 700;
}

.project-dossier {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.dossier-header,
.dossier-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-inline: 23px;
}

.dossier-header {
  min-height: 59px;
  border-bottom: 1px solid var(--line);
  background: #fafbfa;
  font-size: 11px;
}

.dossier-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dossier-header > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.dossier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(216, 85, 50, 0.12);
}

.dossier-main {
  padding: 32px;
}

.phase-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 8px;
  font-size: 9px;
}

.dossier-main h3 {
  max-width: 430px;
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 37px;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dossier-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.dossier-location svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--orange-deep);
  stroke-width: 1.5;
}

.dossier-facts {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.dossier-facts > div {
  min-height: 88px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dossier-facts dt {
  margin-bottom: 6px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.dossier-facts dd {
  font-size: 13px;
  font-weight: 700;
}

.match-reason {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 15px;
  border-radius: 11px;
  color: #31533f;
  background: var(--green-pale);
}

.match-reason svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.match-reason span {
  font-size: 12px;
  line-height: 1.45;
}

.match-reason strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}

.dossier-source {
  min-height: 66px;
  border-top: 1px solid var(--line);
  background: #fafbfa;
}

.dossier-source > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.dossier-source > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.dossier-source .source-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.dossier-source .source-availability svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.audience {
  color: #eef3f0;
  background: var(--night);
}

.section-intro.compact {
  max-width: 790px;
}

.audience .section-kicker,
.section-kicker.light {
  color: #f08b6b;
}

.audience .section-intro > p:last-child {
  max-width: 620px;
  color: #a8b8b0;
}

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

.audience-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: #15201c;
}

.audience-photo {
  height: 332px;
  overflow: hidden;
  background: #24312c;
}

.audience-photo picture,
.audience-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.audience-photo img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.audience-photo-aanbouw img {
  object-position: 50% 53%;
}

.audience-photo-dakkapel img {
  object-position: 37% 50%;
}

.audience-photo-dakrenovatie img {
  object-position: 43% 50%;
}

.audience-card-copy {
  display: grid;
  min-height: 118px;
  align-content: start;
  gap: 15px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  grid-template-columns: auto 1fr;
}

.audience-index {
  display: block;
  margin-top: 4px;
  color: #8fa199;
  font-family: var(--mono);
  font-size: 10px;
}

.audience-card-copy strong {
  display: block;
  color: #f5f8f6;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.audience-card-copy small {
  display: block;
  margin-top: 9px;
  color: #a8b8b0;
  font-size: 13px;
  line-height: 1.45;
}

.audience-note {
  margin-top: 16px;
  color: #83958c;
  font-size: 11px;
  line-height: 1.5;
}

.pricing {
  background: #fff;
}

.pricing-head {
  display: grid;
  align-items: end;
  gap: 40px;
  margin-bottom: 59px;
  grid-template-columns: 1fr 330px;
}

.pricing-head > p {
  color: var(--muted);
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  gap: 17px;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  flex-direction: column;
}

.price-card.is-featured {
  border: 2px solid var(--orange-deep);
  box-shadow: var(--shadow-soft);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  padding: 6px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--orange-deep);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-top span,
.price-top small {
  display: block;
}

.price-top span {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.price-top small {
  color: var(--muted);
  font-size: 12px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 33px 0 25px;
}

.price strong {
  font-family: var(--display);
  font-size: 47px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 11px;
}

.price-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: #46564f;
  font-size: 13px;
}

.price-card li::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.price-card > a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
}

.price-card.is-featured > a {
  border-color: var(--orange-deep);
  color: #fff;
  background: var(--orange-deep);
}

.faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: 0.68fr 1.32fr;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.faq-heading a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: var(--ink);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 630px;
  padding: 0 64px 25px 0;
  color: var(--muted);
  font-size: 15px;
}

.trial {
  padding-block: 105px;
  color: #edf3ef;
  background: var(--night);
}

.trial-layout {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 135px);
  grid-template-columns: minmax(340px, 0.9fr) minmax(490px, 1.1fr);
}

.trial-copy {
  position: sticky;
  top: 130px;
  max-width: 520px;
  padding-top: 20px;
}

.trial-copy > p:not(.section-kicker) {
  margin-top: 20px;
  color: #a9b8b1;
  font-size: 17px;
}

.trial-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 29px;
  list-style: none;
}

.trial-copy li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c5d0ca;
  font-size: 12px;
}

.trial-copy li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ef8a69;
  stroke-width: 2;
}

.trial-form {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.17);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
  color: var(--ink);
}

.form-head > div {
  display: grid;
  gap: 4px;
}

.form-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.form-head small,
.form-head > strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-head > strong {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #43534b;
  background: #f7f9f7;
}

.form-progress {
  display: grid;
  gap: 6px;
  margin-bottom: 25px;
  grid-template-columns: 1fr 1fr;
}

.form-progress span {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7ece8;
  transition: background-color 180ms ease;
}

.form-progress span.is-active {
  background: var(--orange-deep);
}

.form-step {
  color: var(--ink);
}

.form-step[hidden],
.form-success[hidden],
[data-trial-form] .form-head[hidden],
[data-trial-form] .form-progress[hidden],
[data-other-trade-field][hidden],
.form-alert[hidden],
.field-error[hidden] {
  display: none !important;
}

.form-alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid #e5b6aa;
  border-radius: 10px;
  color: #7f2818;
  background: #fff3ef;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.form-alert a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field > span {
  color: #384a42;
  font-size: 12px;
  font-weight: 700;
}

.field > span small {
  color: #66736d;
  font-size: 10px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fafbfa;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #5f6b65;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(216, 85, 50, 0.12);
}

.field.has-error input,
.field.has-error textarea,
.choice-group.has-error .plan-options,
.choice-group.has-error .trade-options,
.consent-field.has-error {
  border-color: #b63f26;
}

.field-help {
  margin: 0;
  color: #65736c;
  font-size: 10px;
  line-height: 1.45;
}

.choice-group {
  min-width: 0;
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 5px;
  padding: 0;
  color: #384a42;
  font-size: 12px;
  font-weight: 700;
}

.choice-group > .field-help {
  margin-bottom: 10px;
}

.plan-options {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid transparent;
  border-radius: 12px;
}

.plan-option,
.choice-chip {
  position: relative;
  display: block;
  cursor: pointer;
}

.plan-option input,
.choice-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.plan-option > span {
  position: relative;
  display: grid;
  min-height: 66px;
  align-content: center;
  gap: 4px;
  padding: 12px 13px 12px 42px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: #fafbfa;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.plan-option > span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border: 1.5px solid #8b9891;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.plan-option strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
}

.plan-option strong i {
  padding: 3px 5px;
  border-radius: 4px;
  color: #8e321d;
  background: var(--orange-pale);
  font-family: var(--sans);
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-option small {
  color: #65736c;
  font-size: 10px;
}

.plan-option input:checked + span {
  border-color: var(--orange);
  background: #fff8f5;
  box-shadow: 0 0 0 3px rgba(216, 85, 50, 0.1);
}

.plan-option input:checked + span::before {
  border-color: var(--orange-deep);
  background: var(--orange-deep);
}

.plan-option input:focus-visible + span,
.choice-chip input:focus-visible + span {
  outline: 3px solid rgba(216, 85, 50, 0.35);
  outline-offset: 2px;
}

.plan-option-advice {
  grid-column: 1 / -1;
}

.plan-option-advice > span {
  min-height: 55px;
}

.group-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.choice-counter {
  flex: 0 0 auto;
  color: #526159;
  font-family: var(--mono);
  font-size: 9px;
}

.trade-options {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid transparent;
  border-radius: 12px;
}

.choice-chip > span {
  position: relative;
  display: flex;
  min-height: 47px;
  align-items: center;
  padding: 9px 10px 9px 37px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: #34463e;
  background: #fafbfa;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.choice-chip > span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border: 1.5px solid #8a9790;
  border-radius: 4px;
  content: "";
  background: #fff;
}

.choice-chip > span::after {
  position: absolute;
  top: calc(50% - 1px);
  left: 16px;
  width: 8px;
  height: 4px;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
}

.choice-chip input:checked + span {
  border-color: #59906f;
  color: #214d36;
  background: #eff7f1;
  box-shadow: 0 0 0 2px rgba(45, 122, 85, 0.08);
}

.choice-chip input:checked + span::before {
  border-color: var(--green);
  background: var(--green);
}

.choice-chip input:checked + span::after {
  opacity: 1;
}

.field-error {
  margin: 7px 0 0;
  color: #9a321e;
  font-size: 10px;
  font-weight: 600;
}

.other-trade-field {
  margin-top: -5px;
}

.selection-summary {
  display: grid;
  gap: 4px 11px;
  margin-bottom: 20px;
  padding: 12px 13px;
  border: 1px solid #cfe0d5;
  border-radius: 10px;
  color: #365347;
  background: #f1f7f3;
  grid-template-columns: 1fr auto;
}

.selection-summary > span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.selection-summary p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  grid-column: 1;
}

.selection-summary button {
  min-height: 40px;
  padding: 7px;
  border: 0;
  color: #315e45;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.consent-field {
  display: grid;
  align-items: flex-start;
  gap: 10px;
  margin: 1px 0 18px;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #536159;
  font-size: 10px;
  line-height: 1.55;
  grid-template-columns: 20px 1fr;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.consent-field a,
.form-note a,
.success-help a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-field .field-error {
  margin-top: 0;
  grid-column: 2;
}

.form-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: auto 1fr;
}

.form-actions-next {
  grid-template-columns: 1fr;
}

.form-next,
.form-back,
.form-submit {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 15px;
  border: 0;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease;
}

.form-next,
.form-submit {
  color: #fff;
  background: var(--orange-deep);
}

.form-back {
  width: auto;
  min-width: 105px;
  border: 1px solid var(--line-strong);
  color: #415149;
  background: #fff;
}

.form-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.form-next:hover,
.form-submit:hover {
  transform: translateY(-1px);
  background: #96341f;
}

.form-back:hover {
  background: #f4f7f4;
}

.form-back[disabled] {
  cursor: wait;
  opacity: 0.58;
}

.form-next[disabled],
.form-submit[disabled] {
  cursor: wait;
  transform: none;
  opacity: 0.74;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 12px 0 0;
  color: #5f6d66;
  font-size: 10px;
  line-height: 1.45;
}

.form-note svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.form-success {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: center;
  padding: 22px 12px;
  color: var(--ink);
  text-align: center;
}

.form-success:focus-visible {
  outline: 2px solid rgba(45, 122, 85, 0.28);
  outline-offset: -4px;
  border-radius: 12px;
}

.success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 9px var(--green-pale);
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.success-kicker {
  margin: 0 0 7px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-success h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.045em;
}

.form-success > p:not(.success-kicker):not(.success-help) {
  max-width: 440px;
  margin: 0;
  color: #596760;
  font-size: 13px;
  line-height: 1.55;
}

.form-success ol {
  display: grid;
  width: min(430px, 100%);
  gap: 8px;
  margin: 24px 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.form-success li {
  display: grid;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbfa;
  grid-template-columns: 30px 1fr;
}

.form-success li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #28583d;
  background: var(--green-pale);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.form-success li div {
  display: grid;
  gap: 2px;
}

.form-success li strong {
  font-size: 11px;
}

.form-success li small {
  color: #65736c;
  font-size: 9px;
}

.success-help {
  margin: 0;
  color: #68756f;
  font-size: 9px;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding-top: 68px;
  color: #c5d0ca;
  background: #0b1310;
}

.footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 58px;
  grid-template-columns: 1.6fr 0.72fr 0.72fr 0.9fr;
}

.brand-light {
  color: #fff;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 15px;
  color: #81928a;
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-links a,
.footer-contact a,
.footer-contact small {
  color: #8fa198;
  font-size: 12px;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #677970;
  font-size: 10px;
}

.mobile-dock {
  display: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-layout {
    gap: 42px;
    grid-template-columns: minmax(330px, 0.75fr) minmax(540px, 1.25fr);
  }

  .hero h1 {
    font-size: 62px;
  }

  .app-body {
    min-height: 430px;
  }

  .signal-item {
    padding: 11px;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-layout,
  .example-layout,
  .trial-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(58px, 8vw, 76px);
  }

  .hero-lede {
    max-width: 610px;
  }

  .product-stage {
    width: min(800px, 100%);
  }

  .example-copy {
    max-width: 620px;
  }

  .project-dossier {
    width: min(690px, 100%);
  }

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

  .audience-card-feature {
    grid-column: 1 / -1;
  }

  .audience-card-feature .audience-photo {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .audience-card:not(.audience-card-feature) .audience-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .trial-copy {
    position: static;
    max-width: 680px;
    padding-top: 0;
  }

  .trial-form {
    width: min(680px, 100%);
  }

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

  .footer-contact {
    grid-column: 2;
  }
}

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

  body {
    padding-bottom: 0;
  }

  body.has-mobile-dock .header-cta {
    display: none;
  }

  body.has-submitted .header-cta {
    display: none;
  }

  [id] {
    scroll-margin-top: 0;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 76px;
  }

  .site-header {
    background: rgba(244, 246, 242, 0.97);
    backdrop-filter: none;
  }

  .header-row {
    min-height: 66px;
  }

  .brand {
    min-height: 44px;
    font-size: 19px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 48px 0 68px;
  }

  .hero::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52%;
    opacity: 0.32;
    mask-image: linear-gradient(to bottom, transparent, #000 34%);
  }

  .hero-layout {
    gap: 45px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(43px, 12.4vw, 54px);
    letter-spacing: -0.057em;
    line-height: 0.98;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
  }

  .hero-actions > * {
    width: 100%;
  }

  .button {
    min-height: 54px;
    font-size: 14px;
  }

  .button-quiet {
    border-color: transparent;
    background: transparent;
  }

  .hero-microcopy {
    display: grid;
    gap: 6px;
    margin-top: 2px;
    font-size: 11px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-microcopy span:last-child {
    grid-column: 1 / -1;
  }

  .product-accent {
    top: -13px;
    right: -16px;
    width: 57%;
    height: calc(100% + 26px);
    border-radius: 16px 0 0 16px;
  }

  .desktop-product {
    display: none;
  }

  .mobile-product {
    display: block;
    overflow: hidden;
    border: 1px solid #cfd8d2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(25, 42, 35, 0.14);
  }

  .mobile-product-head {
    display: flex;
    min-height: 59px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 15px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-product-head > div {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .mobile-product-head strong {
    font-size: 13px;
  }

  .mobile-app-icon {
    position: relative;
    display: block;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: var(--ink);
  }

  .mobile-app-icon::before,
  .mobile-app-icon::after,
  .mobile-app-icon i {
    position: absolute;
    bottom: 6px;
    width: 3px;
    content: "";
    border-radius: 1px;
    background: #fff;
  }

  .mobile-app-icon::before {
    left: 7px;
    height: 7px;
  }

  .mobile-app-icon i {
    left: 12px;
    height: 13px;
    background: var(--orange);
  }

  .mobile-app-icon::after {
    right: 7px;
    height: 9px;
  }

  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-filters {
    display: flex;
    gap: 7px;
    padding: 10px 14px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    background: #fafbfa;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .mobile-filters::-webkit-scrollbar {
    display: none;
  }

  .mobile-filters span {
    flex: 0 0 auto;
    padding: 7px 9px;
    border: 1px solid #c8d8cd;
    border-radius: 8px;
    color: #315a42;
    background: #eff7f1;
    font-size: 10px;
    font-weight: 600;
    scroll-snap-align: start;
  }

  .mini-map {
    position: relative;
    min-height: 142px;
    overflow: hidden;
    background: #e3ebe5;
  }

  .mini-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .mini-map svg > path:not(.mini-parcel) {
    fill: none;
    stroke: #fff;
    stroke-width: 8;
    stroke-linecap: round;
  }

  .mini-map .mini-parcel {
    fill: rgba(255, 255, 255, 0.18);
    stroke: rgba(48, 78, 65, 0.2);
    stroke-width: 1;
  }

  .mini-map small {
    position: absolute;
    right: 17px;
    bottom: 12px;
    color: rgba(41, 66, 55, 0.66);
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mini-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #6c8479;
    box-shadow: 0 4px 10px rgba(35, 56, 47, 0.17);
  }

  .mini-pin-main {
    top: 55px;
    left: 41%;
    width: 26px;
    height: 26px;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(216, 85, 50, 0.14);
  }

  .mini-pin-alt {
    top: 29px;
    right: 19%;
  }

  .mobile-signal-list {
    display: grid;
    gap: 9px;
    padding: 12px;
    background: #f7f9f7;
  }

  .mobile-signal-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  .mobile-signal-card.is-new {
    border-color: rgba(216, 85, 50, 0.45);
    box-shadow: inset 3px 0 0 var(--orange);
  }

  .mobile-signal-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
  }

  .mobile-signal-meta span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
  }

  .mobile-signal-meta i {
    padding: 4px 6px;
    border-radius: 5px;
    color: #8f3d25;
    background: var(--orange-pale);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-signal-card h3 {
    margin-bottom: 3px;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -0.03em;
  }

  .mobile-signal-card > p {
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-signal-bottom {
    display: flex;
    min-height: 47px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid var(--line);
  }

  .mobile-signal-bottom > span,
  .mobile-signal-bottom > small {
    color: #53635c;
    font-size: 10px;
  }

  .mobile-signal-bottom button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 6px;
    margin: -9px -8px -8px 0;
    padding: 8px;
    border: 0;
    color: var(--orange-deep);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-signal-bottom button svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .mobile-product-footer {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-product-footer i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row > div,
  .trust-row > div:first-child {
    min-height: 78px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .trust-row > div:last-child {
    border-bottom: 0;
  }

  .trust-row strong {
    font-size: 12px;
  }

  .trust-row small {
    font-size: 10px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .example-copy h2,
  .pricing-head h2,
  .faq-heading h2,
  .trial-copy h2 {
    font-size: clamp(36px, 10.3vw, 44px);
    letter-spacing: -0.048em;
    line-height: 1.02;
  }

  .section-intro > p:last-child,
  .example-copy > p:not(.section-kicker),
  .trial-copy > p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 15px;
  }

  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    display: grid;
    min-height: 0;
    gap: 9px 17px;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 45px 1fr;
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin: 3px 0 0;
    grid-column: 1;
    grid-row: 1;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    margin: 25px 0 0;
    border-radius: 11px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-grid h3,
  .process-grid p {
    grid-column: 2;
  }

  .process-grid h3 {
    margin: 0;
    font-size: 22px;
  }

  .process-grid p {
    font-size: 13px;
  }

  .example-layout {
    gap: 42px;
  }

  .example-copy > p:not(.section-kicker) {
    margin-bottom: 23px;
  }

  .check-list li {
    min-height: 51px;
    font-size: 13px;
  }

  .text-link {
    margin-top: 19px;
    font-size: 13px;
  }

  .project-dossier {
    border-radius: 15px;
  }

  .dossier-header,
  .dossier-source {
    padding-inline: 16px;
  }

  .dossier-header {
    min-height: 54px;
  }

  .dossier-main {
    padding: 20px 16px;
  }

  .dossier-main h3 {
    font-size: 29px;
  }

  .dossier-location {
    align-items: flex-start;
    font-size: 12px;
  }

  .dossier-facts {
    margin-top: 22px;
  }

  .dossier-facts > div {
    min-height: 79px;
    padding: 13px;
  }

  .dossier-facts dt {
    font-size: 8px;
  }

  .dossier-facts dd {
    font-size: 12px;
  }

  .match-reason {
    padding: 13px;
  }

  .dossier-source {
    min-height: 60px;
  }

  .dossier-source > span {
    max-width: 170px;
    font-size: 9px;
  }

  .audience-grid {
    gap: 8px;
  }

  .audience-card {
    border-radius: 14px;
  }

  .audience-card-feature .audience-photo {
    aspect-ratio: 16 / 9;
  }

  .audience-card:not(.audience-card-feature) .audience-photo {
    aspect-ratio: 1;
  }

  .audience-card:not(.audience-card-feature) .audience-card-copy {
    grid-template-columns: 1fr;
  }

  .audience-card-copy {
    min-height: 0;
    gap: 10px;
    padding: 14px;
  }

  .audience-card-feature .audience-card-copy {
    padding: 16px;
  }

  .audience-card-copy strong {
    font-size: 15px;
    letter-spacing: -0.025em;
    line-height: 1.18;
  }

  .audience-card-feature .audience-card-copy strong {
    font-size: 22px;
  }

  .audience-card:not(.audience-card-feature) .audience-index,
  .audience-card:not(.audience-card-feature) .audience-card-copy small {
    display: none;
  }

  .audience-card-copy small {
    margin-top: 6px;
    font-size: 12px;
  }

  .audience-note {
    margin-top: 13px;
    font-size: 10px;
  }

  .pricing-head {
    gap: 17px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }

  .pricing-head > p {
    font-size: 14px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .price-card {
    min-height: 0;
    padding: 22px;
    border-radius: 14px;
  }

  .price {
    margin: 24px 0 18px;
  }

  .price strong {
    font-size: 43px;
  }

  .price-card > a {
    min-height: 50px;
    margin-top: 20px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 17px;
  }

  .faq-list summary span {
    width: 40px;
    height: 40px;
  }

  .faq-list details p {
    padding: 0 0 21px;
    font-size: 14px;
  }

  .trial {
    padding-block: 76px;
  }

  .trial-layout {
    gap: 40px;
  }

  .trial-copy ul {
    display: grid;
    gap: 8px;
    margin-top: 23px;
  }

  .trial-form {
    width: 100%;
    padding: 21px 16px;
    border-radius: 16px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-head {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .form-head h3 {
    font-size: 21px;
  }

  .form-head > strong {
    padding: 6px 8px;
    font-size: 8px;
  }

  .form-progress {
    margin-bottom: 21px;
  }

  .plan-option > span {
    min-height: 64px;
  }

  .trade-options {
    gap: 6px;
  }

  .choice-chip > span {
    min-height: 49px;
    padding-right: 8px;
    padding-left: 35px;
    font-size: 10px;
  }

  .form-actions {
    grid-template-columns: 96px 1fr;
  }

  .form-actions-next {
    grid-template-columns: 1fr;
  }

  .form-back {
    min-width: 0;
    padding-inline: 10px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 55px;
    font-size: 16px;
  }

  .form-note {
    font-size: 10px;
  }

  .form-success {
    min-height: 485px;
    padding-inline: 4px;
  }

  .form-success h3 {
    font-size: 28px;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-grid {
    gap: 33px 24px;
    padding-bottom: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 84px;
    align-items: flex-start;
    justify-content: center;
    padding-block: 20px;
    flex-direction: column;
  }

  .mobile-dock {
    position: fixed;
    z-index: 75;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(70px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(20, 32, 28, 0.1);
    transition: transform 200ms ease;
  }

  .mobile-dock.is-visible {
    transform: translateY(0);
  }

  body.has-submitted .mobile-dock {
    display: none;
  }

  .mobile-dock > div {
    display: grid;
  }

  .mobile-dock strong {
    font-size: 12px;
  }

  .mobile-dock span {
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-dock a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border-radius: 10px;
    color: #fff;
    background: var(--orange-deep);
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-dock a svg {
    width: 15px;
    height: 15px;
  }

}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 32px);
  }

  .header-row {
    gap: 8px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-cta {
    padding-inline: 10px;
    font-size: 10px;
  }

  .plan-options {
    grid-template-columns: 1fr;
  }

  .plan-option-advice {
    grid-column: auto;
  }

  .plan-option > span,
  .plan-option-advice > span {
    min-height: 58px;
  }

  .form-actions,
  .form-actions-next {
    grid-template-columns: 1fr;
  }

  .form-back {
    width: 100%;
  }

  .hero-microcopy {
    grid-template-columns: 1fr;
  }

  .hero-microcopy span:last-child {
    grid-column: auto;
  }

  .dossier-source > span {
    max-width: 145px;
  }
}

@media (max-width: 355px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .dossier-facts {
    grid-template-columns: 1fr;
  }

  .dossier-facts > div {
    min-height: 66px;
  }

  .trade-options,
  .form-actions,
  .form-actions-next {
    grid-template-columns: 1fr;
  }

  .form-back {
    width: 100%;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
