/* ═══════════════════════════════════════════════════════════════════════
   SAFETY ONE SECURITY — STIJLBESTAND

   Indeling van dit bestand:
   1. KLEUREN & VARIABELEN  ← hier pas je hoofdkleuren aan
   2. BASIS RESET           ← standaardregels voor alle elementen
   3. KNOPPEN
   4. HEADER & NAVIGATIE
   5. HERO SECTIE
   6. MARQUEE (scrollende balk)
   7. ALGEMENE SECTIE-STIJLEN (titels, labels, etc.)
   8. OVER ONS SECTIE
   9. DIENSTEN SECTIE
   10. WERKWIJZE SECTIE
   11. WAAROM SECTIE
   12. SECTOREN SECTIE
   13. CTA BAND
   14. CONTACT FORMULIER
   15. FOOTER
   16. ANIMATIES
   17. MOBIELE WEERGAVE (responsive)
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════
   1. KLEUREN & VARIABELEN
   ─────────────────────────────────────────────────────────────────────
   Wil je een kleur aanpassen? Doe dat HIER, dan past het overal door.
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --black:       #0a0a0a;   /* Hoofdkleur zwart */
  --white:       #ffffff;   /* Wit */
  --offwhite:    #f5f5f3;   /* Lichtgrijs voor achtergronden */
  --grey:        #6b6b6b;   /* Tekstgrijs */
  --grey-light:  #e0e0db;   /* Lichtgrijs */
  --border:      #e5e5e0;   /* Randkleur */
}


/* ═══════════════════════════════════════════════════════════════════════
   2. BASIS RESET
   Standaardregels die voor alle elementen gelden
   ═══════════════════════════════════════════════════════════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  max-width: 100vw;
}

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


/* ═══════════════════════════════════════════════════════════════════════
   3. KNOPPEN
   ═══════════════════════════════════════════════════════════════════════ */

/* Basis knop */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

/* Zwarte knop */
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Witte knop */
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: #eee;
  transform: translateY(-1px);
}

/* Witte rand op zwart */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Zwarte rand op wit */
.btn-outline-black {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.25);
}
.btn-outline-black:hover {
  background: var(--offwhite);
  border-color: var(--black);
}

/* Grote knop */
.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATIE
   ═══════════════════════════════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 34px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}
nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover {
  color: var(--black);
  background: var(--offwhite);
}

/* Hamburger menu (verschijnt op telefoon) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--black);
}
.mobile-menu .btn {
  margin-top: 1.5rem;
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════════════
   5. HERO SECTIE (zwart blok bovenaan)
   ═══════════════════════════════════════════════════════════════════════ */
#home {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Subtiele rasterachtergrond */
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,1) 39px, rgba(255,255,255,1) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,1) 39px, rgba(255,255,255,1) 40px);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  display: block;
}

/* Hoofdtitel */
h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Rechterkant met statistieken */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  margin-bottom: 1px;
  transition: background 0.2s;
}
.hero-stat-row:hover {
  background: rgba(255,255,255,0.07);
}

.hs-num {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  width: 100px;
  flex-shrink: 0;
}

.hs-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.hs-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════════════
   6. MARQUEE (scrollende balk met dienstennamen)
   ═══════════════════════════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.m-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
}

.m-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   7. ALGEMENE SECTIE-STIJLEN
   Wordt door meerdere secties hergebruikt
   ═══════════════════════════════════════════════════════════════════════ */
section {
  padding: 7rem 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Twee-koloms layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Klein label boven titels */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #ccc;
  display: block;
}

/* Sectie-titels */
h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.2);
}

/* Gecentreerde sectie-header */
.center {
  text-align: center;
}
.center .eyebrow {
  justify-content: center;
}
.center .eyebrow::before {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   8. OVER ONS SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
#over-ons {
  background: var(--white);
}

.body-text p {
  color: var(--grey);
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.body-text p strong {
  color: var(--black);
  font-weight: 600;
}

/* Lijst met vinkjes */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
}
.check-item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Zwarte stats kaart aan de rechterkant */
.stats-card {
  background: var(--black);
  border-radius: 6px;
  overflow: hidden;
}

.stats-card-header {
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

.sc-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-row:last-child {
  border-bottom: none;
}

.sc-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  min-width: 90px;
}

.sc-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════════════
   9. DIENSTEN SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
#diensten {
  background: var(--black);
  padding: 7rem 0;
}
#diensten h2, #diensten .eyebrow {
  color: var(--white);
}
#diensten .eyebrow {
  color: rgba(255,255,255,0.35);
}
#diensten .eyebrow::before {
  background: rgba(255,255,255,0.2);
}

