/**
 * style.css ? Jasper Leemans Asbestverwijdering
 * Gebaseerd op Bootstrap 5 + Dewi template
 * -----------------------------------------------------------------------
 *
 * INHOUDSOPGAVE
 * ---------------------------------------------------------------------
 *  1.  KLEURVARIABELEN & FONTS           ? HIER PAST U KLEUREN AAN
 *      1a. Globale kleuren (accentkleur hier wijzigen!)
 *      1b. Navigatiekleuren
 *      1c. Kleurpresets (light / dark achtergrond)
 *  2.  ALGEMENE STIJLEN
 *  3.  PRELOADER
 *  4.  SCROLL-TO-TOP KNOP
 *  5.  HEADER & NAVIGATIE
 *  6.  HERO SECTIE
 *  7.  OVER ONS SECTIE
 *  8.  STATISTIEKEN SECTIE
 *  9.  DIENSTEN SECTIE (kaarten)
 * 10.  CLIENTS / PARTNERS SECTIE
 * 11.  FEATURES / TABBLADEN SECTIE
 * 12.  DIENSTEN 2 SECTIE (icoontjes)
 * 13.  GETUIGENISSEN SECTIE
 * 14.  PORTFOLIO / REALISATIES SECTIE
 * 15.  CONTACT SECTIE
 * 16.  FAQ SECTIE
 * 17.  FOOTER
 * 18.  SKIP-LINK TOEGANKELIJKHEID
 * -----------------------------------------------------------------------
 */


/* +-------------------------------------------------------------------+
   ?  1.  KLEURVARIABELEN & FONTS                                     ?
   ?                                                                   ?
   ?  ??  ACCENTKLEUR AANPASSEN?                                      ?
   ?  Zoek naar  --accent-color  hieronder en verander de hex-waarde. ?
   ?  Alle knoppen, links, iconen en hover-effecten passen            ?
   ?  automatisch mee aan ? u hoeft verder niets te wijzigen.         ?
   +-------------------------------------------------------------------+ */

/* --- 1a. GLOBALE KLEUREN -------------------------------------------- */
:root {

  /* +-------------------------------------------------------------+
     ?  ?? ACCENTKLEUR ? PAS HIER AAN VOOR EEN ANDER KLEURSCHEMA  ?
     ?                                                             ?
     ?  Huidige kleur : oranje  ?  #ff4a17                        ?
     ?                                                             ?
     ?  Voorbeelden van andere accenten:                           ?
     ?    Blauw        ?  #0d6efd                                  ?
     ?    Groen        ?  #198754                                  ?
     ?    Donkeroranje ?  #e63900                                  ?
     ?    Rood         ?  #dc3545                                  ?
     ?    Paars        ?  #6f42c1                                  ?
     ?                                                             ?
     ?  Pas ALLEEN de waarde na de dubbele punt aan.               ?
     +-------------------------------------------------------------+ */
  --accent-color: #82dc33;

  /* Achtergrondkleur voor de volledige website */
  --background-color: #ffffff;

  /* Standaardkleur voor de meeste tekst */
  --default-color: #444444;

  /* Kleur voor titels en tussentitels */
  --heading-color: #273d4e;

  /* Achtergrond voor kaarten, boxen, e.d. */
  --surface-color: #ffffff;

  /* Contrastkleur voor tekst op gekleurde achtergronden */
  --contrast-color: #ffffff;
}

/* --- 1b. NAVIGATIEKLEUREN ------------------------------------------- */
:root {
  /* Standaard kleur van navigatielinks (in donkere header) */
  --nav-color: #e5eaee;

  /* Nav hover = automatisch zelfde als accentkleur ? past mee als u --accent-color wijzigt */
  --nav-hover-color:            var(--accent-color);
  --nav-dropdown-hover-color:   var(--accent-color);

  --nav-mobile-background-color:    #ffffff;
  --nav-dropdown-background-color:  #ffffff;
  --nav-dropdown-color:             #444444;
}

