:root {
  --indigo: #2b2d6e;
  --indigoDiep: #212253;
  --indigoDonker: #16173c;
  --vlak: #34367e;
  --oranje: #f39222;
  --oranjeDiep: #d0740d;
  --wit: #ffffff;
  --ijs: #eef0f7;
  --tekstOpDonker: rgba(255, 255, 255, 0.85);
  --tekstZacht: rgba(255, 255, 255, 0.6);
  --lijnOpDonker: rgba(255, 255, 255, 0.14);
  --schaduw: 0 28px 56px -28px rgba(10, 11, 40, 0.8);
  --displayFont: "Archivo Black", sans-serif;
  --bodyFont: "Archivo", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bodyFont);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #2a2b45;
  background: var(--ijs);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--displayFont);
  font-weight: 400;
  line-height: 1.05;
  color: var(--indigo);
  text-wrap: balance;
}

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--indigoDonker) 90%, transparent);
  backdrop-filter: blur(10px);
}

.wordmark {
  font-family: var(--displayFont);
  font-size: 1.15rem;
  color: var(--wit);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.siteNav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.siteNav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tekstOpDonker);
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
}

.siteNav a:hover {
  border-bottom-color: var(--oranje);
}

.callButton {
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--wit);
  background: var(--oranje);
  padding: 0.55rem 1.1rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.callButton:hover {
  background: var(--oranjeDiep);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(85vh, 44rem);
  overflow: hidden;
  background: var(--indigoDonker);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(43, 45, 110, 0.35) 1px, transparent 1.5px),
    linear-gradient(95deg, rgba(17, 18, 48, 0.85) 25%, rgba(17, 18, 48, 0.3) 70%);
  background-size: 9px 9px, auto;
}

.heroInner {
  position: relative;
  width: 100%;
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.heroText {
  max-width: 36rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  color: var(--wit);
  margin-bottom: 1.25rem;
}

.heroLead {
  color: var(--tekstOpDonker);
  margin-bottom: 1.75rem;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.buttonPrimary {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 0.25rem;
  background: var(--oranje);
  color: var(--wit);
  transition: background 0.15s ease;
}

.buttonPrimary:hover {
  background: var(--oranjeDiep);
}

.buttonQuiet {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 0.25rem;
  border: 1px solid var(--lijnOpDonker);
  color: var(--wit);
  transition: background 0.15s ease;
}

.buttonQuiet:hover {
  background: rgba(255, 255, 255, 0.08);
}

.heroAlt {
  color: var(--tekstOpDonker);
}

.heroAlt a {
  color: var(--wit);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.heroNote {
  font-size: 0.9rem;
  color: var(--tekstZacht);
}

.sectionHead {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.sectionHead h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.sectionHead p {
  color: #62648a;
}

.solutions {
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}

.solutionGrid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.solutionPhoto {
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 22px 44px -26px rgba(28, 30, 77, 0.55);
  margin-bottom: 1.1rem;
}

.solutionPhoto img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.solutionPhoto img.cropWagen {
  object-position: 80% 60%;
}

.solutionCard:hover .solutionPhoto img {
  transform: scale(1.04);
}

.solutionCard h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.solutionCard p {
  font-size: 0.95rem;
  color: #62648a;
  margin-bottom: 0.5rem;
}

.solutionCard a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--oranjeDiep);
  text-underline-offset: 0.2em;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 4rem;
}

.productAlt {
  direction: rtl;
}

.productAlt > * {
  direction: ltr;
}

.product h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.productText p {
  color: #62648a;
  margin-bottom: 1rem;
}

.productText .productNote {
  font-size: 0.92rem;
  color: #2a2b45;
}

.productText .buttonPrimary {
  margin-top: 0.5rem;
}

.specSheet {
  background: var(--wit);
  border-radius: 0.375rem;
  padding: 1.75rem;
  box-shadow: 0 30px 60px -36px rgba(28, 30, 77, 0.45);
}

.specSheet h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.specSheet dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(43, 45, 110, 0.12);
  font-size: 0.93rem;
}

.specSheet dl div:last-child {
  border-bottom: 0;
}

.specSheet dt {
  color: #62648a;
  flex-shrink: 0;
}

.specSheet dd {
  font-weight: 600;
  color: var(--indigo);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.fullService {
  position: relative;
  overflow: hidden;
  background: var(--oranje);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.fullService::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(208, 116, 13, 0.5) 1px, transparent 1.5px);
  background-size: 9px 9px;
}

.keyMark {
  position: absolute;
  right: -6rem;
  top: 50%;
  width: clamp(24rem, 45vw, 40rem);
  transform: translateY(-50%) rotate(-24deg);
  color: rgba(208, 116, 13, 0.55);
}

.fullServiceInner {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.fullService h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--indigoDonker);
  margin-bottom: 1rem;
}

.fullService p {
  color: rgba(22, 23, 60, 0.85);
  margin-bottom: 1.75rem;
}

.fullService .buttonPrimary {
  background: var(--indigoDonker);
}

.fullService .buttonPrimary:hover {
  background: var(--indigo);
}

