:root {
  --green: #00bf63;
  --green-dark: #009f52;
  --ink: #080a09;
  --ink-2: #141815;
  --paper: #ffffff;
  --wash: #f6f7f4;
  --wash-2: #ebeee8;
  --muted: #636a62;
  --line: rgba(8, 10, 9, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --dark-section-bg:
    radial-gradient(circle at 78% 20%, rgba(0, 191, 99, 0.2), transparent 30%),
    var(--ink);
  --description-font: "Manrope", Arial, sans-serif;
  --description-weight: 700;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --max: 1336px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 191, 99, 0.45);
  outline-offset: 3px;
}

::selection {
  color: var(--ink);
  background: rgba(0, 191, 99, 0.24);
}

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--green);
}

.section-title {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 3.45rem;
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.section-title span {
  color: var(--green);
}

.section-copy {
  font-family: var(--description-font);
  color: var(--muted);
  font-size: 1rem;
  font-weight: var(--description-weight);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(0, 191, 99, 0.28);
}

.btn-primary:hover {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 191, 99, 0.34);
}

.btn-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.btn-glass:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.btn-dark:hover {
  background: #222720;
  transform: translateY(-2px);
}

.aos-firstlogo {
  width: 132px;
  height: auto;
}

.brand {
  display: inline-flex;
  width: 154px;
  height: 64px;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.site-header {
  position: absolute;
  inset: 23px 0 auto;
  z-index: 80;
  pointer-events: none;
}

.nav-shell {
  width: calc(100% - 48px);
  max-width: var(--max);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 7px 13px 7px 14px;
  border: 1px solid rgba(8, 10, 9, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 17px;
  border-radius: 7px;
  color: #101310;
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--wash);
}

.nav-links a.is-active {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 48px;
  padding-inline: 21px;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

@media (min-width: 1081px) {
  .site-header {
    inset: 22px 0 auto;
  }

  .nav-shell {
    position: relative;
    width: min(calc(100% - clamp(112px, 12vw, 230px)), 1660px);
    grid-template-columns: clamp(165px, 14vw, 250px) minmax(0, 1fr) auto;
    gap: clamp(14px, 1.25vw, 24px);
    max-width: none;
    min-height: 76px;
    padding: 10px 14px 10px 26px;
    overflow: hidden;
    border: 1px solid rgba(8, 10, 9, 0.06);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px) saturate(1.05);
  }

  .nav-shell::before {
    content: none;
    display: none;
  }

  .nav-shell::after {
    content: none;
    display: none;
  }

  .site-header.is-scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
  }

  .brand {
    position: relative;
    z-index: 1;
    width: 180px;
    height: 50px;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .aos-firstlogo {
    width: 124px;
  }

  .nav-links {
    position: relative;
    z-index: 1;
    justify-self: center;
    min-width: 0;
    width: min(100%, 710px);
    justify-content: center;
    gap: clamp(6px, 1vw, 19px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 clamp(13px, 1vw, 18px);
    border-radius: 8px;
    color: #101310;
    font-size: clamp(0.9rem, 0.78vw, 1rem);
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: var(--ink);
    background: rgba(8, 10, 9, 0.06);
    transform: translateY(-1px);
  }

  .nav-links a.is-active {
    color: #fff;
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  .nav-actions {
    position: relative;
    z-index: 1;
    justify-self: end;
  }

  .nav-actions::before {
    content: none;
    display: none;
  }

  .nav-actions .btn {
    min-height: 48px;
    padding-inline: clamp(18px, 1.25vw, 24px);
    border-color: transparent;
    border-radius: 8px;
    color: #06100b;
    background: var(--green);
    box-shadow: none;
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 900;
    white-space: nowrap;
  }

  .nav-actions .btn:hover {
    color: var(--ink);
    background: #0ad670;
    box-shadow: 0 14px 30px rgba(0, 191, 99, 0.2);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #050605;
  color: #fff;
  padding: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 191, 99, 0.24), transparent 31%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.88) 45%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.94));
}

.hero::after {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 68%);
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.32;
  filter: blur(12px) saturate(0.92) brightness(0.82);
  transform: scale(1.08);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: calc(100% - 48px);
  max-width: var(--max);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  column-gap: 60px;
  align-content: center;
  align-items: center;
  padding: 128px 0 24px;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Bebas Neue", "Manrope", Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  word-spacing: 0.12em;
  transform: scaleX(1.03);
  transform-origin: left center;
}