/* --- 1c. KLEURPRESETS (lichte / donkere secties) -------------------- */
.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
  background-color: #f1f4fa !important;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
  background-color: #000910 !important;
}

/* --- FONTS ----------------------------------------------------------- */
:root {
  --default-font:  "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font:  "Raleway", sans-serif;
  --nav-font:      "Inter", sans-serif;
}

/* Soepel scrollen */
:root { scroll-behavior: smooth; }


/* -------------------------------------------------------------------
   2.  ALGEMENE STIJLEN
-------------------------------------------------------------------- */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* -- Globale sectie-padding ? zorgt voor lucht tussen alle secties -- */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Voorkom horizontaal scrollen op mobiel */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Sectie-titels */
.section-title {
  text-align: center;
  padding-bottom: 60px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color); /* ? accentkleur ook hier */
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* PHP Email Form berichten */
.php-email-form .error-message,
.contact-form .error-message {
  display: none;
  background: #df1529;
  color: #fff;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 6px;
}
.php-email-form .sent-message,
.contact-form .sent-message {
  display: none;
  background: #059652;
  color: #fff;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 6px;
}
.php-email-form .loading,
.contact-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}
.php-email-form .loading::before,
.contact-form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px; height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* -------------------------------------------------------------------
   3.  PRELOADER
-------------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#preloader::before,
#preloader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 56px; height: 56px;
}
#preloader::before {
  border: 5px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}
#preloader::after {
  border: 5px solid transparent;
  border-top-color: var(--accent-color); /* ? accentkleur */
  animation: spin 0.8s linear infinite;
}


/* -------------------------------------------------------------------
   4.  SCROLL-TO-TOP KNOP
-------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px; bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color); /* ? accentkleur */
  width: 44px; height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i { font-size: 24px; color: #fff; }
.scroll-top:hover { background-color: color-mix(in srgb, var(--accent-color), transparent 20%); }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }


/* -------------------------------------------------------------------
   5.  HEADER & NAVIGATIE
-------------------------------------------------------------------- */
.header {
  background-color: transparent;
  padding: 22px 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 10000;  /* ? boven overlay */
}

/* Na scrollen: donkere achtergrond + glasmorphism blur */
.scrolled .header {
  background-color: rgba(10, 20, 30, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 12px 0;
}

/* Logo: hoogte automatisch, nooit vervormd */
.header .logo img {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}
.header .logo h1, .header .logo .sitename {
  font-size: 24px; font-weight: 700;
  color: #fff;
}

/* CTA knop ? vaste ruimte links zodat hij niet op de nav kleeft */
.header .cta-btn {
  color: var(--contrast-color);
  background: var(--accent-color); /* ? accentkleur */
  font-size: 14px; font-weight: 600;
  padding: 9px 24px;
  border-radius: 50px;
  margin-left: 32px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.2s;
}
.header .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

/* Navigatiemenu */
.navmenu ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center; gap: 30px;
}
.navmenu a {
  color: var(--nav-color);
  font-family: var(--nav-font);
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}
.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color); /* ? accentkleur */
}

/* Dropdowns */
.navmenu .dropdown ul {
  display: none; position: absolute;
  background: var(--nav-dropdown-background-color);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  padding: 10px 0;
  border-radius: 8px;
}
.navmenu .dropdown:hover > ul { display: block; }
.navmenu .dropdown ul a { color: var(--nav-dropdown-color); padding: 8px 20px; }
.navmenu .dropdown ul a:hover { color: var(--nav-dropdown-hover-color); }

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 0;
  padding: 4px;
  transition: color 0.3s;
  z-index: 10000;  /* ? boven alles, ook boven overlay en menu */
  position: relative;
}
.mobile-nav-toggle:hover { color: var(--accent-color); }

@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block; }
}