.clients {
  background: var(--wit);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.clients .sectionHead {
  margin-left: auto;
  margin-right: auto;
}

.clients .sectionHead h2 {
  color: var(--indigo);
}

.clientQuote {
  max-width: 34rem;
  margin: 0 auto 2.5rem;
}

.clientQuote p {
  font-family: var(--displayFont);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.25;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.clientQuote cite {
  font-style: normal;
  font-size: 0.95rem;
  color: #62648a;
}

.clientLogos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.clientLogos img {
  height: 2.9rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.clientLogos li:hover img {
  filter: none;
  opacity: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 74rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 4rem;
}

.about h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.aboutText p {
  color: #62648a;
}

.aboutCard {
  background: var(--wit);
  border-radius: 0.375rem;
  padding: 1.75rem;
  box-shadow: 0 30px 60px -36px rgba(28, 30, 77, 0.45);
  scroll-margin-top: 5rem;
}

.aboutCard h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.aboutCard p {
  font-size: 0.95rem;
  color: #62648a;
  margin-bottom: 1.25rem;
}

.contact {
  background: var(--indigoDiep);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 4rem;
}

.contactInner {
  max-width: 46rem;
  margin: 0 auto;
}

.contact .sectionHead h2 {
  color: var(--wit);
}

.contact .sectionHead p {
  color: var(--tekstZacht);
}

.offerteForm,
.miniForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offerteForm label,
.miniForm label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
}

.offerteForm label {
  color: var(--tekstOpDonker);
}

.miniForm label {
  color: #2a2b45;
}

.offerteForm input,
.offerteForm textarea,
.miniForm input,
.miniForm textarea {
  font: inherit;
  font-weight: 400;
  color: #2a2b45;
  background: var(--wit);
  border: 1px solid rgba(43, 45, 110, 0.25);
  border-radius: 0.25rem;
  padding: 0.65rem 0.8rem;
}

.offerteForm textarea,
.miniForm textarea {
  resize: vertical;
}

.formRow {
  display: flex;
  gap: 1rem;
}

.formActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.offerteForm button,
.miniForm button {
  font-family: var(--bodyFont);
  border: 0;
  cursor: pointer;
}

.formAlt {
  color: var(--tekstOpDonker);
}

.formAlt a {
  color: var(--wit);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.formNote {
  font-size: 0.85rem;
  color: var(--tekstZacht);
}

.miniForm .formNote {
  color: #62648a;
}

.siteFooter {
  background: var(--indigoDonker);
  color: var(--tekstZacht);
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: 0.92rem;
}

.siteFooter p {
  margin-bottom: 0.35rem;
}

.siteFooter a {
  color: var(--wit);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.isVisible {
  opacity: 1;
  transform: none;
}

@media (max-width: 60rem) {
  .siteNav {
    display: none;
  }

  .wordmark {
    margin-right: auto;
  }

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

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

  .productAlt {
    direction: ltr;
  }

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

  .formRow {
    flex-direction: column;
  }

  .keyMark {
    right: -10rem;
    opacity: 0.6;
  }
}

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

  * {
    transition: none !important;
  }
}

.heroBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  z-index: 0;
  animation: kenBurns 28s ease-in-out infinite alternate;
}

.hero::before {
  z-index: 1;
}

.heroInner {
  z-index: 2;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.planner {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
}

.plannerInner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 74rem;
  margin: 0 auto;
}

.plannerIntro h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.plannerIntro p {
  color: #62648a;
}

.plannerPanel {
  background: var(--indigo);
  border-radius: 0.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--schaduw);
}

.plannerLabel {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tekstZacht);
}

.plannerVisitors {
  font-family: var(--displayFont);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--wit);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.plannerPanel input[type="range"] {
  width: 100%;
  accent-color: var(--oranje);
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.plannerResult {
  border-top: 1px solid var(--lijnOpDonker);
  padding: 1rem 0 1.25rem;
}

.plannerLockers {
  font-family: var(--displayFont);
  font-size: 1.5rem;
  color: var(--oranje);
}

.plannerMix {
  color: var(--tekstOpDonker);
}

.plannerPanel .buttonPrimary {
  border: 0;
  cursor: pointer;
  font-family: var(--bodyFont);
  margin-bottom: 0.9rem;
}

.steps {
  background: var(--wit);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.stepsInner {
  max-width: 74rem;
  margin: 0 auto;
}

.stepList {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stepNo {
  display: block;
  font-family: var(--displayFont);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--oranje);
  margin-bottom: 0.5rem;
}

.stepItem h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.stepItem p {
  font-size: 0.95rem;
  color: #62648a;
}

.faq {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.faqInner {
  max-width: 46rem;
  margin: 0 auto;
}

.faqItem {
  background: var(--wit);
  border-radius: 0.375rem;
  box-shadow: 0 16px 32px -24px rgba(28, 30, 77, 0.4);
  margin-bottom: 0.75rem;
}

.faqItem summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 1.4rem;
  list-style: none;
  color: var(--indigo);
}

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

.faqItem summary::after {
  content: "+";
  font-family: var(--displayFont);
  font-size: 1.3rem;
  color: var(--oranje);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faqItem[open] summary::after {
  transform: rotate(45deg);
}

.faqItem p {
  padding: 0 1.4rem 1.25rem;
  color: #62648a;
  font-size: 0.97rem;
}

@media (max-width: 60rem) {
  .plannerInner {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .heroBg {
    animation: none;
  }
}
