:root {
  --primary: #1AA38A;
  --text: #1f2d2a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f9fafb;

  --radius: 14px;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
}

/* ================= HEADER ================= */

header{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #eee;
  z-index:1000;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  padding:15px 20px;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.cta{
  background:#1AA38A;
  color:white;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

header img{
  height:50px;
  width:auto;
}

.logo-link{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-link strong{
  font-size:20px;
}

/* ================= HERO ================= */

.hero{
  height:100vh;
  background:url('hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:120px;
}

.hero-overlay{
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(10px);
  padding:50px;
  border-radius:20px;
  max-width:650px;
  color:white;
}

.hero h1{
  font-size:42px;
  margin-bottom:20px;
}

.hero p{
  color:#ddd;
  margin-bottom:15px;
}

.alert{
  background:rgba(255,255,255,0.1);
  padding:15px;
  border-radius:10px;
  margin-bottom:20px;
}

.hero{
  margin-top:80px; /* ruimte voor fixed header */
}

/* ================= BUTTONS ================= */

.buttons{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.btn{
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.2s;
}

.primary{
  background:var(--primary);
  color:white;
}

.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(26,163,138,0.25);
}

.secondary{
  background:#1f2d2a;
  color:white;
}

.secondary:hover{
  background:#2a3f3b;
}

.section {
  text-align: center;
}

.center-btn{
  display:inline-block;
  margin-top:40px;
}
/* ================= WHATSAPP ================= */

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  padding:14px 18px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
  z-index:999;
}

/* ================= SECTION GENERAL ================= */

.section{
  padding:80px 20px;
  text-align:center;
  overflow:visible;
}

.center{
  max-width:600px;
  margin:20px auto;
}

section{
  scroll-margin-top:100px;
}


/* ================= PROBLEMS ================= */

.problems-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr); /* 👈 geforceerd 5 */
  gap:25px;
  max-width:1200px;
  margin:40px auto;
}

.problem-card{
  background:white;
  border-radius:16px; /* iets subtieler */
  padding:12px;       /* 👈 kleiner */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition:0.3s;
  text-align:center;
}

.problem-card:hover{
  transform:translateY(-4px);
}

.problem-card img{
  width:100%;
  height:120px; /* 👈 was 160 */
  object-fit:cover;
  margin-bottom:8px;
}

.problem-label{
  display:flex;
  flex-direction:column; /* 👈 onder elkaar */
  align-items:center;
  text-align:center;
  gap:3px;
  font-size:13px;
}

.problem-label strong{
  font-size:14px;
}

.check{
  color:#1AA38A;
  font-weight:bold;
}


/* ================= SERVICES ================= */

.service-card{
  text-align:center;
  background:white;
  padding:30px 25px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  border:1px solid var(--border);

  width:320px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:0.3s;
  cursor:pointer;
  position:relative; /* nodig voor badge */
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.service-card.highlight::before{
  content:"MOST POPULAR";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--primary);
  color:white;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  font-weight:600;
}

.service-card .price{
  font-size:24px;
  font-weight:700;
  margin:10px 0;
}

.service-card small{
  font-size:13px;
  color:#777;
}

.service-card p{
  font-size:14px;
  color:var(--muted);
}

.service-card ul li{
  font-size:14px;
}

.service-card img{
  border-radius:12px;
  margin-bottom:15px;
}

.featured{
  border:1.5px solid var(--primary);
  transform:scale(1.03);
  position:relative;
  z-index:2;
}

.service-card h3 {
  font-size:16px; /* 👈 kleiner */
  justify-content:center;
}

.service-card p {
  font-size:14px;
}

.service-card li {
  font-size:13px;
}

.featured::after{
display:none;
  content:"";
  position:absolute;
  left:50%;
  bottom:-30px;
  transform:translateX(-50%);
  width:80%;
  height:60px;
  background:radial-gradient(
    ellipse at center,
    rgba(26,163,138,0.25) 0%,
    rgba(26,163,138,0.1) 40%,
    rgba(26,163,138,0) 70%
  );
  filter:blur(20px);
  z-index:-1;
}

.service-card ul{
  list-style:none;       /* 👈 bullets weg */
  padding:0;
  margin:15px 0;
}

.card.small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.card.small div {
  font-size: 14px;
}

.pro-card {
  background: white;
  padding: 18px 12px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.25s;

  width: 160px;
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.pro-card .icon {
  font-size: 20px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.pro-card .title {
  font-size: 14px;
  font-weight: 500;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(4, 160px);
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* 👈 DIT IS DE FIX */
}

/* ================= RESPONSIVE ================= */



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

}

@media(max-width:1024px){
  .problems-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

/* ================= FORM-BOX ================= */

.form-box{
  max-width:600px;
  margin:40px auto;

  display:flex;
  flex-direction:column;   /* 👈 dit forceert onder elkaar */
  align-items:stretch;
}

.form-box input,
.form-box select,
.form-box textarea{
  width:100%;
  padding:14px;
  margin:10px 0;
  border-radius:12px;
  border:1px solid #ccc;
  box-sizing:border-box;
}

.form-box button{
  width:100%;
  margin-top:10px;
}

.form-note{
  font-size:14px;
  color:#6b7280;
  margin-top:10px;
  text-align:center;
}

/* LOGO */
.logo-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
}

.logo-link img{
  height:65px;
}

.logo-link strong{
  font-size:20px;
}

/* SPACING HELPERS */
.mt-10{ margin-top:10px; }
.mt-25{ margin-top:25px; }
.mt-30{ margin-top:30px; }

/* TEXT */
.bold{
  font-weight:600;
}

/* FOOTER */

footer{
  text-align:center;
  padding:40px 20px;
}

/* NAVIGATIE */

.nav-link{
  position:relative;
  padding:5px 0;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#1AA38A;
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}

.nav-link.active{
  color:#1AA38A;
}

.nav-link.active::after{
  width:100%;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.2s;
}

nav a:hover{
  color:#1AA38A;
}

/* MOBILE MENU BUTTON */
.menu-toggle{
  display:none;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
}

/* NAV standaard */

nav{
  display:flex;
}

/* MOBILE */

@media(max-width:768px){

  .menu-toggle{
    display:block;
    font-size:24px;
    background:none;
    border:none;
    cursor:pointer;
  }

  nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;

    display:none; /* verborgen */

    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
  }

  nav.active{
    display:flex;
  }
}

/* ================= SERVICES ================= */

.services-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;

  margin: 60px auto;
  max-width: 1100px;
}