.scrolled .mobile-nav-toggle { color: #fff; }


/* -------------------------------------------------------------------
   6.  HERO SECTIE ? video achtergrond + zachte overlay
-------------------------------------------------------------------- */

/* -- Overlay opaciteit ? pas hier aan (0.0 = geen overlay, 1.0 = volledig zwart) */
:root { --hero-overlay-opacity: 0.42; }

.hero {
  width: 100%; min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Achtergrondvideo */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Geen pointer-events: gebruiker kan er niet op klikken */
  pointer-events: none;
}

/* Zachte zwarte overlay */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity));
  /* Optioneel: subtiel verloop van onder ? boven voor diepte */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,var(--hero-overlay-opacity)) 50%,
    rgba(0,0,0,0.28) 100%
  );
}

/* Inhoud boven overlay */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero p {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* Knoppen */
.hero .btn-get-started {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
.hero .btn-watch-video {
  color: #fff;
  font-size: 16px; font-weight: 600;
  margin-left: 24px;
  gap: 8px;
}
.hero .btn-watch-video i {
  font-size: 32px;
  color: var(--accent-color); /* ? accentkleur */
  transition: color 0.3s;
}
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* -- Media controls ? rechtsonder in de hero ---------------------- */
.hero-media-controls {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-ctrl-btn:hover {
  background: var(--accent-color); /* ? accentkleur */
  border-color: var(--accent-color);
  transform: scale(1.1);
}
.hero-ctrl-btn i { line-height: 1; pointer-events: none; }


/* -------------------------------------------------------------------
   7.  OVER ONS SECTIE
-------------------------------------------------------------------- */

/* Extra ademruimte boven de sectie zodat die niet tegen de hero plakt */
.about.section {
  padding-top: 100px; /* iets meer dan standaard vanwege fixed header */
}

/* Foto-wrapper */
.about-img-wrap { display: block; width: 100%; }

/* Oranje badge rechtsonder op de foto */
.about-badge {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}
.about-badge-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  font-family: var(--heading-font);
}
.about-badge-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: .9;
  white-space: nowrap;
}

/* Tekstblok onder de linker foto */
.about-text-block { }
.about-subheading {
  font-size: 21px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* "Offerte aanvragen" link */
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-color); /* ? accentkleur */
  transition: gap 0.25s, color 0.25s;
}
.about-cta-link i { font-size: 20px; }
.about-cta-link:hover {
  gap: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* USP-lijst ? icoontje + tekst naast elkaar */
.about-usp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-color);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.about-usp-list li:hover {
  border-color: var(--accent-color);
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.about-usp-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex; align-items: center; justify-content: center;
}
.about-usp-icon i {
  font-size: 18px;
  color: var(--accent-color); /* ? accentkleur */
}
.about-usp-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-usp-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
}
.about-usp-text span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

/* Pulserende play-knop */
.about .pulsating-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65px; height: 65px;
  background: var(--accent-color); /* ? accentkleur */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about .pulsating-play-btn::before {
  content: "";
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--accent-color); /* ? accentkleur */
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes pulse { 0%{opacity:1;transform:scale(.8)} 100%{opacity:0;transform:scale(1.5)} }
.about .pulsating-play-btn::after {
  content: "";
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 4px;
}


