/* =============================================
   Jorden Advisering – Huisstijl
   Primaire kleuren: groen gradient (#c8e832 → #4a8c1c)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

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

:root {
  --groen-licht:   #c8e832;
  --groen-midden:  #6db33f;
  --groen-donker:  #4a8c1c;
  --groen-banner:  #3d7a15;
  --wit:           #ffffff;
  --tekst-donker:  #2d2d2d;
  --tekst-midden:  #555555;
  --achtergrond:   #f8f9f5;
  --rand:          #e2ead0;
  --gradient: linear-gradient(135deg, var(--groen-donker) 0%, var(--groen-midden) 60%, var(--groen-licht) 100%);
  --font: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(74,140,28,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--tekst-donker);
  background: var(--wit);
  line-height: 1.65;
  font-size: 16px;
}

/* ---- NAVIGATIE ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wit);
  border-bottom: 2px solid var(--rand);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tekst-donker);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tekst-midden);
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.actief {
  color: var(--groen-donker);
  border-bottom-color: var(--groen-midden);
}

.nav-cta {
  background: var(--gradient);
  color: var(--wit) !important;
  padding: 8px 20px;
  border-radius: 6px;
  border-bottom: none !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

/* hamburger mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tekst-donker);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- HERO ---- */
.hero {
  background: var(--gradient);
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 300' opacity='0.08'%3E%3Cg fill='none' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='260' y='40' width='28' height='120'/%3E%3Crect x='295' y='20' width='28' height='140'/%3E%3Crect x='330' y='55' width='28' height='105'/%3E%3Cpath d='M200 160 Q300 80 400 160'/%3E%3Cline x1='190' y1='160' x2='415' y2='160'/%3E%3Cline x1='270' y1='120' x2='270' y2='160'/%3E%3Cline x1='285' y1='105' x2='285' y2='160'/%3E%3Cline x1='300' y1='95' x2='300' y2='160'/%3E%3Cline x1='315' y1='105' x2='315' y2='160'/%3E%3Cline x1='330' y1='120' x2='330' y2='160'/%3E%3C/g%3E%3C/svg%3E") center/60% no-repeat;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--wit);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--groen-licht);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ---- KNOPPEN ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-wit {
  background: var(--wit);
  color: var(--groen-donker);
}
.btn-wit:hover { background: var(--groen-licht); color: var(--groen-banner); }

.btn-groen {
  background: var(--gradient);
  color: var(--wit);
}
.btn-groen:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  color: var(--groen-donker);
  border: 2px solid var(--groen-midden);
}
.btn-outline:hover { background: var(--groen-midden); color: var(--wit); }

.btn-groep { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- SECTIES ---- */
section { padding: 80px 5%; }

.sectie-kop {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--groen-donker);
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--tekst-donker);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tekst-donker);
  margin-bottom: 0.5rem;
}

p { color: var(--tekst-midden); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- KAARTEN GRID ---- */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.kaart {
  background: var(--wit);
  border: 1.5px solid var(--rand);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.kaart:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.kaart-icoon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.kaart-icoon svg { width: 24px; height: 24px; stroke: white; fill: none; }

/* ---- GROEN SECTIE ---- */
.sectie-groen {
  background: var(--gradient);
  color: var(--wit);
  text-align: center;
}

.sectie-groen h2,
.sectie-groen p { color: var(--wit); }

.sectie-groen p { color: rgba(255,255,255,0.85); }

/* ---- LICHT GRIJS SECTIE ---- */
.sectie-licht { background: var(--achtergrond); }

/* ---- CONTACT FORMULIER ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info p { margin-bottom: 1.2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--groen-donker);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail a {
  color: var(--groen-donker);
  font-weight: 600;
  text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

form { display: flex; flex-direction: column; gap: 1rem; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tekst-donker);
  margin-bottom: 0.25rem;
  display: block;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--rand);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--tekst-donker);
  background: var(--wit);
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--groen-midden);
  box-shadow: 0 0 0 3px rgba(109,179,63,0.15);
}

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

/* ---- OVER PAGINA ---- */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.over-visual {
  background: var(--gradient);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-visual svg { width: 100%; max-width: 240px; }

.waarden-rij {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.waarde-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.waarde-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- DIENSTEN PAGINA ---- */
.dienst-blok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  align-items: center;
}

.dienst-blok.omgekeerd { direction: rtl; }
.dienst-blok.omgekeerd > * { direction: ltr; }

.dienst-visual {
  background: var(--achtergrond);
  border: 1.5px solid var(--rand);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dienst-visual svg {
  width: 100%;
  max-width: 180px;
  stroke: var(--groen-donker);
  fill: none;
}

/* ---- TESTIMONIALS / CITAAT ---- */
.citaat {
  background: var(--achtergrond);
  border-left: 4px solid var(--groen-midden);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.citaat p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--tekst-donker);
  margin-bottom: 0.5rem;
}

.citaat cite { font-size: 0.85rem; color: var(--groen-donker); font-weight: 600; }

/* ---- TESTIMONIAL KAART ---- */
.testimonial-kaart {
  background: var(--wit);
  border: 1.5px solid var(--rand);
  border-radius: 12px;
  padding: 2.2rem 2.4rem;
  margin-top: 1.8rem;
  position: relative;
}

.quote-icoon {
  width: 28px;
  height: 21px;
  color: var(--groen-midden);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-tekst {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--tekst-donker);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.testimonial-auteur {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rand);
}

.auteur-info { display: flex; flex-direction: column; }

.auteur-info strong {
  font-size: 0.95rem;
  color: var(--tekst-donker);
  font-weight: 700;
}

.auteur-info span {
  font-size: 0.82rem;
  color: var(--groen-donker);
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

/* ---- FOOTER ---- */
footer {
  background: var(--tekst-donker);
  color: rgba(255,255,255,0.75);
  padding: 3rem 5% 1.5rem;
}

.footer-rij {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-merk img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 0.8rem; }
.footer-merk p { font-size: 0.88rem; max-width: 240px; }

.footer-kolom h4 {
  color: var(--wit);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-kolom ul { list-style: none; }
.footer-kolom li { margin-bottom: 0.5rem; }
.footer-kolom a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-kolom a:hover { color: var(--groen-licht); }

.footer-onder {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-onder a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-onder a:hover { color: var(--groen-licht); }

/* ---- SUCCESMELDING ---- */
.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid var(--groen-midden);
  color: var(--groen-donker);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- PAGINA BANNER ---- */
.pagina-banner {
  background: var(--gradient);
  padding: 60px 5% 56px;
  text-align: center;
}

.pagina-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--wit);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.pagina-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--wit); padding: 1.5rem 5%; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  nav { position: relative; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .over-grid { grid-template-columns: 1fr; }
  .dienst-blok { grid-template-columns: 1fr; }
  .dienst-blok.omgekeerd { direction: ltr; }
  .footer-rij { grid-template-columns: 1fr; gap: 2rem; }
  .stats-balk { gap: 2rem; }
  section { padding: 60px 5%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