.hero-kicker span {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 191, 99, 0.5);
}

.hero h1 {
  max-width: 650px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3.6rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-title-brand,
.hero-title-brand span,
.hero-title-accent,
.hero-title-accent span {
  display: block;
}

.hero-title-brand {
  position: relative;
  display: inline-grid;
  width: fit-content;
  gap: 0;
  margin-bottom: 29px;
  color: #fff;
}

.hero-title-brand::after {
  content: "";
  display: block;
  width: 350px;
  height: 4px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #68ffc0);
  box-shadow: 0 0 18px rgba(0, 191, 99, 0.82);
}

@keyframes aosGlow {
  0% {
    background-position: 200% 0;
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.35);
  }

  100% {
    background-position: -200% 0;
    filter: brightness(1);
  }
}

.hero-brand-main {
  font-size: clamp(5.6rem, 9.2vw, 8.75rem);
  line-height: 0.8;
  letter-spacing: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.hero-brand-sub {
  position: relative;
  padding-left: 18px;
  max-width: 620px;
  margin-top: 19px;
  color: #00bf63;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-brand-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 24px;
  border-radius: 999px;

  background: var(--green);

  transform: translateY(-50%);
}

.hero-title-accent {
  margin-top: 0;
  color: #fff;
  font-size: clamp(3.25rem, 4vw, 4rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 470px;
  margin-top: 49px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 56px;
  padding-inline: 26px 16px;
}

.hero-actions .btn svg {
  width: 28px;
  height: 28px;
  padding: 7px;
  border-radius: 999px;
}

.hero-actions .btn-primary svg {
  color: var(--green);
  background: var(--ink);
}

.hero-actions .btn-glass svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  display: grid;
  width: min(100%, 578px);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.hero-panel button {
  min-height: 150px;
  padding: 20px 30px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.hero-panel button:hover {
  background: rgba(0, 191, 99, 0.22);
}

.hero-panel i {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.25rem;
}

.hero-panel strong {
  display: block;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.82rem;
  line-height: 1;
  font-weight: 900;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-media {
  grid-column: 2;
  align-self: center;
  position: relative;
  min-height: 728px;
  transform: none;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  isolation: isolate;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 9, 0.18), transparent 46%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s var(--ease),
    filter 0.55s var(--ease);
}

.hero-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) brightness(1.04);
}

.hero-photo-main {
  inset: 0 0 104px 36px;
}

.hero-photo-main img {
  object-position: center;
}

.hero-photo-detail {
  left: 0;
  bottom: 0;
  width: min(58%, 384px);
  height: 286px;
  border-color: rgba(0, 191, 99, 0.34);
}

.hero-photo-label {
  display: none;
}

.service-strip {
  height: 70px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: var(--ink);
}

.strip-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: slide 28s linear infinite;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-inline: 26px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.75rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.76);
}

.strip-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 191, 99, 0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f3f6f1 100%);
}

.services::before {
  content: "DIENSTEN";
  position: absolute;
  right: -22px;
  top: 26px;
  color: rgba(8, 10, 9, 0.035);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}

.services .section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.service-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.service-side {
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr);
  gap: 14px;
  min-height: 100%;
}

.service-focus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 278px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 191, 99, 0.2), transparent 44%), var(--ink);
  box-shadow: 0 26px 70px rgba(8, 10, 9, 0.18);
}

.service-focus-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 191, 99, 0.32);
  border-radius: 7px;
  color: var(--green);
  background: rgba(0, 191, 99, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-focus h3 {
  max-width: 340px;
  font-size: 1.9rem;
  line-height: 1.08;
  font-weight: 900;
}

.service-focus p {
  margin-top: 16px;
  font-family: var(--description-font);
  color: rgba(255, 255, 255, 0.68);
  font-weight: var(--description-weight);
  line-height: 1.75;
}

.service-side-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(8, 10, 9, 0.12);
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 112px 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 12px 78px 12px 12px;
  border: 1px solid rgba(8, 10, 9, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 191, 99, 0.1), transparent 24%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(8, 10, 9, 0.06);
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--green);
  opacity: 0.78;
}

