:root {
  --main-color: #252758;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f5f6fa;
  --accent: #e6e7ff;
}

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



body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
  background: linear-gradient(180deg, var(--main-color) 60%, #1b1c3e);
  color: var(--text-light);
  text-align: center;
  padding: 50px 20px 80px;
}

header img {
  width: 160px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}

.logo-block {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: inline-block;
}

.logo-block img {
  width: 175px;
  display: block;
  margin: 0 auto;
}

.logo-block span {
  display: block;
  font-size: 0.85rem;
  color: #15AF97;
  margin-top: 0px;
  font-style: bold;
}



header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-inline: auto;
}


header a {
  display: inline-block;
  background: #fff;
  color: var(--main-color);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

header a:hover {
  background: var(--accent);
}

/* Algemene secties */
section {
  width: 90%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 40px;
}

#features {
  width: 100vw;                /* volledige schermbreedte */
  max-width: none;             
  margin: 0;
  padding: 100px 4vw;          /* lucht aan de zijkanten in verhouding tot scherm */
  position: relative;
  background: rgb(237, 240, 241);
  color: var(--text-light);
  overflow: hidden;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1650px;           /* zorgt dat content niet te breed wordt op ultrabrede schermen */
  margin: 0 auto;              /* centreren binnen full-width achtergrond */
  position: relative;
  z-index: 1;
}


@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: rgba(22, 176, 152, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(40px);
}

.feature.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease-out;
}

.feature:nth-child(1).visible { transition-delay: 0.1s; }
.feature:nth-child(2).visible { transition-delay: 0.2s; }
.feature:nth-child(3).visible { transition-delay: 0.3s; }
.feature:nth-child(4).visible { transition-delay: 0.4s; }
.feature:nth-child(5).visible { transition-delay: 0.5s; }

.feature i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.feature h3, .feature p {
  color: #fff;
}

.feature p {
  color: #f0f0f0;
  font-size: 0.95rem;
}
/* ===============================
   ALGEMENE INSTELLINGEN
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1b1c3e;
  background-color: #fff;
}
/* ===============================
   ALGEMENE INSTELLINGEN
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1b1c3e;
  background-color: #fff;
}

/* ===============================
   INFO SECTIES
   =============================== */
.info-section {
  width: 100%;
  padding: 70px 5vw;
}

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.info-section.alt .info-wrapper {
  flex-direction: row-reverse;
}

.info-text {
  flex: 0 0 40%;
}

.info-image {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
}

.info-section.alt .info-text {
  text-align: right; /* tekst rechts uitlijnen bij tweede blok */
}

.info-text h2 {
  color: #1b1c3e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.info-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #15AF97;
  font-weight: 400;
}

.info-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1500x;
}

/* ===============================
   DEVICE LABELS – onder kloksectie
   =============================== */
.device-labels {
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.device-label {
  background: #15AF97;
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.device-label i {
  font-size: 1.2rem;
}

.device-label:hover {
  transform: translateY(-3px);
  background: #15AF97; /* iets donkerder blauw bij hover */
}

.device-label img.rfid-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* maakt wit zoals de tekst */
}


/* Responsief */
@media (max-width: 600px) {
  .device-labels {
    gap: 15px;
    justify-content: center;

  }

  .device-label {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}


/* ===============================
   RESPONSIVE STYLING
   =============================== */
@media (max-width: 900px) {
  .info-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .info-section.alt .info-wrapper {
    flex-direction: column;
  }

  .info-text,
  .info-image {
    flex: 1 1 100%;
  }

  .info-text h2 {
    text-align: center;
    font-size: 2rem;
  }

  .info-text p {
    text-align: center;
  }

  .info-image img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}


/* =========================
   Clients - algemene stijl
   ========================= */
#clients {
  background: #f8f9fb;
  padding: 60px 5vw;
  text-align: center;
  overflow: hidden;
}

#clients h2 {
  color: var(--main-color);
  font-size: 1.5rem;
  margin-bottom: 40px;
}

/* wrapper voorkomt scrollbars en biedt centering */
.client-slider {
  width: 100%;
  overflow: hidden;
  display: block;
}

/* track bevat twee sets naast elkaar voor vloeiende loop */
.client-track {
  display: inline-flex;       /* inline-flex voor exacte breedte */
  white-space: nowrap;        /* geen wrapping */
  animation: trackSlide 15s linear infinite; /* animatie mobiele slider */
}

/* elke set is een flex-row van logo's */
.client-set {
  display: inline-flex;
  align-items: center;
}