/* -------------------------------------------------------------------
   8.  STATISTIEKEN SECTIE
-------------------------------------------------------------------- */
.stats .stats-item {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  gap: 20px;
}
.stats .stats-item i {
  font-size: 48px;
  line-height: 0;
}
.stats .stats-item span {
  font-size: 48px; font-weight: 700;
  color: var(--heading-color);
  display: block;
}
.stats .stats-item p {
  font-size: 14px; font-weight: 500;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Stats icoonskleurenclasses */
.color-blue   { color: #4154f1; }
.color-orange { color: var(--accent-color); } /* ? accentkleur */
.color-green  { color: #2eca6a; }
.color-pink   { color: #ff5caa; }


/* -------------------------------------------------------------------
   9.  DIENSTEN SECTIE (kaarten met afbeelding)
-------------------------------------------------------------------- */
.services .service-item {
  background: var(--surface-color);
  box-shadow: 0 5px 30px rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.services .service-item .img {
  overflow: hidden;
  height: 220px;        /* ? vaste hoogte voor alle kaarten gelijk */
}
.services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ? bijsnijden zodat foto vult zonder uitrekken */
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.services .service-item:hover .img img { transform: scale(1.06); }
.services .service-item:hover .img img { transform: scale(1.06); }
.services .service-item .details { padding: 30px 30px 45px; }
.services .service-item .icon {
  width: 48px; height: 48px;
  position: absolute;
  right: 30px; top: -24px;
  background: var(--accent-color); /* ? accentkleur */
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
}
.services .service-item .icon i { color: #fff; font-size: 24px; }
.services .service-item h3 {
  font-size: 20px; font-weight: 700;
  margin: 0 0 10px;
}
.services .service-item p { font-size: 15px; margin: 0; }


/* -------------------------------------------------------------------
   10. VERTROUWENSBALK ? certificaten & erkenningen
-------------------------------------------------------------------- */

/* Klein intro-label boven de items */
.trust-intro-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 28px;
}
.trust-intro-label i {
  margin-right: 6px;
  color: var(--accent-color); /* ? accentkleur */
}

/* Trust-kaartje */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  border-radius: 12px;
  background: var(--surface-color);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  gap: 6px;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

/* Icoon */
.trust-item i {
  font-size: 30px;
  margin-bottom: 4px;
  line-height: 1;
}

/* Titel */
.trust-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

/* Onderschrift */
.trust-item span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

/* Kleurvarianten voor de icoontjes */
.trust-item.trust-groen i  { color: #2eca6a; }
.trust-item.trust-blauw i  { color: #4154f1; }
.trust-item.trust-oranje i { color: var(--accent-color); } /* ? accentkleur */


/* -------------------------------------------------------------------
   11. FEATURES / TABBLADEN SECTIE
-------------------------------------------------------------------- */
.features .nav-tabs {
  border: none;
  margin-bottom: 30px;
}
.features .nav-item .nav-link {
  border: none;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  color: var(--default-color);
  background: var(--surface-color);
  transition: background 0.3s, color 0.3s;
}
.features .nav-item .nav-link i {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color); /* ? accentkleur */
}
.features .nav-item .nav-link.active {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
}
.features .nav-item .nav-link.active i { color: #fff; }
.features .tab-content ul {
  list-style: none;
  padding: 0;
}
.features .tab-content ul li {
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.features .tab-content ul i {
  color: var(--accent-color); /* ? accentkleur */
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Afbeelding in elke tab: vaste hoogte, afgerond, bijgesneden */
.features .tab-pane .col-lg-6.text-center {
  display: flex;
  align-items: stretch;
}
.features .tab-img-wrap {
  width: 100%;
  height: 420px;           /* ? vaste hoogte voor alle tabs gelijk */
  border-radius: 16px;     /* ? afgeronde hoeken */
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.features .tab-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ? bijsnijden zodat de foto altijd vult */
  object-position: center;
  display: block;
  border-radius: 0;        /* radius zit op de wrapper */
  transition: transform 0.5s ease;
}
.features .tab-pane:hover .tab-img-wrap img {
  transform: scale(1.03);  /* subtiele zoom bij hover */
}


/* -------------------------------------------------------------------
   12. DIENSTEN 2 SECTIE (icoontjes)
-------------------------------------------------------------------- */
.services-2 .service-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  gap: 20px;
  transition: transform 0.3s;
}
.services-2 .service-item:hover { transform: translateY(-4px); }
.services-2 .service-item .icon {
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color); /* ? accentkleur */
}
.services-2 .service-item .title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.services-2 .service-item .title a { color: var(--heading-color); }
.services-2 .service-item .title a:hover { color: var(--accent-color); }
.services-2 .service-item .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


/* -------------------------------------------------------------------
   13. GOOGLE REVIEWS SECTIE
-------------------------------------------------------------------- */
.testimonials {
  position: relative;
  padding: 80px 0;
}
.testimonials .testimonials-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 9, 16, .82);
  z-index: 2;
}
.testimonials .container { position: relative; z-index: 3; }

/* -- Google score badge -- */
.google-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.google-score-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-score-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.google-score-stars { display: flex; gap: 2px; }
.google-score-count {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.google-score-cta {
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.google-score-cta:hover {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
}

/* -- Review kaartjes -- */
.review-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;          /* ? vult volledige hoogte van de swiper slide */
  min-height: 220px;     /* ? minimale hoogte zodat lege kaartjes niet instorten */
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s, transform .3s;
  box-sizing: border-box;
}
.review-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
}

/* Header: avatar + naam + Google logo */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.review-avatar-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color); /* ? accentkleur */
  display: block;
}
.review-avatar-init {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: none; /* wordt zichtbaar als img faalt via onerror */
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
/* Als er geen foto is: direct tonen */
.review-avatar-wrap:not(:has(img)) .review-avatar-init,
.review-avatar-wrap .review-avatar-init:only-child {
  display: flex;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-naam {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-tijd {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.review-google-logo { margin-left: auto; flex-shrink: 0; }

/* Sterren */
.review-stars { display: flex; gap: 3px; }
.review-stars i { font-size: 14px; }

/* Tekst */
.review-tekst {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.review-quote-open {
  color: var(--accent-color); /* ? accentkleur */
  font-size: 20px;
  margin-right: 4px;
  vertical-align: -3px;
}
.review-quote-close {
  color: var(--accent-color); /* ? accentkleur */
  font-size: 20px;
  margin-left: 4px;
  vertical-align: -3px;
  transform: rotate(180deg);
  display: inline-block;
}

/* Swiper paginatie */
.testimonials .swiper-pagination-bullet {
  background: rgba(255,255,255,.4);
  opacity: 1;
}
.testimonials .swiper-pagination-bullet-active {
  background: var(--accent-color); /* ? accentkleur */
}

/* Gelijke hoogte voor alle slides */
.testimonials .swiper-wrapper {
  align-items: stretch;
}
.testimonials .swiper-slide {
  height: auto;  /* laat Swiper de hoogte bepalen op basis van de hoogste slide */
}


/* -------------------------------------------------------------------
   14. PORTFOLIO / REALISATIES SECTIE
-------------------------------------------------------------------- */
.portfolio-filters {
  list-style: none;
  padding: 0; margin: 0 0 35px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.portfolio-filters li {
  cursor: pointer;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: all 0.3s;
}
.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: var(--accent-color); /* ? accentkleur */
  border-color: var(--accent-color);
  color: #fff;
}
.portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.portfolio-content img {
  width: 100%; height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-content:hover img { transform: scale(1.06); }

/* Info-paneel ? twee staten: compact (titel) en uitgebreid (titel + desc) */
.portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  /* Gradient van transparant ? donker */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    transparent 100%
  );
  padding: 48px 18px 16px;   /* ruime padding boven zodat gradient mooi loopt */
  transition: padding 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Titel ? altijd zichtbaar */
.portfolio-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  transition: margin-bottom 0.35s ease;
}

/* Beschrijving + icoontjes ? verborgen, schuiven op bij hover */
.portfolio-info .portfolio-desc,
.portfolio-info .portfolio-actions {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
  margin-top: 0;
}

/* Hover: paneel uitklappen */
.portfolio-content:hover .portfolio-info {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.75) 60%,
    transparent 100%
  );
  padding-top: 60px;
}
.portfolio-content:hover .portfolio-info h3 {
  margin-bottom: 6px;
}
.portfolio-content:hover .portfolio-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 0;
}
.portfolio-content:hover .portfolio-actions {
  max-height: 40px;
  opacity: 1;
  margin-top: 10px;
}

/* Beschrijvingstekst */
.portfolio-desc {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  margin: 0;
}

/* Actie-icoontjes */
.portfolio-actions {
  display: flex;
  gap: 8px;
}
.portfolio-actions a {
  color: #fff;
  font-size: 19px;
  transition: color 0.25s, transform 0.25s;
  line-height: 1;
}
.portfolio-actions a:hover {
  color: var(--accent-color); /* ? accentkleur */
  transform: scale(1.15);
}


/* -------------------------------------------------------------------
   15. CONTACT SECTIE
-------------------------------------------------------------------- */
.contact .info-item {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  text-align: center;
}
.contact .info-item i {
  font-size: 38px;
  color: var(--accent-color); /* ? accentkleur */
  margin-bottom: 12px;
}
.contact .info-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.contact .info-item p, .contact .info-item a {
  font-size: 15px;
  color: var(--default-color);
}
.contact .info-item a:hover { color: var(--accent-color); }

.contact .contact-form input,
.contact .contact-form textarea {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
  padding: 10px 16px;
  width: 100%;
  font-size: 15px;
  background: var(--surface-color);
  color: var(--default-color);
}
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color); /* ? accentkleur */
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.contact .contact-form button {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, opacity 0.2s;
}
.contact .contact-form button:hover:not(:disabled) {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
.contact .contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* reCAPTCHA verplichte vermelding (vervangt de zwevende badge) */
.recaptcha-notice {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  line-height: 1.5;
}
.recaptcha-notice a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: underline;
}
.recaptcha-notice a:hover { color: var(--accent-color); }

/* Verberg de standaard reCAPTCHA badge rechtsonder
   (vervangen door de tekstvermelding in het formulier) */
.grecaptcha-badge { visibility: hidden !important; }


/* -------------------------------------------------------------------
   16. FAQ SECTIE
-------------------------------------------------------------------- */

/* Wrapper ? max breedte voor leesbaarheid */
.faq .accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Elk item = aparte kaart met schaduw en afgeronde hoeken */
.faq .accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px !important;
  background: var(--surface-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq .accordion-item:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Vraag-knop */
.faq .accordion-button {
  background: var(--surface-color);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  box-shadow: none;
  border-radius: 12px !important;
  transition: color 0.25s, background 0.25s;
  gap: 12px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--accent-color); /* ? accentkleur */
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px 12px 0 0 !important;
}
.faq .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/* Pijltje ? accentkleur als open */
.faq .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  filter: none;
  opacity: .5;
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}
.faq .accordion-button:not(.collapsed)::after {
  filter: invert(40%) sepia(80%) saturate(500%) hue-rotate(340deg);
  opacity: 1;
}

/* Antwoord-body */
.faq .accordion-body {
  padding: 4px 24px 22px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


/* -------------------------------------------------------------------
   17. FOOTER
-------------------------------------------------------------------- */
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
}
.footer .footer-top { padding: 60px 0 30px; }
.footer .footer-heading, .footer h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 20px;
}
.footer .footer-contact p { margin-bottom: 4px; }
.footer .footer-contact a { color: var(--accent-color); } /* ? accentkleur */
.footer .footer-links ul {
  list-style: none; padding: 0;
}
.footer .footer-links ul li {
  padding: 4px 0;
  display: flex; align-items: center; gap: 6px;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: color 0.3s;
}
.footer .footer-links ul a:hover { color: var(--accent-color); } /* ? accentkleur */
.footer .footer-links i {
  color: var(--accent-color); /* ? accentkleur */
  font-size: 12px;
}
.footer .social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  margin-right: 8px;
}
.footer .social-links a:hover {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
}
.footer .footer-newsletter .newsletter-form {
  display: flex; gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}