#diensten .section-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* Grid met dienstkaarten */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.d-card {
  background: var(--black);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.d-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.d-card:hover {
  background: #111;
}
.d-card:hover::after {
  transform: scaleY(1);
}

.d-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.d-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.d-card p {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════════════
   10. WERKWIJZE SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
#werkwijze {
  background: var(--white);
  padding: 7rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.st {
  background: var(--white);
  padding: 2.25rem 1.6rem;
  transition: background 0.2s;
}
.st:hover {
  background: var(--offwhite);
}

.st-num {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.st h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
  margin-bottom: 0.55rem;
}

.st p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.65;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════════════
   11. WAAROM SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
#waarom {
  background: var(--black);
  padding: 7rem 0;
}
#waarom h2 {
  color: var(--white);
}
#waarom .eyebrow {
  color: rgba(255,255,255,0.35);
}
#waarom .eyebrow::before {
  background: rgba(255,255,255,0.2);
}

/* Lijst met voordelen */
.voordelen {
  display: flex;
  flex-direction: column;
}

.vd {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.2s;
}
.vd:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vd:hover {
  padding-left: 0.5rem;
}

.vd-n {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.12);
  min-width: 2.5rem;
  padding-top: 2px;
}

.vd strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.vd span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  font-weight: 300;
}

/* Kaartjes aan de rechterkant */
.waarom-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 1px;
  transition: background 0.2s;
}
.wc:hover {
  background: rgba(255,255,255,0.07);
}

.wc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.6rem;
}

.wc-body {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.tag:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════════════════════════════════════
   12. SECTOREN SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
#sectoren {
  background: var(--white);
  padding: 7rem 0;
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.sec-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  cursor: default;
}
.sec-item:hover {
  background: var(--offwhite);
}

.sec-ico {
  width: 36px;
  height: 36px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
}

.sec-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
}

.sec-sub {
  font-size: 0.73rem;
  color: var(--grey);
  margin-top: 0.1rem;
}


/* ═══════════════════════════════════════════════════════════════════════
   13. CTA BAND
   ═══════════════════════════════════════════════════════════════════════ */
#cta {
  background: var(--black);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtiele dot-achtergrond */
.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}

#cta h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin: 1.25rem auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════════════
   14. CONTACT FORMULIER
   ═══════════════════════════════════════════════════════════════════════ */
#contact {
  background: var(--white);
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
}

/* Linkerkant: contactgegevens */
.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ci-ico {
  width: 40px;
  height: 40px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  flex-shrink: 0;
}

.ci-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.15rem;
}

.ci-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
}

.info-note {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.info-note-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.info-note p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

/* Rechterkant: zwart formulier */
.form-box {
  background: var(--black);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fg.full {
  grid-column: span 2;
}

.fg label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

.fg select option {
  background: #1a1a1a;
  color: #fff;
}

.fg textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.2s;
}
.btn-submit:hover {
  background: #eee;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

/* Succesbericht na verzenden */
#form-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}
#form-success svg {
  margin: 0 auto 1.5rem;
  display: block;
}
#form-success h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
#form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.f-logo img {
  height: 28px;
  margin-bottom: 1.25rem;
}

.f-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  font-weight: 300;
}

.f-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.f-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.f-links a:hover {
  color: rgba(255,255,255,0.75);
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.32);
  margin-bottom: 0.7rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.2);
}


/* ═══════════════════════════════════════════════════════════════════════
   16. ANIMATIES (elementen verschijnen bij scrollen)
   ═══════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   17. MOBIELE WEERGAVE (responsive)
   Stijlen voor verschillende schermbreedtes
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet liggend */
@media (max-width: 1100px) {
  .dienst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .two-col {
    gap: 3.5rem;
  }
}

/* Tablet staand & kleine laptops */
@media (max-width: 900px) {
  nav, #hdr-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    padding: 0 1.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .hero-right {
    display: flex;
  }
  .hs-num {
    font-size: 2.5rem;
    width: 80px;
  }
  .section-inner {
    padding: 0 1.5rem;
  }
  .two-col,
  .waarom-two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sec-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dienst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telefoon */
