/* ==========================================================================
   ProfiGuard B.V. — huisstijl
   Kleuren komen rechtstreeks uit het logo: het goud van de wolf en het
   indigo van het woordmerk. De donkere tint is dat indigo bij nacht.
   ========================================================================== */

:root {
  --gold: #f1b310;        /* wolf */
  --gold-hover: #ffc62e;
  --indigo: #333194;      /* woordmerk */
  --night: #16154a;       /* donkere secties */
  --night-deep: #0f0e36;  /* topbalk, footeronderrand */
  --ink: #17163d;         /* tekst */
  --muted: #55557a;       /* secundaire tekst */
  --line: #dcdde8;        /* scheidingslijnen (decoratief) */
  --field-line: #8b8ba6;  /* rand van invoervelden, minimaal 3:1 op wit */
  --placeholder: #6f6f90;
  --paper: #f3f4f8;
  --white: #ffffff;

  --font-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 120px);

  --head-top: 94px;       /* bovenste deel van de header dat wegscrolt */
  --nav-h: 58px;          /* navigatiebalk die blijft staan */
  --scroll-offset: calc(var(--nav-h) + 20px);
  --actionbar-h: 0px;
}

/* ---------- Basis ---------- */

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

html { -webkit-text-size-adjust: 100%; }

/* Ankers landen onder de vaste navigatie in plaats van erachter */
[id] { scroll-margin-top: var(--scroll-offset); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  padding-bottom: var(--actionbar-h);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

a { color: inherit; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

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

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--gold); color: var(--ink);
  font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--gold:focus-visible { outline-color: var(--white); }
.btn--line { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--line:hover { border-color: var(--gold); }
.btn--indigo { background: var(--indigo); color: var(--white); }
.btn--indigo:hover { background: var(--night); }

/* ---------- Topbalk ---------- */

.topbar {
  background: var(--night-deep);
  color: rgba(255, 255, 255, .78);
  font-size: .875rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.topbar__status { display: flex; align-items: center; gap: 10px; }
.dot {
  width: 8px; height: 8px; flex: none;
  background: #3ecf7a;
  box-shadow: 0 0 0 3px rgba(62, 207, 122, .2);
}
.topbar__links { display: flex; gap: 14px; }
.topbar__links a { display: inline-block; padding: 9px 4px; text-decoration: none; }
.topbar__links a:hover { color: var(--gold); }

/* ---------- Header ---------- */

/* De hele header is sticky met een negatieve top: het logo-deel scrolt weg,
   de navigatiebalk blijft staan. */
.header {
  position: sticky;
  top: calc(-1 * var(--head-top));
  z-index: 50;
  background: var(--white);
  transition: box-shadow .2s;
}
.header.is-stuck { box-shadow: 0 10px 24px -18px rgba(15, 14, 54, .55); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--head-top);
}
.header__logo img { width: auto; height: 58px; }

.header__info { display: flex; gap: 36px; }
.header__info li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--muted); }
.header__info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}
.header__info a { text-decoration: none; }
.header__info a:hover { color: var(--indigo); text-decoration: underline; }

.info-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border: 2px solid var(--gold);
  color: var(--indigo);
}
.info-icon svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  place-items: center;
  border: 2px solid var(--line);
  background: none;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* ---------- Navigatie ---------- */

.nav { border-top: 1px solid var(--line); background: var(--white); }
.nav__inner { display: flex; align-items: stretch; justify-content: space-between; }

/* Kleine wolf die verschijnt zodra de balk vastzit, zodat het merk zichtbaar blijft */
.nav__mark { display: none; align-items: center; margin-right: 22px; }
.nav__mark img { width: 30px; height: auto; }
.header.is-stuck .nav__mark { display: flex; }

.nav__list { display: flex; flex-wrap: wrap; margin-right: auto; }
.nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 16px;
  font-weight: 600;
  font-size: .975rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__list li:first-child a { padding-left: 0; }
.nav__list a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav__list li:first-child a::after { left: 0; }
.nav__list a:hover::after,
.nav__list a[aria-current]::after { transform: scaleX(1); }
.nav__list a[aria-current] { color: var(--indigo); }

.nav__cta {
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: var(--indigo);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s;
}
.nav__cta:hover { background: var(--night); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}
.hero__photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 21, 74, .97) 0%, rgba(22, 21, 74, .86) 42%, rgba(22, 21, 74, .35) 78%, rgba(22, 21, 74, .2) 100%),
    linear-gradient(0deg, rgba(15, 14, 54, .7) 0%, transparent 40%);
}
.hero__inner {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(150px, 16vw, 200px);
}