.service-row:hover {
  border-color: rgba(0, 191, 99, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(8, 10, 9, 0.1);
}

.service-thumb {
  width: 112px;
  height: 88px;
  border-radius: 7px;
  object-fit: cover;
  filter: saturate(0.96) brightness(0.96);
  transition:
    transform 0.35s var(--ease),
    filter 0.35s var(--ease);
}

.service-row:hover .service-thumb {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}

.service-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(0, 191, 99, 0.1);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.service-row h3 {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.service-row p {
  max-width: 560px;
  margin-top: 6px;
  font-family: var(--description-font);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: var(--description-weight);
  line-height: 1.55;
}

.service-seal {
  position: absolute;
  right: 15px;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  isolation: isolate;
}

.service-seal::before,
.service-seal::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.service-seal::before {
  inset: 0;
  z-index: -2;
  background: rgba(255, 255, 255, 0.92);
}

.service-seal::after {
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(8, 10, 9, 0.08);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 22px rgba(8, 10, 9, 0.08);
}

.service-seal-logo {
  width: 31px;
  max-height: 25px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.75));
}

.service-row:hover .service-seal::after {
  border-color: rgba(8, 10, 9, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(8, 10, 9, 0.12);
}

.promise {
  color: #fff;
  background: var(--dark-section-bg);
}

.promise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.promise .section-title {
  color: #fff;
}

.promise .section-copy {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
}

.promise-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.promise-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.promise-check {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-check svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.promise-item h3 {
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
}

.promise-item p {
  margin-top: 8px;
  font-family: var(--description-font);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--description-weight);
  line-height: 1.75;
}

.projects {
  background: var(--wash);
}

.before-after-grid,
.work-compare-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-after-card-large {
  grid-row: span 2;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid rgba(8, 10, 9, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(8, 10, 9, 0.1);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(8, 10, 9, 0.14);
}

.compare-media {
  --position: 50%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 191, 99, 0.12), transparent 36%), var(--ink);
  isolation: isolate;
}

.before-after-card-large .compare-media {
  min-height: 560px;
}

.compare-media::before {
  content: "Plaats hier je foto's";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: -1;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-img[src=""] {
  opacity: 0;
}

.compare-before {
  filter: saturate(0.85) brightness(0.82);
}

.compare-after {
  clip-path: inset(0 0 0 var(--position));
}

.compare-tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 6px;
  color: #fff;
  background: rgba(8, 10, 9, 0.68);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 900;
}

.compare-tag-before {
  left: 16px;
}

.compare-tag-after {
  right: 16px;
  color: var(--ink);
  background: var(--green);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.compare-divider span::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-divider span::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-info {
  padding: 18px 20px 20px;
}

.compare-info strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.compare-info span {
  display: block;
  margin-top: 5px;
  font-family: var(--description-font);
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: var(--description-weight);
  line-height: 1.45;
}

.work-wall {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 191, 99, 0.15), transparent 32%),
    linear-gradient(180deg, var(--wash), #fff);
}

.work-wall::before {
  content: "AOS";
  position: absolute;
  right: -30px;
  top: -60px;
  color: rgba(8, 10, 9, 0.035);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 19rem;
  line-height: 1;
  pointer-events: none;
}

.work-compare-row {
  position: relative;
  z-index: 1;
}

.result-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  overflow: hidden;
  border: 1px solid rgba(8, 10, 9, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(8, 10, 9, 0.1);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(8, 10, 9, 0.14);
}

.result-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}

.result-info {
  padding: 18px 20px 20px;
}