.footer .footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
}
.footer .footer-newsletter input[type="submit"],
.footer .footer-newsletter button[type="submit"] {
  background: var(--accent-color); /* ? accentkleur */
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
}
.footer .footer-newsletter input[type="submit"]:hover,
.footer .footer-newsletter button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.footer .footer-newsletter button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.footer .copyright {
  padding: 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.footer .credits a { color: var(--accent-color); } /* ? accentkleur */


/* -------------------------------------------------------------------
   18. SKIP-LINK (toegankelijkheid)
-------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-color);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* -------------------------------------------------------------------
   RESPONSIVE AANPASSINGEN
-------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .navmenu ul { gap: 16px; }
}

@media (max-width: 991px) {
  .hero h1 { font-size: 36px; }
  .hero p  { font-size: 15px; }
}

/* -- Mobiel navigatiemenu -------------------------------------------- */
@media (max-width: 1199px) {

  /* Navmenu: verborgen rechts buiten beeld */
  .navmenu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: #0d1b2a;
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
    padding: 80px 24px 24px;
    transition: right 0.35s ease;
    z-index: 9999;  /* ? hoogste: menu staat voor alles */
    overflow-y: auto;
  }

  /* Menu open */
  body.mobile-nav-active .navmenu {
    right: 0;
  }

  /* Donkere overlay ? ACHTER het menu, maar voor de rest */
  body.mobile-nav-active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;  /* ? achter menu (9999) maar voor pagina-inhoud */
  }

  /* Nav links verticaal */
  .navmenu ul {
    flex-direction: column;
    gap: 0;
    padding: 0; margin: 0;
    list-style: none;
  }
  .navmenu ul li {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .navmenu ul a {
    color: #fff;
    padding: 14px 4px;
    display: block;
    font-size: 16px;
    font-weight: 500;
  }
  .navmenu ul a:hover,
  .navmenu ul a.active {
    color: var(--accent-color); /* ? accentkleur */
  }
}