/* logo styling */
.client-set img {
  height: 80px;
  width: auto;
  margin-right: 50px;       /* ruimte tussen logo's */
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-set img:hover {
  filter: grayscale(0%);
  opacity: 1;
  /* transform: scale(1.05); */
}

/* extra spacing aan het einde van eerste set voor vloeiende overgang */
.client-set:first-child img:last-child {
  margin-right: 50px;       /* past bij gap tussen logo's */
}

/* --- Mobiel: animatie & hover-pauze --- */
@media (max-width: 768px) {
  .client-track {
    justify-content: flex-start;  /* startpositie van de loop */
  }

  .client-track:hover,
  .client-track:active {
    animation-play-state: paused; /* pauze bij aanraken/hover */
  }
}

/* keyframes animatie: schuif precies één set */
@keyframes trackSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* schuif 1 volledige set weg */
}

/* --- Desktop: toon enkel eerste set, behoud centering --- */
@media (min-width: 769px) {
  .client-track {
    justify-content: center;
    animation: none;           /* geen animatie op desktop */
  }

  /* verberg duplicaatset op desktop */
  .client-track .client-set:nth-child(2) {
    display: none;
  }
}





/* Prices Section */
#prices {
  color: #fff;
  padding: 80px 5vw;
}

.price-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.price-card {
  background: #252758;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  flex: 1 1 400px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-badge-banner {
  background: #15AF97;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  position: absolute;
  top: -14px;
  left: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-card h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.price-items li,
.extras li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  
}

.price-items li i,
.extras li i {
  width: 30px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  margin-right: 14px;
}

.item-text {
  flex-grow: 1;
  text-align: left;
}

.item-price, .price-main, .price-badge {
  background: #15AF97;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.item-price {
  padding: 2px 8px;
  font-weight: 700;
}

.price-main {
  padding: 5px 16px;
  font-weight: 900;
  font-size: 1.5em;
  display: inline-block;
}

.price-badge {
  padding: 2px 8px;
  font-weight: 700;
  display: inline-block;
}

.price-sub {
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
}

.price-note {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 20px;
  text-align: right;
}

/* Abonnement: ronde prijs in het midden */
.abonnement-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 260px;
}

.price-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #15AF97;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 22px rgba(21,175,151,0.18);
  margin: 12px 0;
}

.price-circle .amount {
  color: #fff;
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
}

.price-circle .per {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .price-circle {
    width: 110px;
    height: 110px;
  }
  .price-circle .amount {
    font-size: 1.45rem;
  }
  .price-circle .per {
    font-size: 0.85rem;
  }
}

@media (max-width: 800px) {
  .price-section {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    max-width: 100%;
  }
}

/* Contactsectie */
.contact-info {
  max-width: 800px;
  margin: 20x auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

#contact {
  background: rgb(237, 240, 241);
  border-radius: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item .icon {
  width: 22px;
  height: 22px;
  filter: invert(13%) sepia(7%) saturate(5374%) hue-rotate(210deg) brightness(94%) contrast(88%);
}

.contact-item a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.contact-item a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* CTA-knoppen */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--main-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta i {
  font-size: 1rem;
}

.btn-cta:hover {
  background: #1b1c5e;
}

/* Footer */
footer {
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 20px;
  margin-top: 50px;
}

/* Lottie */
.lottie-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  margin: 0 auto 30px;
}

.lottie-container lottie-player {
  width: 180px;
  height: 180px;
}

/* -------- Contact sectie in 2 kolommen -------- */
#contact {
  width: 100%;
  background: var(--bg-light);
  padding: 80px 6vw;
}

.contact-wrapper {
  display: flex;
  gap: 65px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.contact-wrapper {
  display: flex;
  gap: 65px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch; /* <-- zorgt dat contact-left en contact-right even hoog zijn */
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column; /* optioneel: handig voor binnenstructuur */
}

.contact-left h2,
.contact-right h2 {
  color: var(--main-color);
  margin-bottom: 15px;
}

.contact-right p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* mobiel */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* -------- TEED voordelenlijst -------- */
.teed-benefits {
  list-style: none;
  margin-top: 25px;
  padding-left: 0;
}

.teed-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

.teed-benefits i {
  color: #15AF97; /* accentkleur van TEED */
  font-size: 1.rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* -------- TEED voordelenlijst -------- */
.teed-benefits-abbonement {
  list-style: none;
  margin-top: 25px;
  padding-left: 0;
}

.teed-benefits-abbonement  li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.teed-benefits-abbonement  i {
  color: #15AF97; /* accentkleur van TEED */
  font-size: 1.rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.kvk-btw {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666; /* subtieler dan de rest */
}

.kvk-btw p {
  margin: 0;
}


