:root {
  --ink: #071523;
  --navy: #082743;
  --blue: #006fd6;
  --blue-strong: #004d9b;
  --sky: #18a8ff;
  --gold: #f5b642;
  --green: #14946b;
  --white: #ffffff;
  --soft: #f4f8fc;
  --soft-2: #eaf3fb;
  --line: #d8e5ef;
  --muted: #637487;
  --shadow: 0 18px 50px rgba(7, 21, 35, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: 112px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: var(--white);
  background: linear-gradient(135deg, #071523 0%, #0a355c 68%, #006fd6 140%);
}

.section__head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section__head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: #8bd7ff;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: inline;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.lead {
  color: #dceeff;
  max-width: 700px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.section__head p,
.muted {
  color: var(--muted);
}

.section--dark .section__head p,
.section--dark .muted {
  color: #cbdff1;
}

.top-strip {
  color: var(--white);
  background: #061a2d;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.top-strip .container > div {
  min-width: 0;
  overflow-wrap: break-word;
}

.top-strip strong {
  color: #9bddff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 229, 239, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #19324b;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 12px 0;
}

.site-nav a:hover {
  color: var(--blue);
}

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

.phone {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: 138px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
}

.phone span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 111, 214, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 111, 214, 0.26);
}

.btn--secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.btn--secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn--wide {
  width: 100%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (min-width: 1061px) {
  .nav-toggle {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  color: var(--white);
  overflow: hidden;
  background: #071523;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 21, 35, 0.92) 0%, rgba(7, 21, 35, 0.78) 33%, rgba(7, 21, 35, 0.34) 60%, rgba(7, 21, 35, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 21, 35, 0.56) 0%, rgba(7, 21, 35, 0.08) 42%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: end;
  gap: 38px;
  min-height: calc(100vh - 124px);
  padding: 76px 0 34px;
}

.hero__content {
  padding-bottom: 32px;
}

.hero__actions,
.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: start;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
}

.hero__badges .badge:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #eaf7ff;
  background: rgba(0, 111, 214, 0.28);
  border: 1px solid rgba(139, 215, 255, 0.36);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.badge--light {
  color: var(--blue-strong);
  background: #e9f6ff;
  border-color: #caeafd;
}

.hero__actions {
  margin-top: 28px;
}

.hero__metrics {
  margin-top: 26px;
  gap: 18px;
}

.metric {
  min-width: 132px;
}

.metric strong {
  display: block;
  font-size: 1.38rem;
  line-height: 1;
}

.metric span {
  display: block;
  color: #cfe6f7;
  font-size: 0.88rem;
}

.quick-form {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-form h2,
.quick-form h3 {
  margin: 0 0 6px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.quick-form p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 10px;
}

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

.quick-form .field--wide,
.quick-form .btn--wide,
.quick-form .form-note,
.quick-form .form-notice {
  grid-column: 1 / -1;
}

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

.field label {
  color: #203a53;
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cddbe7;
  border-radius: var(--radius);
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 111, 214, 0.12);
}

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

.form-note,
.form-notice {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-notice {
  padding: 10px 12px;
  color: #07543e;
  background: #e8fff6;
  border: 1px solid #bdeedb;
  border-radius: var(--radius);
  font-weight: 800;
}

.trust-row {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: grid;
  gap: 4px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--ink);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#offerte {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(7, 21, 35, 0.05);
}

.service-card--image {
  position: relative;
  display: block;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  text-align: left;
}

.service-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-card--image::after {
  position: absolute;
  inset: 28% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 21, 35, 0.96), rgba(7, 21, 35, 0.58) 58%, rgba(7, 21, 35, 0));
}

.service-card--image:hover img {
  opacity: 0.96;
  transform: scale(1.025);
}

.service-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: none;
  padding: 24px;
}

.service-card__body h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.35rem;
}

