/* ===========================
   Riet-Poel Hoveniers — CSS
   Stijl geïnspireerd op deplanttechnicus.nl
   =========================== */

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

:root {
  /* Kleuren */
  --green-dark:   #1A3D28;
  --green-mid:    #2A5E40;
  --green-light:  #3A7D55;
  --green-soft:   #8FBF9F;
  --green-bg:     #EEF5F1;
  --green-border: #C8DDD0;
  --text-dark:    #1E1E1E;
  --text-mid:     #3A3A3A;
  --text-light:   #6A6A6A;
  --white:        #FFFFFF;
  --gray-bg:      #F4F5F7;
  --gray-border:  #DDDDDD;
  --cta:          #E07300;          /* oranje CTA — zelfde als deplanttechnicus */
  --cta-hover:    #C46400;
  --cta-green:    #2A5E40;
  --cta-green-hover: #1A3D28;
  --wa-green:     #25D366;
  --wa-hover:     #1EBF5A;

  /* Typografie */
  --font:         'Open Sans', Arial, sans-serif;
  --font-heading: 'Open Sans', Arial Black, sans-serif;

  /* Vormen — strak, minimale afronding */
  --radius:       3px;
  --radius-lg:    5px;
  --radius-xl:    6px;

  /* Shadows — directioneel, zoals deplanttechnicus */
  --shadow:       3px 4px 9px rgba(0,0,0,.10);
  --shadow-lg:    6px 6px 16px rgba(0,0,0,.13);
  --shadow-hover: 6px 8px 20px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   TYPOGRAFIE
   =========================== */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--text-mid); line-height: 1.7; }
a { color: inherit; text-decoration: none; }

/* ===========================
   LAYOUT
   =========================== */

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 10px;
  border-left: 3px solid var(--cta);
  padding-left: 10px;
}

.section-title { margin-bottom: 14px; }

.section-intro {
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 44px;
  color: var(--text-mid);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: background .15s, transform .12s, box-shadow .15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

/* Oranje primaire CTA — stijl deplanttechnicus */
.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: var(--shadow);
}

/* Groene secundaire button */
.btn-green {
  background: var(--cta-green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--cta-green-hover);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background: var(--wa-hover);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-border);
  padding: 11px 22px;
}
.btn-ghost:hover {
  background: var(--green-bg);
  border-color: var(--green-light);
}

/* ===========================
   NAVIGATIE
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gray-border);
  transition: box-shadow .2s;
}

.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.02em;
}

.nav-logo-sub {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color .15s;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a:hover { color: var(--green-mid); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: all .25s;
}

/* ===========================
   BREADCRUMB
   =========================== */

.breadcrumb {
  padding: 66px 0 0;
  background: var(--white);
}

.breadcrumb-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-border);
}

.breadcrumb-inner a {
  color: var(--text-light);
  transition: color .15s;
}
.breadcrumb-inner a:hover { color: var(--green-mid); }

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

.hero {
  min-height: 100vh;
  /* Vervang de afbeelding in url() door een eigen foto van grote boom/tuin */
  background:
    linear-gradient(110deg, rgba(15,40,22,.90) 0%, rgba(25,60,38,.78) 45%, rgba(35,80,50,.55) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 66px;
}

.hero-inner { padding: 80px 0 100px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 600;
}

/* ===========================
   LANDING PAGE HERO
   =========================== */

.page-hero {
  background:
    linear-gradient(110deg, rgba(15,40,22,.88) 0%, rgba(25,60,38,.75) 55%),
    url('../fotos/hero-boomwerk.jpg') center/cover no-repeat;
  padding: 56px 0 68px;
}

.page-hero h1 {
  color: var(--white);
  max-width: 640px;
  margin-bottom: 14px;
}

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

.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.72;
}

/* ===========================
   DIENSTEN KAARTEN
   =========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--text-light);
}

.service-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-mid);
  background: var(--green-bg);
  border-radius: var(--radius);
  display: inline-block;
  padding: 3px 10px;
}

.service-link-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cta);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===========================
   GARANTIES (3 kolommen)
   =========================== */

.why-section {
  background: var(--green-dark);
  color: var(--white);
}

.why-section .section-label {
  color: var(--cta);
  border-color: var(--cta);
}
.why-section .section-title { color: var(--white); }
.why-section .section-intro { color: rgba(255,255,255,.72); }

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guarantee-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--cta);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: background .2s;
}

.guarantee-card:hover { background: rgba(255,255,255,.10); }

.guarantee-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.guarantee-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.guarantee-card p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.65;
}

/* ===========================
   HOE HET WERKT
   =========================== */

.steps-section { background: var(--gray-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px 32px;
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--cta);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  box-shadow: var(--shadow);
}

.step h3 { margin-bottom: 8px; }

.step p {
  font-size: .88rem;
  color: var(--text-light);
  max-width: 200px;
  margin: 0 auto;
}

/* ===========================
   REVIEWS
   =========================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--cta);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #F5A623;
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: var(--green-mid);
  flex-shrink: 0;
  position: relative;
  border: 2px solid var(--green-border);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.review-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}

.review-meta {
  font-size: .78rem;
  color: var(--text-light);
}

.werkspot-badge {
  text-align: center;
  margin-top: 36px;
}

.werkspot-badge p {
  font-size: .88rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ===========================
   OVER ONS
   =========================== */