.clock {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.5rem, 16vw, 11.5rem);
  line-height: .82;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  margin-left: -.04em;
}
.clock__sep { display: inline-block; margin-inline: .02em; transform: translateY(-.06em); }

.hero__title {
  margin-top: 28px;
  max-width: 18ch;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
}
.hero__lead {
  margin-top: 22px;
  max-width: 36rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .84);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

@media (prefers-reduced-motion: no-preference) {
  .clock__sep { animation: tick 2s steps(1) infinite; }
  .clock, .hero__title, .hero__lead, .hero__actions {
    animation: rise .7s cubic-bezier(.2, .7, .2, 1) both;
  }
  .hero__title { animation-delay: .12s; }
  .hero__lead { animation-delay: .22s; }
  .hero__actions { animation-delay: .32s; }
}
@keyframes tick { 50% { opacity: .2; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Offerteformulier ---------- */

/* Padding i.p.v. marge op de kaart: zo valt het tabblad binnen de sectie
   en landt de sprong naar #offerte er netjes onder de vaste navigatie */
.quote { position: relative; z-index: 2; margin-top: -104px; padding-top: 46px; }
.quote__card {
  position: relative;
  padding: 36px clamp(20px, 3.5vw, 44px) 32px;
  background: var(--white);
  box-shadow: 0 34px 60px -32px rgba(15, 14, 54, .5);
}
.quote__tab {
  position: absolute;
  left: 0; top: 0;
  transform: translateY(-100%);
  padding: 12px 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
}
.quote__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 32px;
  align-items: end;
}
.field label {
  display: block;
  margin-bottom: 4px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}
.optional { font-weight: 400; }
.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 2px;
  border: 0;
  border-bottom: 2px solid var(--field-line);
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .15s;
}
.field select {
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333194' stroke-width='3'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.field input::placeholder { color: var(--placeholder); opacity: 1; }
.field input:focus,
.field select:focus { outline: none; border-bottom-color: var(--gold); }
.field input:focus-visible,
.field select:focus-visible { box-shadow: 0 2px 0 0 var(--gold); }
.field input[aria-invalid="true"] { border-bottom-color: #c3281e; }
.field__error { min-height: 0; font-size: .85rem; color: #b3241b; }
.field__error:not(:empty) { margin-top: 6px; }

.quote__submit { width: 100%; }
.quote__submit[aria-busy="true"] { cursor: progress; background: var(--night); }
.quote__privacy { grid-column: 1 / -1; margin-top: -8px; font-size: .875rem; color: var(--muted); }
.quote__status { grid-column: 1 / -1; font-weight: 500; color: var(--indigo); }
.quote__status.is-error { color: #b3241b; }
.quote__status:empty { display: none; }

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

/* ---------- Secties algemeen ---------- */

.section { padding-block: var(--section-y); }
.section--night { background: var(--night); color: var(--white); }
.section--paper { background: var(--paper); }

.section-head {
  max-width: 42rem;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  color: var(--ink);
}
/* Merkteken onder elke sectiekop: twee strepen met een onderbreking, zoals de lijnen van de wolf */
.section-head h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 5px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--gold) 0 18px, transparent 18px 27px, var(--gold) 27px 100%);
}
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.1rem; }

.section-head--light h2 { color: var(--white); }
.section-head--light p { color: rgba(255, 255, 255, .75); }

.section-head--left { margin-inline: 0; margin-bottom: 28px; text-align: left; }
.section-head--left h2::after { margin-left: 0; }

/* ---------- Diensten ---------- */

.services { padding-top: clamp(80px, 9vw, 116px); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 330px) 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.services__col { display: grid; gap: 44px; }
.service { display: flex; gap: 20px; align-items: flex-start; }
.services__col--left .service { flex-direction: row-reverse; text-align: right; }

.service__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; flex: none;
  border: 2px solid var(--gold);
  color: var(--indigo);
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.45rem; font-weight: 600; color: var(--ink); }
.service p { margin-top: 6px; font-size: 1rem; color: var(--muted); }

.services__wolf { margin: 0; justify-self: center; }
.services__wolf img { width: 100%; max-width: 330px; }

/* ---------- Waarom ---------- */

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.adv__media { position: relative; }
.adv__media img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.adv__badge {
  position: absolute; left: 0; bottom: 0;
  display: grid; place-items: center;
  width: 58px; height: 58px;
  background: var(--gold);
  color: var(--ink);
}
.adv__badge svg { width: 26px; height: 26px; }
.adv h3 { margin-top: 26px; font-size: 1.55rem; font-weight: 600; }
.adv p { margin-top: 10px; color: rgba(255, 255, 255, .74); }