.service-card p {
  color: #dceeff;
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.checklist li {
  position: relative;
  padding-left: 24px;
  color: #273f57;
}

.section--dark .checklist li {
  color: #e3eef8;
}

.checklist li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.checklist li::after {
  position: absolute;
  left: 5px;
  top: 0.52em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 36px;
  align-items: center;
}

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.split__media--compact {
  width: 100%;
  max-width: 340px;
  justify-self: center;
  background: #061a2d;
}

.split__media--compact img {
  height: 235px;
  aspect-ratio: auto;
}

.split__media--compact .mini-panel {
  position: static;
  width: 100%;
  padding: 14px 16px;
  background: #061a2d;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.split__media--compact .mini-panel strong {
  font-size: 1.25rem;
}

.partner-section {
  background: #edf5fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 50px;
}

.partner-feature__media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(8, 39, 67, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-feature__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.partner-feature__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  max-width: calc(100% - 32px);
  padding: 13px 16px;
  color: var(--white);
  background: rgba(7, 21, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.partner-feature__badge strong {
  font-size: 1rem;
}

.partner-feature__badge span {
  color: #cdeaff;
  font-size: 0.88rem;
}

.partner-feature__content h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.08;
}

.partner-feature__content .lead {
  margin-bottom: 22px;
  color: var(--muted);
}

.partner-reasons {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.partner-reasons span {
  position: relative;
  padding: 11px 14px 11px 38px;
  color: var(--navy);
  font-weight: 750;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.partner-reasons span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.partner-route {
  display: grid;
  gap: 3px;
  margin-bottom: 22px;
  padding: 15px 17px;
  background: #dceefb;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.partner-route strong {
  color: var(--navy);
}

.partner-route span {
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-feature__button {
  width: fit-content;
}

.mini-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  color: var(--white);
  background: rgba(7, 21, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.mini-panel strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.mini-panel span {
  color: #cdeaff;
  font-size: 0.9rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.benefit {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.benefit strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.benefit span {
  color: #cbdff1;
  font-size: 0.92rem;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calculator__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.range-row output {
  min-width: 72px;
  color: var(--blue-strong);
  font-weight: 900;
  text-align: right;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.calculator__result {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(160deg, #071523, #0a4d83);
  border-radius: var(--radius);
}

.result-label {
  margin: 0;
  color: #bde7ff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-price {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-meta span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  counter-increment: steps;
  content: counter(steps);
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--ink);
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.86;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(7, 21, 35, 0.92), rgba(7, 21, 35, 0));
  content: "";
}

.gallery-card__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}

.gallery-card__caption p {
  margin-bottom: 0;
  color: #dceeff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.area {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.stars {
  color: #d89100;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review p {
  color: #273f57;
}

.review strong {
  display: block;
  color: var(--ink);
}

.review span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  text-align: left;
  font-weight: 900;
}

.faq button::after {
  width: 24px;
  height: 24px;
  color: var(--blue);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.faq button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(7, 21, 35, 0.05);
}

.scan-section {
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
}

.scan-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 36px;
}

.scan-intro {
  display: grid;
  gap: 18px;
}

.scan-intro h2,
.scan-intro p,
.scan-intro .checklist {
  margin-bottom: 0;
}

.scan-intro__image {
  width: min(100%, 360px);
  margin-bottom: 6px;
  box-shadow: 0 12px 34px rgba(7, 21, 35, 0.1);
}

.scan-intro__image img {
  height: 218px;
  aspect-ratio: auto;
}

.scan-promise {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  color: #17354f;
  background: #e8f6ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.scan-promise span {
  color: var(--muted);
  font-size: 0.9rem;
}

.scan-form {
  display: grid;
  gap: 20px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scan-form h3 {
  margin: 6px 0;
  font-size: 1.65rem;
}

.scan-form > div > p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1.05rem;
}

.footer {
  padding-bottom: 88px;
  color: #dceeff;
  background: #061a2d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 52px 0;
}

.footer-logo-frame {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 6px;
}

.footer-logo {
  width: 230px;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  height: auto;
}

.footer h2,
.footer h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer p,
.footer a {
  color: #b8cde0;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9bb6cc;
  font-size: 0.9rem;
}

.thanks-body {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 21, 35, 0.97), rgba(0, 77, 155, 0.74)),
    url("images/hero-schilder-rotterdam.jpg") center / cover fixed;
}

.thanks-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.thanks-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.thanks-header img {
  width: 150px;
  height: auto;
}

.thanks-page {
  display: grid;
  min-height: calc(100svh - 85px);
  padding: 72px 0;
}

.thanks-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.thanks-intro h1 {
  max-width: 720px;
  margin: 14px 0 20px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.thanks-intro .eyebrow {
  color: #8bd7ff;
}

.thanks-intro p {
  max-width: 700px;
  color: #dceeff;
  font-size: 1.15rem;
}

.thanks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
}

.thanks-next {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-steps {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.thanks-steps div {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.thanks-steps div:last-child {
  border-bottom: 0;
}

.thanks-steps span,
.thanks-contact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.thanks-contact {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 15px 16px;
  background: var(--soft-2);
  border-left: 4px solid var(--blue);
}

.thanks-contact a {
  color: var(--blue-strong);
  font-weight: 900;
}

.scan-result-page {
  background: var(--white);
}

.result-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.result-header__inner,
.result-header__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-header__inner {
  min-height: 82px;
}

.result-header__actions .btn--secondary {
  color: var(--ink);
  border-color: var(--line);
}

.result-main h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
}

.result-hero {
  padding: 88px 0 64px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 21, 35, 0.98), rgba(0, 79, 155, 0.86)),
    url("images/hero-schilder-rotterdam.jpg") center / cover;
}

.result-hero .eyebrow,
.result-section--dark .eyebrow,
.result-cta .eyebrow {
  color: #8bd7ff;
}

.result-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 40px;
}

.result-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d7eafb;
  font-size: 1.08rem;
}

.priority-card {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.priority-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.priority-card strong {
  display: block;
  margin: 8px 0;
  color: var(--blue-strong);
  font-size: 1.6rem;
}

.priority-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.result-section {
  padding: 76px 0;
}

.result-section--soft {
  background: var(--soft);
}

.result-section--dark {
  color: var(--white);
  background: #061a2d;
}

.result-section__head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

.result-card-grid,
.roadmap-grid,
.result-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-action,
.roadmap-card,
.guide-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-action {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.result-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.result-action p,
.guide-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.result-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.guide-panel h2,
.result-section--dark h2 {
  margin: 8px 0 22px;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.roadmap-card h3 {
  color: var(--blue-strong);
}

.roadmap-card ul,
.result-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.roadmap-card li {
  color: var(--muted);
}

.result-list li {
  color: #d9eaf8;
}

.result-list--dark li {
  color: #273f57;
}

.result-detail-grid {
  align-items: start;
}

.result-cta {
  padding: 52px 0;
  color: var(--white);
  background: linear-gradient(110deg, #004d9b, #006fd6);
}

.result-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.result-cta h2 {
  margin: 7px 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.result-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: #dceeff;
}

.result-cta .btn {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.result-empty {
  display: grid;
  gap: 20px;
  align-content: center;
  min-height: calc(100svh - 82px);
}

.result-empty p {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 24px), 780px);
  padding: 10px;
  color: var(--white);
  background: rgba(7, 21, 35, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 16px);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-cta-visible .sticky-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sticky-cta-suppressed .sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-cta__text {
  flex: 1;
  min-width: 0;
  padding-left: 8px;
  font-weight: 850;
}

.sticky-cta__text span {
  display: block;
  color: #bde7ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 36px), 820px);
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.cookie-banner > * {
  min-width: 0;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}

.cookie-actions .btn--secondary {
  color: var(--ink);
  border-color: var(--line);
}

.cookie-open .sticky-cta {
  display: none;
}

@media (max-width: 1060px) {
  .header-inner {
    position: relative;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
    min-height: 72px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: flex !important;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    display: none;
    font-size: 0.95rem;
  }

  .nav-open .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 50;
    display: grid;
    gap: 0;
    padding: 8px 14px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .quick-form {
    max-width: 620px;
  }

  .service-grid,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row__grid,
  .benefit-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calculator,
  .contact-grid,
  .split,
  .scan-layout,
  .result-hero__inner,
  .thanks-layout {
    grid-template-columns: 1fr;
  }

  .thanks-layout {
    gap: 32px;
  }

  .scan-intro__image {
    width: min(100%, 420px);
  }

  .partner-feature {
    grid-template-columns: 1fr;
  }

  .partner-feature__media {
    width: min(100%, 680px);
  }

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

  .result-card-grid,
  .roadmap-grid,
  .result-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 86px;
  }

  .result-header {
    position: static;
  }

  .thanks-header__inner {
    min-height: 70px;
  }

  .thanks-header img {
    width: 112px;
  }

  .thanks-header .btn {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .thanks-page {
    min-height: calc(100svh - 70px);
    padding: 44px 0;
  }

  .thanks-intro h1 {
    font-size: 2.55rem;
  }

  .thanks-intro .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .thanks-next {
    padding: 22px;
  }

  .top-strip .container {
    min-height: 34px;
    padding: 7px 0;
  }

  .top-strip .container > div:last-child {
    display: none;
  }

  .top-strip {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 118px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: flex !important;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 21, 35, 0.94), rgba(7, 21, 35, 0.72)),
      linear-gradient(0deg, rgba(7, 21, 35, 0.76), rgba(7, 21, 35, 0.16));
  }

  .hero__image {
    object-position: 63% center;
  }

  .hero__inner {
    min-height: auto;
    padding: 54px 0 30px;
  }

  .hero__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 360px);
  }

  .hero__badges .badge {
    justify-content: center;
    padding-inline: 10px;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  .hero-title span {
    display: block;
  }

  .hero .lead {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero .hero__actions {
    align-items: stretch;
  }

  .hero .hero__actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 62px 0;
  }

  .calculator__controls,
  .form-row,
  .quick-form .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-feature {
    gap: 28px;
  }

  .partner-feature__media img {
    height: 250px;
  }

  .partner-feature__badge {
    position: static;
    max-width: none;
    border: 0;
    border-radius: 0;
  }

  .partner-feature__content h2 {
    font-size: 2rem;
  }

  .partner-feature__button {
    width: 100%;
  }

  .trust-row__grid,
  .service-grid,
  .benefit-grid,
  .process,
  .gallery,
  .area-grid,
  .reviews,
  .footer__grid,
  .result-card-grid,
  .roadmap-grid,
  .result-detail-grid,
  .result-two-column,
  .result-cta__inner {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .gallery-card:first-child {
    grid-row: auto;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 260px;
  }

  .service-card--image {
    min-height: 285px;
    padding: 0;
  }

  .service-card--image img {
    width: 100%;
    height: 100%;
  }

  .service-card__body {
    padding: 20px;
  }

  .split__media--compact {
    max-width: 310px;
  }

  .split__media--compact img {
    height: 214px;
  }

  .scan-intro__image img {
    height: 200px;
  }

  .scan-form {
    padding: 20px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    align-items: stretch;
    flex-direction: row;
    bottom: 10px;
    width: auto;
    gap: 8px;
    padding: 8px;
    transform: translateY(16px);
  }

  .sticky-cta-visible .sticky-cta {
    transform: none;
  }

  .sticky-cta__text {
    display: none;
  }

  .sticky-cta .btn {
    flex: 1 1 0;
    width: auto;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .cookie-banner {
    left: 12px;
    right: auto;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    max-width: none;
  }

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

  .cookie-actions .btn {
    max-width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.82rem;
    white-space: normal;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .result-header__inner,
  .result-header__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .result-header__inner {
    padding: 12px 0;
  }

  .result-header__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .result-header__actions .btn {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .result-hero {
    padding: 58px 0 44px;
  }

  .result-section {
    padding: 58px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .result-header,
  .result-cta {
    display: none;
  }

  .result-section,
  .result-hero {
    padding: 28px 0;
    color: #000;
    background: #fff;
  }

  .result-hero p,
  .result-list li {
    color: #222;
  }

  .result-action,
  .roadmap-card,
  .guide-panel,
  .priority-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