.about-section { background: var(--gray-bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h2 { margin-bottom: 18px; }
.about-content p { margin-bottom: 14px; line-height: 1.8; }

.about-quote {
  background: var(--white);
  border-left: 4px solid var(--cta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .97rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.65;
  box-shadow: var(--shadow);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-photo-main {
  aspect-ratio: 4/3;
}

.about-founders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.founder-photo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: .93rem;
  margin-bottom: 2px;
}

.founder-role {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.founder-desc {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===========================
   PHOTO SLOTS
   =========================== */

.photo-slot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-bg);
  border: 2px dashed var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slot-placeholder {
  text-align: center;
  padding: 32px;
  color: var(--text-light);
}

.photo-slot-placeholder svg {
  opacity: .35;
  margin-bottom: 8px;
}

.photo-slot-placeholder p {
  font-size: .8rem;
  color: var(--text-light);
}

/* ===========================
   WERKGEBIED
   =========================== */

.regio-section {
  text-align: center;
  background: var(--white);
}

.regio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.regio-tag {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-border);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.regio-tag:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

/* ===========================
   CONTACT
   =========================== */

.contact-section { background: var(--gray-bg); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info p { margin-bottom: 24px; line-height: 1.8; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
}

.contact-item-icon {
  width: 34px;
  height: 34px;
  background: var(--green-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}

.contact-item-text strong {
  display: block;
  font-size: .76rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--cta);
}

.contact-form h3 { margin-bottom: 22px; font-size: 1.15rem; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(58,125,85,.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}

/* ===========================
   LANDING PAGE — extra secties
   =========================== */

.lp-intro { padding: 60px 0; background: var(--white); }

.lp-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-intro-photo { aspect-ratio: 4/3; }

.lp-features { padding: 60px 0; background: var(--gray-bg); }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--green-light);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 { font-size: .95rem; margin-bottom: 3px; }

.feature-item p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.lp-faq { padding: 60px 0; background: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}

.faq-question:hover { background: var(--gray-bg); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform .25s;
  color: var(--cta);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

.lp-related { padding: 60px 0; background: var(--green-bg); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--green-border);
  border-top: 3px solid var(--green-light);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: block;
  box-shadow: var(--shadow);
}

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

.related-card-icon { font-size: 1.4rem; margin-bottom: 8px; }

.related-card h4 {
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.related-card p {
  font-size: .83rem;
  color: var(--text-light);
}

/* CTA balk */
.lp-cta {
  background: var(--green-dark);
  padding: 64px 0;
  text-align: center;
}

.lp-cta h2 { color: var(--white); margin-bottom: 14px; }
.lp-cta p { color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 28px; font-size: 1rem; }

.lp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Regio */
.regio-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

/* ===========================
   ALGEMENE VOORWAARDEN
   =========================== */

.av-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.av-content h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-border);
}

.av-content h2:first-child { margin-top: 0; }

.av-content p {
  margin-bottom: 12px;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.av-content ol, .av-content ul {
  margin: 0 0 14px 20px;
}

.av-content li {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.av-intro-box {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: .9rem;
  color: var(--text-mid);
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.65);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  margin-bottom: 18px;
}

.footer-col h4 {
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color .15s;
}

.footer-col ul li a:hover { color: var(--white); }

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

.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-bottom a:hover { color: var(--white); }

/* ===========================
   FLOATING WHATSAPP
   =========================== */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 54px;
  height: 54px;
  background: var(--wa-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.wa-float svg { width: 28px; height: 28px; }

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

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .about-inner,
  .contact-inner,
  .lp-intro-inner { grid-template-columns: 1fr; gap: 36px; }

  .about-founders-row { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step { text-align: left; display: flex; gap: 18px; padding: 0; }
  .step-number { margin: 0; flex-shrink: 0; }
  .step p { max-width: none; margin: 0; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero-inner { padding: 52px 0 72px; }
  .hero-trust { gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 22px; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .about-founders-row { grid-template-columns: 1fr; }
  .av-content { padding: 40px 16px 60px; }
}

/* Mobile nav */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--gray-border);
  padding: 16px 24px 20px;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
}

/* ===========================
   DROPDOWN NAV
   =========================== */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown > a::after { content: '▾'; font-size: .7rem; opacity: .6; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--green-bg); color: var(--green-mid); }
.has-dropdown:hover .dropdown { display: block; }

/* Mobile dropdown: always expanded in open nav */
@media (max-width: 900px) {
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green-border);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    min-width: auto;
    display: none;
  }
  .nav.open .has-dropdown .dropdown { display: block; }
  .has-dropdown > a::after { content: ''; }
}

/* ===========================
   GROENCHECK BANNER (brede balk in diensten)
   =========================== */
.groencheck-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(110deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.groencheck-banner-text { flex: 1; min-width: 220px; }
.groencheck-banner-text .section-label { color: var(--green-soft); margin-bottom: 8px; }
.groencheck-banner-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.groencheck-banner-text p { color: rgba(255,255,255,.82); font-size: .97rem; margin: 0; }
.groencheck-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .18s, transform .15s;
  box-shadow: var(--shadow);
}
.groencheck-banner-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
@media (max-width: 600px) {
  .groencheck-banner { padding: 28px 22px; }
  .groencheck-banner-cta { width: 100%; justify-content: center; }
}

.nav.open .nav-links a { font-size: .95rem; }