@media (max-width: 767px) {
  .hero { padding: 100px 0 60px; }
  .hero .btn-watch-video { margin-left: 12px; }
  .stats .stats-item span { font-size: 32px; }
  .portfolio-content img { height: 200px; }
}


/* -------------------------------------------------------------------
   20. GROND & AFBRAAK PAGINA
-------------------------------------------------------------------- */

/* Hero */
.grond-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url('../img/kraanwerk.jpg') center/cover no-repeat;
  padding: 80px 0;
}
.grond-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}
.grond-hero-content {
  position: relative; z-index: 2;
}
.min-vh-hero { min-height: 60vh; }

.grond-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.grond-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.grond-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  line-height: 1.7;
}

/* Hero knoppen */
.btn-grond-primary {
  display: inline-flex; align-items: center;
  background: var(--accent-color);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-grond-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  color: #fff;
}
.btn-grond-outline {
  display: inline-flex; align-items: center;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: border-color .25s, background .25s;
}
.btn-grond-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.btn-grond-outline-light {
  display: inline-flex; align-items: center;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: all .25s;
}
.btn-grond-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

/* USP balk */
.grond-usp-balk {
  background: var(--accent-color);
  padding: 0;
}
.grond-usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,.2);
}
.grond-usp-item:last-child { border-right: none; }
.grond-usp-item i { font-size: 20px; }