.result-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.result-info h3 {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.result-info p {
  margin-top: 8px;
  font-family: var(--description-font);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: var(--description-weight);
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 191, 99, 0.26), transparent 28%),
    radial-gradient(circle at 8% 82%, rgba(0, 191, 99, 0.12), transparent 30%),
    linear-gradient(135deg, #050705 0%, #111610 56%, #050705 100%);
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 72% 18%, #000, transparent 62%);
  opacity: 0.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.contact-info .eyebrow {
  margin-bottom: -10px;
}

.contact .section-title {
  color: #fff;
  max-width: 540px;
}

.contact-copy {
  margin-top: 0;
  max-width: 520px;
  font-family: var(--description-font);
  color: rgba(255, 255, 255, 0.68);
  font-weight: var(--description-weight);
  line-height: 1.8;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}

.proof-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.proof-card strong {
  display: block;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 2.3rem;
  line-height: 0.9;
  font-weight: 400;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  font-family: var(--description-font);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: var(--description-weight);
  line-height: 1.35;
}

.contact-links {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 0;
}

.contact-tile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(16px);
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.contact-tile:hover {
  border-color: rgba(0, 191, 99, 0.45);
  background: rgba(0, 191, 99, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transform: translateX(4px);
}

.contact-tile svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: var(--green);
  border: 1px solid rgba(0, 191, 99, 0.28);
  border-radius: 8px;
  background: rgba(0, 191, 99, 0.11);
}

.contact-tile span {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-tile strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 1rem;
}

.contact-photo {
  flex: 1 1 300px;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 42%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.contact-form {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  color: var(--ink);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        135deg,
        rgba(0, 191, 99, 0.85),
        rgba(255, 255, 255, 0.65),
        rgba(0, 191, 99, 0.25)
      )
      border-box;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.contact-form::before {
  content: "Offerte";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(0, 191, 99, 0.1);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.contact-form h3 {
  position: relative;
  margin-bottom: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.12;
}

.form-intro {
  position: relative;
  max-width: 420px;
  margin-bottom: 24px;
  font-family: var(--description-font);
  color: #687066;
  font-size: 0.94rem;
  font-weight: var(--description-weight);
  line-height: 1.65;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #363b35;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(8, 10, 9, 0.13);
  border-radius: 8px;
  color: var(--ink);
  background: #f4f6f2;
  outline: none;
  font-family: var(--description-font);
  font-size: 0.94rem;
  font-weight: var(--description-weight);
  line-height: 1.45;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

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

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.12);
}

.attachment-field {
  padding: 16px;
  border: 1px dashed rgba(0, 191, 99, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 191, 99, 0.08), transparent 42%),
    #f4f6f2;
}

.attachment-field .attachment-title {
  margin-bottom: 7px;
}

.attachment-copy {
  margin-bottom: 13px;
  font-family: var(--description-font);
  color: #687066;
  font-size: 0.88rem;
  font-weight: var(--description-weight);
  line-height: 1.55;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.attachment-field .file-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(0, 191, 99, 0.46);
  border-radius: 8px;
  color: #06100b;
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 10, 9, 0.08);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.attachment-field .file-button:hover,
.file-input:focus-visible + .file-button {
  border-color: var(--green);
  background: rgba(0, 191, 99, 0.1);
  box-shadow: 0 16px 34px rgba(0, 191, 99, 0.16);
  transform: translateY(-1px);
}

.attachment-field .file-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.attachment-summary {
  margin-top: 10px;
  font-family: var(--description-font);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: var(--description-weight);
  line-height: 1.45;
}

.form-note {
  min-height: 24px;
  margin-top: 12px;
  font-family: var(--description-font);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: var(--description-weight);
}

.contact-form .btn {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  font-size: 1rem;
}

.footer {
  background: var(--dark-section-bg);
  border-top: 1px solid rgba(0, 191, 99, 0.24);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 132px;
  align-items: center;
  gap: 22px;
  font-family: var(--description-font);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: var(--description-weight);
  padding: 24px 0;
}

.footer-brand {
  display: inline-flex;
  width: 174px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.footer-logo {
  width: 90px;
}

.footer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.footer-contact-line,
.footer-company,
.footer-location {
  color: #fff;
  font-weight: 900;
}

.footer a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer a:hover {
  color: #00bf63;
}

.footer-socials,
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials a,
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.footer-socials a:hover,
.footer-links a:hover {
  color: #00bf63;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 34px 0;
  }

  .footer-details {
    align-items: center;
  }

  .footer-socials,
  .footer-links {
    justify-content: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 78px;
    padding: 0 12px 0 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background:
      radial-gradient(circle at 38% 0%, rgba(0, 191, 99, 0.16), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 34%),
      linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(8, 25, 17, 0.92));
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(1.15);
    isolation: isolate;
  }

  .nav-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    width: 236px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(135deg, #fff 0%, #f4f8f2 100%);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
    box-shadow:
      18px 0 44px rgba(0, 0, 0, 0.18),
      inset -1px 0 0 rgba(8, 10, 9, 0.06);
  }

  .nav-shell::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 222px;
    width: 9px;
    background: linear-gradient(180deg, rgba(115, 255, 196, 0.95), var(--green));
    box-shadow: 0 0 20px rgba(0, 191, 99, 0.42);
    transform: skewX(-14deg);
  }

  .brand {
    position: relative;
    z-index: 1;
    width: 218px;
    height: 78px;
    padding: 10px 26px 10px 28px;
  }

  .aos-firstlogo {
    width: 150px;
  }

  .nav-links {
    position: absolute;
    z-index: 3;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 34%),
      linear-gradient(90deg, rgba(7, 9, 8, 0.97), rgba(8, 25, 17, 0.94));
    box-shadow:
      0 24px 58px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(1.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease),
      visibility 0.25s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
  }

  .nav-links a {
    min-height: 48px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
  }

  .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links a.is-active {
    color: var(--ink);
    background: #fff;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.2),
      inset 0 -3px 0 var(--green);
  }

  .nav-actions {
    position: relative;
    z-index: 1;
    justify-self: end;
  }

  .nav-actions .btn {
    min-height: 50px;
    padding-inline: 19px 18px;
    border-color: rgba(0, 191, 99, 0.55);
    border-radius: 10px;
    color: #06100b;
    background: linear-gradient(135deg, var(--green), #6effbd);
    box-shadow:
      0 16px 38px rgba(0, 191, 99, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .menu-toggle {
    display: inline-flex;
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-brand-main {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .hero-title-accent {
    font-size: 3.85rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 36px;
    min-height: auto;
    padding: 132px 0 56px;
  }

  .hero-content,
  .hero-media,
  .hero-panel {
    grid-column: 1;
  }

  .hero-content {
    grid-row: 1;
  }

  .hero-media {
    grid-row: 2;
    min-height: 500px;
    transform: none;
  }

  .hero-panel {
    grid-row: 3;
    width: min(100%, 720px);
  }

  .hero-photo-main {
    inset: 0 0 64px 0;
  }

  .hero-photo-detail {
    width: min(54%, 330px);
    height: 210px;
  }

  .section-head,
  .promise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    display: grid;
    height: auto;
  }

  .contact-photo {
    flex: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-focus {
    min-height: 240px;
  }

  .service-side {
    grid-template-rows: auto 420px;
    padding-top: 20px;
  }

  .service-side-photo {
    object-position: center 95%;
    min-height: 420px;
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .before-after-grid,
  .work-compare-row {
    grid-template-columns: 1fr;
  }

  .before-after-card-large {
    grid-row: auto;
  }

  .compare-media,
  .before-after-card-large .compare-media {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    top: 10px;
  }

  .promise-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
  }

  .nav-shell,
  .container,
  .hero-inner {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .contact .section-title {
    font-size: 2.8rem;
    line-height: 0.95;
  }

  .nav-shell {
    min-height: 66px;
    padding: 0 8px 0 0;
    border-radius: 10px;
  }

  .nav-shell::before {
    width: 180px;
    border-radius: 10px 0 0 10px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 0 100%);
  }

  .nav-shell::after {
    content: none;
    display: none;
  }

  .brand {
    width: 166px;
    height: 66px;
    padding: 9px 22px 9px 20px;
  }

  .aos-firstlogo {
    width: 126px;
  }

  .aos-logo {
    width: 126px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-color: rgba(0, 191, 99, 0.55);
    color: #06100b;
    background: linear-gradient(135deg, var(--green), #6effbd);
    box-shadow:
      0 14px 32px rgba(0, 191, 99, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    row-gap: 26px;
    padding: 92px 0 34px;
  }

  .hero h1 {
    font-size: 2.76rem;
    line-height: 1;
    max-width: 100%;
  }

  .hero-brand-main {
    font-size: 4.25rem;
  }

  .hero-brand-sub .slogan {
    display: block !important;
    margin-top: 4px !important;
    font-size: 0.88rem !important;
    line-height: 1.15 !important;
    opacity: 0.78 !important;
  }

  .hero-brand-sub {
    margin-top: 12px;
    padding-left: 13px;
    font-size: 0.9rem !important;
    line-height: 1.38;
  }

  .hero-title-brand {
    margin-bottom: 23px;
  }

  .hero-title-brand::after {
    width: min(100%, 220px);
    height: 3px;
    margin-top: 18px;
  }

  .hero-title-accent {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .hero-kicker {
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 0.94rem;
    line-height: 1.68;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-media {
    min-height: 224px;
  }

  .hero-photo-main {
    inset: 0 0 48px 0;
  }

  .hero-photo-detail {
    width: 54%;
    height: 118px;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    margin-top: 26px;
    overflow: hidden;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .hero-panel::-webkit-scrollbar {
    display: none;
  }

  .hero-panel button {
    min-width: 0;
    min-height: 104px;
    padding: 14px 11px;
    scroll-snap-align: none;
  }

  .hero-panel i {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .hero-panel strong {
    font-size: 1.34rem;
  }

  .hero-panel span {
    margin-top: 6px;
    font-size: 0.7rem;
    line-height: 1.32;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .section-copy {
    line-height: 1.62;
  }

  .services::before,
  .work-wall::before {
    font-size: 9rem;
    right: -18px;
  }

  .promise-grid {
    gap: 44px;
  }

  .service-layout {
    gap: 24px;
  }

  .service-side {
    grid-template-rows: auto auto;
    gap: 18px;
    padding-top: 0;
  }

  .service-focus {
    min-height: 0;
    padding: 24px;
  }

  .service-focus-label {
    margin-bottom: 18px;
  }

  .service-focus h3 {
    font-size: 1.72rem;
  }

  .service-focus p {
    line-height: 1.62;
  }

  .service-side-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 1448 / 1086;
    object-fit: contain;
    object-position: center;
  }

  .service-list {
    gap: 14px;
  }

  .service-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
      "thumb thumb"
      "index content";
    gap: 14px 15px;
    align-items: start;
    min-height: 0;
    padding: 14px;
  }

  .service-thumb {
    grid-area: thumb;
    width: 100%;
    height: 148px;
    border-radius: 7px;
  }

  .service-index {
    grid-area: index;
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .service-row > div {
    grid-area: content;
    padding-top: 2px;
  }

  .service-row p {
    line-height: 1.5;
  }

  .service-seal {
    display: none;
  }

  .service-seal::before,
  .service-seal::after {
    display: none;
  }

  .promise-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 24px 0;
  }

  .promise-item strong {
    font-size: 3rem;
  }

  .promise-item > div:not(.promise-check) {
    width: 100%;
    max-width: none;
  }

  .promise-item h3 {
    line-height: 1.22;
  }

  .promise-item p {
    line-height: 1.6;
  }

  .compare-media,
  .before-after-card-large .compare-media {
    min-height: 310px;
  }

  .compare-tag {
    top: 14px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .compare-tag-before {
    left: 14px;
  }

  .compare-tag-after {
    right: 14px;
  }

  .compare-divider span {
    width: 40px;
    height: 40px;
  }

  .compare-divider span::before {
    left: 10px;
  }

  .compare-divider span::after {
    right: 10px;
  }

  .compare-info {
    padding: 18px;
  }

  .compare-info strong {
    font-size: 1rem;
    line-height: 1.28;
  }

  .compare-info span {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .result-grid {
    gap: 14px;
  }

  .result-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .result-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    background: #eef1eb;
  }

  .result-info {
    padding: 14px;
  }

  .result-label {
    min-height: 24px;
    margin-bottom: 9px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .result-info h3 {
    font-size: 0.94rem;
    line-height: 1.22;
  }

  .result-info p {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .contact-copy {
    line-height: 1.62;
  }

  .contact-form {
    padding: 24px 22px;
  }

  .contact-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-card {
    min-height: 104px;
    padding: 14px 10px;
  }

  .proof-card strong {
    font-size: 2rem;
  }

  .proof-card span {
    font-size: 0.68rem;
  }

  .contact-form::before {
    right: 16px;
    top: 16px;
    font-size: 3.2rem;
  }

  .contact-form h3 {
    font-size: 1.55rem;
  }

  .form-intro {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .field {
    margin-bottom: 12px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
  }

  .field textarea {
    min-height: 116px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 28px 0;
  }

  .footer-brand {
    width: 130px;
    min-height: 58px;
  }

  .footer-logo {
    width: 70px;
  }

  .footer-details {
    align-items: center;
    flex-direction: column;
    gap: 14px;
  }

  .footer-contact-line,
  .footer-company {
    font-size: 0.85rem;
    font-weight: 500;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .container,
  .hero-inner {
    width: calc(100% - 28px);
    max-width: 362px;
  }

  .hero-title-accent {
    font-size: clamp(2rem, 8.4vw, 2.25rem);
  }

  .hero-copy {
    font-size: 0.94rem;
  }
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  color: #00bf63;
}

.beeld {
  color: #00bf63;
}

.hero-kicker span[aria-hidden="true"] {
  transform: none;
}

.strakwerk,
.netjesopgeleverd {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.strakwerk {
  color: #fff;
}

.netjesopgeleverd {
  color: var(--green);
}

.slogan {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-family: "JouwHoofdFont", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