@media (max-width: 700px) {
  section {
    padding: 4.5rem 0 !important;
  }
  #home {
    min-height: 100vh;
    padding-top: 70px;
  }
  .section-inner,
  .header-inner {
    padding: 0 1.25rem;
  }
  .hero-inner {
    padding: 3rem 1.25rem 3.5rem;
    gap: 2.5rem;
  }
  .hero-tag {
    font-size: 0.65rem;
    margin-bottom: 1.25rem;
  }
  h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 0.95;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 100%;
    line-height: 1.7;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-stat-row {
    padding: 1.25rem;
    gap: 1rem;
  }
  .hs-num {
    font-size: 2.25rem;
    width: 70px;
  }
  .hs-text strong {
    font-size: 0.85rem;
  }
  .hs-text span {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 0.92;
    margin-bottom: 1.25rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .body-text p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .check-list {
    gap: 0.55rem;
    margin-top: 1.5rem;
  }
  .check-item {
    font-size: 0.85rem;
  }
  .stats-card-header {
    padding: 0.75rem 1.25rem;
    font-size: 0.62rem;
  }
  .sc-row {
    padding: 1.25rem;
    gap: 1rem;
  }
  .sc-num {
    font-size: 2.25rem;
    min-width: 70px;
  }
  .sc-label {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .dienst-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .d-card {
    padding: 1.75rem 1.5rem;
  }
  .d-card h3 {
    font-size: 1.05rem;
  }
  .d-card p {
    font-size: 0.85rem;
  }
  .d-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
  }
  #diensten .section-sub {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    margin-bottom: 3rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
  .st {
    padding: 1.75rem 1.5rem;
  }
  .st-num {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
  }
  .st h3 {
    font-size: 0.95rem;
  }
  .st p {
    font-size: 0.85rem;
  }
  .voordelen {
    margin-top: 0.5rem;
  }
  .vd {
    gap: 1rem;
    padding: 1.25rem 0;
  }
  .vd-n {
    font-size: 1.1rem;
    min-width: 2rem;
  }
  .vd strong {
    font-size: 0.88rem;
  }
  .vd span {
    font-size: 0.78rem;
    line-height: 1.55;
  }
  .waarom-cards {
    margin-top: 1.5rem;
  }
  .wc {
    padding: 1.5rem 1.25rem;
  }
  .wc-body {
    font-size: 0.85rem;
  }
  .tag {
    font-size: 0.62rem;
    padding: 0.22rem 0.55rem;
  }
  .sec-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .sec-item {
    padding: 1.25rem;
    gap: 0.85rem;
  }
  .sec-ico {
    width: 34px;
    height: 34px;
  }
  .sec-name {
    font-size: 0.95rem;
  }
  .sec-sub {
    font-size: 0.72rem;
  }
  #cta {
    padding: 4.5rem 0 !important;
  }
  .cta-sub {
    font-size: 0.92rem;
    padding: 0 0.5rem;
    margin: 1rem auto 2rem;
  }
  .cta-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    padding: 0 0.5rem;
  }
  .cta-btns .btn {
    width: 100%;
    text-align: center;
  }
  .contact-grid {
    gap: 2.5rem;
  }
  .ci {
    gap: 0.85rem;
    margin-bottom: 1.4rem;
  }
  .ci-ico {
    width: 36px;
    height: 36px;
  }
  .ci-val {
    font-size: 0.88rem;
    word-break: break-word;
  }
  .info-note {
    padding: 1.25rem;
    margin-top: 1.25rem;
  }
  .info-note p {
    font-size: 0.8rem;
  }
  .form-box {
    padding: 1.75rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .fg.full {
    grid-column: span 1;
  }
  .fg input,
  .fg select,
  .fg textarea {
    font-size: 16px; /* voorkomt automatische zoom op iPhone */
    padding: 0.8rem 0.9rem;
  }
  .fg label {
    font-size: 0.68rem;
  }
  .btn-submit {
    font-size: 0.92rem;
    padding: 0.9rem;
    margin-top: 1.25rem;
  }
  #form-success {
    padding: 2.5rem 1rem;
  }
  #form-success h3 {
    font-size: 1.75rem;
  }
  #form-success p {
    font-size: 0.85rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .f-desc {
    font-size: 0.82rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.5;
  }
  footer {
    padding: 4rem 0 2rem;
  }
  .mobile-menu {
    padding: 1.5rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .mobile-menu a {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
  .mobile-menu .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
  }
  .logo img {
    height: 30px;
  }
  .marquee-wrap {
    padding: 0.85rem 0;
  }
  .m-item {
    font-size: 0.7rem;
    padding: 0 1.5rem;
    gap: 0.55rem;
  }
}

/* Kleine telefoons */
@media (max-width: 400px) {
  h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }
  h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .hero-inner {
    padding: 2.5rem 1.1rem 3rem;
  }
  .section-inner,
  .header-inner {
    padding: 0 1.1rem;
  }
  .hero-stat-row {
    padding: 1.1rem 1rem;
    gap: 0.85rem;
  }
  .hs-num {
    font-size: 2rem;
    width: 60px;
  }
  .form-box {
    padding: 1.5rem 1.25rem;
  }
  .d-card,
  .st,
  .sec-item,
  .wc {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