/* ---------- Over ons ---------- */

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.about__lead { font-size: 1.15rem; max-width: 34rem; }
.about__lines { margin-top: 32px; border-bottom: 1px solid var(--line); }
.about__lines div { padding-block: 18px; border-top: 1px solid var(--line); }
.about__lines dt { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--indigo); }
.about__lines dd { margin-top: 2px; color: var(--muted); }

.about__visual { position: relative; padding: 0 0 40px 40px; }
.about__visual img { width: 100%; aspect-ratio: 10 / 9; object-fit: cover; }

.stats {
  position: absolute;
  left: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(78%, 420px);
  background: var(--indigo);
  color: var(--white);
}
.stats div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-width: 0 1px 1px 0;
}
.stats div:nth-child(2n) { border-right: 0; }
.stats div:nth-child(n+3) { border-bottom: 0; }
.stats dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stats dt { margin-top: 6px; font-size: .9rem; line-height: 1.35; color: rgba(255, 255, 255, .82); }

/* ---------- Werkwijze ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: none;
}
/* De gouden balken met tussenruimte lezen samen als één onderbroken lijn */
.step { padding: 30px 22px 0 0; border-top: 6px solid var(--gold); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--indigo);
}
.step h3 { margin-top: 14px; font-size: 1.45rem; font-weight: 600; }
.step p { margin-top: 8px; color: var(--muted); }

/* ---------- Belbalk ---------- */

.callband { background: var(--indigo); color: var(--white); padding-block: clamp(44px, 5vw, 60px); }
.callband__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.callband h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); font-weight: 600; }
.callband p { margin-top: 8px; max-width: 44rem; color: rgba(255, 255, 255, .82); }
.callband .btn { flex: none; }

/* ---------- Verhuur ---------- */

.rental__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}
.product { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
.product img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.product__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.product__price {
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--indigo);
}
.product h3 { margin-top: 14px; font-size: 1.6rem; font-weight: 600; }
.product p:not(.product__price) { margin-top: 8px; color: var(--muted); }
.product__link {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 600;
  color: var(--indigo);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--gold);
}
.product__link:hover { color: var(--ink); }

/* ---------- Sectoren ---------- */

.sectors { background: var(--gold); color: var(--ink); padding-block: 40px 44px; }
.sectors__title { font-size: 1.3rem; font-weight: 600; text-align: center; }
.sectors__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 32px;
  margin-top: 26px;
}
.sectors__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.sectors__list svg { width: 30px; height: 30px; stroke-width: 1.8; }

/* ---------- Veelgestelde vragen + contact ---------- */

.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.faq__list { border-bottom: 1px solid var(--line); }
.qa { border-top: 1px solid var(--line); }
.qa summary {
  position: relative;
  display: block;
  padding: 20px 48px 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--indigo); }
/* Plus-teken van twee gouden balken; de verticale draait weg bij openen */
.qa summary::before,
.qa summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 18px;
  height: 3px;
  margin-top: -1.5px;
  background: var(--gold);
  transition: transform .2s;
}
.qa summary::after { transform: rotate(90deg); }
.qa[open] summary::after { transform: rotate(0deg); }
.qa__body { padding-bottom: 24px; }
.qa__body p { max-width: 62ch; color: var(--muted); }

.contact-card {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: clamp(28px, 3vw, 40px);
  background: var(--night);
  color: rgba(255, 255, 255, .8);
}
.contact-card h2 { font-size: 1.9rem; font-weight: 600; color: var(--white); }
.contact-card > p { margin-top: 8px; }
.contact-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--gold);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.contact-card__phone svg { width: 30px; height: 30px; stroke-width: 2.2; }
.contact-card__phone:hover { color: var(--gold-hover); }
.contact-card__list { display: grid; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); }
.contact-card__list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-card__list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--gold); }
.contact-card__list a { color: var(--white); text-decoration: none; }
.contact-card__list a:hover { text-decoration: underline; }
.contact-card address { font-style: normal; }
.contact-card__route {
  display: inline-block;
  margin-top: 22px;
  padding-block: 6px;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.contact-card__route:hover { color: var(--gold); }

/* ---------- Actiebalk (alleen mobiel) ---------- */

.actionbar { display: none; }

/* ---------- Footer ---------- */

.footer { background: var(--night); color: rgba(255, 255, 255, .74); font-size: .975rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-block: 76px 64px;
}
.footer__brand img { width: 250px; }
.footer__motto {
  margin-top: 24px;
  max-width: 16em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--white);
}
.footer__head { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer ul { display: grid; gap: 4px; }
.footer ul a { display: inline-block; padding-block: 4px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; padding-block: 4px; }
.footer__contact li a { padding-block: 0; }
.footer__contact svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--gold); }