/* Dienst kaarten */
.grond-dienst-kaart {
  background: var(--surface-color);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 3px 20px rgba(0,0,0,.07);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.grond-dienst-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.grond-dienst-icon {
  width: 56px; height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.grond-dienst-icon i {
  font-size: 26px;
  color: var(--accent-color);
}
.grond-dienst-kaart h3 {
  font-size: 18px; font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.grond-dienst-kaart p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.65;
  margin-bottom: 16px;
}
.grond-dienst-kaart ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.grond-dienst-kaart ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.grond-dienst-kaart ul li i {
  color: var(--accent-color);
  font-size: 15px; flex-shrink: 0;
}

/* Werkwijze stappen */
.grond-stap {
  background: var(--surface-color);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 3px 16px rgba(0,0,0,.07);
  position: relative;
  overflow: hidden;
}
.grond-stap-nr {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 88%);
  line-height: 1;
  font-family: var(--heading-font);
}
.grond-stap-icon {
  width: 60px; height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.grond-stap-icon i { font-size: 26px; color: var(--accent-color); }
.grond-stap h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.grond-stap p { font-size: 14px; color: color-mix(in srgb, var(--default-color), transparent 20%); line-height: 1.65; margin: 0; }

/* CTA banner */
.grond-cta-banner {
  padding: 80px 0;
  background: #0d1b2a;
}
.grond-cta-banner h2 {
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.grond-cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 0;
}