/* =============================================
   GREENIC – Gedeelde stijlen voor alle pagina's
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #04342C;
  --green-mid:   #0F6E56;
  --green-main:  #1D9E75;
  --green-light: #5DCAA5;
  --green-pale:  #9FE1CB;
  --green-bg:    #E1F5EE;
  --text-dark:   #1a1a1a;
  --text-mid:    #444;
  --text-light:  #777;
  --border:      rgba(0,0,0,0.10);
  --bg-white:    #ffffff;
  --bg-off:      #f5f7f5;
  --error:       #C0392B;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-off);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; color: var(--text-mid); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-main); font-weight: 500; }
.nav-cta {
  background: var(--green-main);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .15s;
}
.nav-cta:hover { background: var(--green-mid); }

/* ── HERO ── */
.hero {
  background: var(--green-dark);
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid #085041;
  opacity: 0.4;
}
.hero::after {
  content: '';
  position: absolute; right: 60px; top: 60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid #0F6E56;
  opacity: 0.3;
}
.hero-tag {
  display: inline-block;
  border: 1px solid var(--green-main);
  color: var(--green-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #E1F5EE;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 560px;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--green-light); }
.hero-sub {
  color: var(--green-pale);
  font-size: 15px;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #085041;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #E1F5EE;
}
.stat-label { font-size: 11px; color: var(--green-light); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 3.5rem 2.5rem; }
.section.bg-white { background: var(--bg-white); }
.section.bg-off   { background: var(--bg-off); }
.section.bg-dark  { background: var(--green-dark); }

.section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
  font-weight: 500;
  margin-bottom: .4rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -.5px;
}
.section-title.light { color: #E1F5EE; }

/* ── GRID HELPERS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── CARDS ── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green-mid);
  margin-bottom: 1rem;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.tag {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-mid);
}

/* Dark card (merken) */
.card-dark {
  background: #085041;
  border: 1px solid #0F6E56;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.card-dark-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700; color: #E1F5EE;
}
.card-dark-sub { font-size: 11px; color: var(--green-light); }

/* Logo card (wit) */
.logo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.logo-card-img { height: 52px; display: flex; align-items: center; justify-content: center; }
.logo-card-img svg { max-height: 48px; }
.logo-card-sub { font-size: 11px; color: #666; text-align: center; }

/* ── CERT STRIP ── */
.cert-strip {
  background: var(--green-dark);
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cert-label {
  font-size: 11px; color: var(--green-pale);
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase; flex-shrink: 0;
}
.cert-badge {
  background: #085041;
  border: 1px solid #0F6E56;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: var(--green-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green-dark);
  padding: 2.5rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-banner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700; color: #E1F5EE; margin-bottom: 4px;
}
.cta-banner p { font-size: 13px; color: var(--green-pale); }
.cta-info { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; flex-shrink: 0; }
.cta-email { font-size: 12px; color: var(--green-light); }
.cta-phone {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700; color: #E1F5EE;
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  background: #021f18;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: #5DCAA5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1.25rem; }
  .section { padding: 2.5rem 1.25rem; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-info { align-items: flex-start; }
}