.footer__bottom { background: var(--night-deep); font-size: .875rem; }
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
}
.footer__bottom a { display: inline-block; padding-block: 4px; }
.footer__bottom a + a { margin-left: 22px; }

/* ==========================================================================
   Responsief
   ========================================================================== */

@media (max-width: 1100px) {
  /* Op kleinere schermen blijft de hele (compacte) header staan */
  :root { --head-top: 72px; --scroll-offset: calc(var(--head-top) + 12px); }
  .header { top: 0; }
  .header__logo img { height: 50px; }
  .header__info { display: none; }
  .nav-toggle { display: grid; }

  .nav { display: none; border-top: 1px solid var(--line); }
  .nav.is-open {
    display: block;
    max-height: calc(100dvh - var(--head-top));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .header.is-stuck .nav__mark { display: none; }
  .nav__inner { flex-direction: column; padding-bottom: 20px; }
  .nav__list { flex-direction: column; }
  .nav__list a,
  .nav__list li:first-child a { height: 52px; padding: 0; border-bottom: 1px solid var(--line); }
  .nav__list a::after,
  .nav__list li:first-child a::after { left: 0; right: auto; width: 4px; height: 24px; bottom: 14px; left: -12px; }
  .nav__cta { justify-content: center; min-height: 52px; margin-top: 20px; }
}

@media (max-width: 960px) {
  .quote__form { grid-template-columns: 1fr 1fr; }
  .quote__submit { grid-column: 1 / -1; }

  .services__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .services__wolf { grid-column: 1 / -1; grid-row: 1; }
  .services__wolf img { max-width: 200px; }
  .services__col--left .service { flex-direction: row; text-align: left; }

  .advantages__grid,
  .rental__grid { grid-template-columns: 1fr 1fr; }
  .advantages__grid > :last-child,
  .rental__grid > :last-child { grid-column: 1 / -1; }
  .advantages__grid > :last-child .adv__media img,
  .rental__grid > :last-child img { aspect-ratio: 21 / 9; }

  .about__inner { grid-template-columns: 1fr; }
  .about__visual { max-width: 640px; }

  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }

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

  .faq__inner { grid-template-columns: 1fr; }
  .contact-card { position: static; }

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

@media (max-width: 640px) {
  :root { --head-top: 68px; --actionbar-h: calc(58px + env(safe-area-inset-bottom)); }
  body { font-size: 1rem; }
  .topbar__links { display: none; }
  .topbar__inner { min-height: 36px; font-size: .8125rem; }
  .header__logo img { height: 44px; }

  /* Kraan en bouwlamp blijven zichtbaar boven de tekst */
  .hero__photo { object-position: 78% 0%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 21, 74, .3) 0%, rgba(22, 21, 74, .78) 34%, rgba(15, 14, 54, .96) 100%);
  }
  .hero__actions .btn { flex: 1 1 100%; }

  .quote { margin-top: -80px; }
  .quote__form { grid-template-columns: 1fr; }
  .quote__tab { font-size: 1.05rem; padding: 10px 18px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__col { gap: 32px; }

  .advantages__grid,
  .rental__grid { grid-template-columns: 1fr; }
  .advantages__grid > :last-child .adv__media img,
  .rental__grid > :last-child img { aspect-ratio: 10 / 7; }

  .about__visual { padding: 0; }
  .stats { position: static; width: 100%; }

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

  .sectors__list { justify-content: flex-start; gap: 18px 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-block: 56px 48px; }

  .actionbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--night-deep);
    box-shadow: 0 -8px 24px -12px rgba(15, 14, 54, .5);
    transform: translateY(100%);
    visibility: hidden;
    transition: transform .25s cubic-bezier(.2, .7, .2, 1), visibility 0s linear .25s;
  }
  .actionbar.is-visible {
    transform: none;
    visibility: visible;
    transition: transform .25s cubic-bezier(.2, .7, .2, 1), visibility 0s;
  }
  .actionbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 58px;
    font-weight: 600;
    text-decoration: none;
  }
  .actionbar svg { width: 20px; height: 20px; }
  .actionbar__call { background: var(--indigo); color: var(--white); }
  .actionbar__quote { background: var(--gold); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .actionbar,
  .actionbar.is-visible,
  .qa summary::before,
  .qa summary::after,
  .nav__list a::after { transition: none; }
}