.service-card{
  text-align:center;
  background:white;
  padding:30px 25px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  border:1px solid var(--border);

  width:320px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:0.3s;
  cursor:pointer;
  position:relative;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

/* highlight */
.service-card.highlight{
  border:2px solid var(--primary);
  background:#f4fffb;
  transform:scale(1.05);
}

.service-card.highlight::before{
  content:"MOST POPULAR";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--primary);
  color:white;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
}

/* text */
.service-card .price{
  font-size:24px;
  font-weight:700;
  margin:10px 0;
}

.service-card p{
  font-size:14px;
  color:var(--muted);
}

.service-card ul{
  list-style:none;
  padding:0;
  margin:15px 0;
}

.service-card li{
  font-size:14px;
  margin:5px 0;
}

@media(max-width:900px){

  .services-grid{
    flex-direction:column;
    align-items:center;
  }

  .service-card{
    width:90%;
    max-width:350px;
  }

  .service-card.highlight{
    transform:none;
  }

}

/* INSPECTOR */

.inspector-wrapper{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:40px;
  max-width:900px;
  margin:40px auto;
  flex-wrap:wrap; /* mobiel netjes onder elkaar */
}

.speech-bubble{
  position:relative;
  background:white;
  padding:18px 22px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  font-size:15px;
  max-width:320px;
  cursor:pointer;
  transition:0.25s;

  transform: translateY(-40px) translateX(25px);
}

#professionals {
  text-align: center;
}

#professionals .btn {
  display: inline-block;
  margin: 40px auto 0;
}

/* tekst blok */

.speech-bubble:hover{
  transform: translateY(-44px) translateX(25px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.speech-bubble strong{
  color:#1AA38A;
}

/* pijltje naar rechts (naar inspector) */
.speech-bubble::after{
  content:"";
  position:absolute;
  right:-10px;
  top:35%;
  border-width:10px;
  border-style:solid;
  border-color:transparent transparent transparent white;
}
   

.inspector-img{
  width:180px;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

h2 {
  margin-bottom: 10px;
}

.center{
  text-align:center;
  max-width:700px;
  margin:20px auto;
  color:var(--muted);
}

.hero {
  position: relative;
  background: url('hero.jpg') center/cover no-repeat;
}

@keyframes formHighlight {
  0% {
    box-shadow: 0 0 0 rgba(26,163,138,0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(26,163,138,0.15);
  }
  100% {
    box-shadow: 0 0 0 rgba(26,163,138,0);
  }
}

.form-highlight {
  animation: formHighlight 1.2s ease;
}

.launch-banner{
  background:#1AA38A;
  color:white;
  text-align:center;
  padding:10px;
  font-size:14px;
  font-weight:500;
  position:fixed;
  top:80px; /* onder je header */
  width:100%;
  z-index:999;
}

