/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --green-900: #14321f;
  --green-700: #1e5c35;
  --green-600: #2a7a48;
  --green-500: #368a56;
  --green-400: #5aab75;
  --green-100: #e8f5ed;
  --green-50:  #f3faf5;
  --accent:    #e8861a;
  --accent-h:  #cf7415;
  --white:     #ffffff;
  --gray-50:   #f8f9f8;
  --gray-100:  #eef0ee;
  --gray-300:  #c4ccc4;
  --gray-500:  #7a887a;
  --gray-700:  #3d4a3d;
  --text:      #1a261a;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --max-w:     1140px;
  --r:         10px;
  --sh-sm:     0 2px 10px rgba(0,0,0,.07);
  --sh-md:     0 6px 28px rgba(0,0,0,.10);
  --sh-lg:     0 16px 60px rgba(0,0,0,.13);
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--gray-50);
}

/* ── LAYOUT ── */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--green-900);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--gray-700); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 6px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  text-decoration: none;
}
.btn-green   { background: var(--green-600); color: #fff; }
.btn-green:hover   { background: var(--green-700); transform: translateY(-1px); box-shadow: var(--sh-sm); }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover  { background: var(--accent-h); transform: translateY(-1px); box-shadow: var(--sh-sm); }
.btn-outline { background: transparent; color: var(--green-700); border: 2px solid var(--green-600); }
.btn-outline:hover { background: var(--green-600); color: #fff; }

/* ── CHIPS ── */
.chip       { display: inline-block; padding: 4px 13px; background: var(--green-100); color: var(--green-700); border-radius: 50px; font-size: .78rem; font-weight: 600; }
.chip-accent { background: #fef3e2; color: var(--accent-h); }

/* ════════════════════════════════
   HEADER / NAV
════════════════════════════════ */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-900);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  width: 100%; max-width: 100vw; overflow: hidden;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; overflow: hidden;
}
.logo-link  { display: flex; align-items: center; gap: 10px; }
.logo-name  { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #fff; line-height: 1.25; letter-spacing: -.01em; }
.logo-sub   { font-size: .7rem; color: var(--green-400); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.78);
  padding: 8px 13px; border-radius: 6px; transition: all .18s;
  white-space: nowrap;
}
.main-nav a:hover  { color: #fff; background: rgba(255,255,255,.1); }
.main-nav a.active { color: #fff; background: var(--green-600); }


.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: all .25s; }

.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  width: 100%; box-sizing: border-box;
  background: var(--green-900); z-index: 199;
  padding: 28px 24px; flex-direction: column; gap: 4px;
  overflow-y: auto; overflow-x: hidden;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.85);
  padding: 13px 18px; border-radius: 8px; transition: background .15s;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--green-600); color: #fff; }
.mobile-nav .mob-cta { margin-top: 16px; background: var(--accent); color: #fff; text-align: center; border-radius: 6px; }

/* ════════════════════════════════
   PAGE BANNER
════════════════════════════════ */
.page-banner {
  background: linear-gradient(100deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 60px 0 52px;
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E") repeat;
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; }
.page-banner p  { color: rgba(255,255,255,.72); margin-top: 10px; max-width: 580px; }

.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.breadcrumb a      { font-size: .82rem; color: var(--green-400); font-weight: 600; }
.breadcrumb span   { color: rgba(255,255,255,.35); font-size: .82rem; }
.breadcrumb strong { font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ════════════════════════════════
   HERO – volledig groen, geen foto
════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 0;
  position: relative; overflow: hidden;
  max-width: 100vw;
}
.hero::before {
  content: '';
  position: absolute; bottom: -80px; right: 5%;
  width: 520px; height: 520px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -40px; right: 8%;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.hero-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 88px 28px;
  position: relative; z-index: 1;
}
.hero-left { max-width: 700px; position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
  font-size: .78rem; font-weight: 600; color: var(--green-400);
}
.hero-pill::before { content: ''; width: 7px; height: 7px; background: var(--green-400); border-radius: 50%; }

.hero h1       { color: #fff; margin-bottom: 16px; }
.hero h1 em    { font-style: normal; color: var(--green-400); }
.hero-desc     { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 30px; max-width: 500px; }
.hero-actions  { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 36px; margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.stat-n { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-l { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ════════════════════════════════
   TROEVEN BAR
════════════════════════════════ */
.troeven-bar { background: var(--green-700); padding: 22px 0; }
.troeven-list { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.troef {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 28px 6px 0; margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.troef:last-child { border-right: none; margin-right: 0; }
.troef svg   { width: 20px; height: 20px; stroke: var(--green-400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.troef span  { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.88); }

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.section      { padding: 80px 0; }
.section-alt  { background: #fff; }
.section-dark { background: var(--green-900); }

.section-head        { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 12px auto 0; }

.section-kicker {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--green-600); margin-bottom: 8px;
}
.section-dark .section-kicker { color: var(--green-400); }
.section-dark h2 { color: #fff; }
.section-dark p  { color: rgba(255,255,255,.68); }

/* ════════════════════════════════
   CARDS
════════════════════════════════ */
.card {
  background: #fff; border-radius: var(--r);
  border: 1.5px solid var(--gray-100);
  overflow: hidden; transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--green-400); }
.card-img   { width: 100%; height: 200px; object-fit: cover; }
.card-body  { padding: 24px 26px; }
.card-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.card-text  { font-size: .9rem; line-height: 1.65; color: var(--gray-700); }
.card-tags  { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }

/* ════════════════════════════════
   AFVAL TABLE
════════════════════════════════ */
.afval-table { display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--gray-100); }
.afval-row {
  display: grid; grid-template-columns: 180px 1fr;
  border-bottom: 1.5px solid var(--gray-100); background: #fff;
  transition: background .18s;
}
.afval-row:last-child { border-bottom: none; }
.afval-row:hover { background: var(--green-50); }
.afval-row-img  { width: 180px; height: 140px; object-fit: cover; }
.afval-row-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.afval-row-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.afval-row-body p  { font-size: .9rem; color: var(--gray-700); line-height: 1.65; }
.warn {
  margin-top: 10px; font-size: .82rem; font-weight: 600;
  color: #b45309; background: #fef3c7; padding: 5px 12px;
  border-radius: 5px; display: inline-block;
}

/* ════════════════════════════════
   AANKOOP GRID
════════════════════════════════ */
.aankoop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.aankoop-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); overflow: hidden; transition: background .2s;
}
.aankoop-card:hover { background: rgba(255,255,255,.1); }
.aankoop-card img   { width: 100%; height: 180px; object-fit: cover; opacity: .85; }
.aankoop-card-body  { padding: 22px 24px; }
.aankoop-card-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.aankoop-card-body p  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; }

/* ════════════════════════════════
   CONTACT / FORM
════════════════════════════════ */
.contact-grid  { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  background: #fff; border-radius: var(--r);
  border: 1.5px solid var(--gray-100); padding: 22px 24px;
}
.contact-block-kicker { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green-600); margin-bottom: 6px; }
.contact-block h3 { font-size: 1rem; font-weight: 700; color: var(--green-900); margin-bottom: 4px; }
.contact-block p  { font-size: .88rem; color: var(--gray-700); }
.contact-block a  { color: var(--green-600); font-weight: 600; }
.contact-block a:hover { text-decoration: underline; }
.depot-label {
  display: inline-block; background: var(--green-600); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}

.form-card {
  background: #fff; border-radius: var(--r);
  border: 1.5px solid var(--gray-100);
  padding: 36px 40px; box-shadow: var(--sh-sm);
}
.form-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--green-900); margin-bottom: 28px; }

.f-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }

label    { font-size: .84rem; font-weight: 600; color: var(--green-900); display: block; margin-bottom: 4px; }
label em { color: var(--green-600); font-style: normal; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--gray-50); border: 1.5px solid var(--gray-300);
  border-radius: 7px; padding: 11px 14px; outline: none;
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(54,138,86,.12);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232a7a48' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 36px;
}
textarea { min-height: 110px; resize: vertical; }

.form-submit {
  width: 100%; padding: 14px; font-size: 1rem;
  font-weight: 700; margin-top: 4px; border-radius: 7px;
  cursor: pointer;
}
.form-success {
  background: var(--green-100); border: 1.5px solid var(--green-400);
  border-radius: 8px; padding: 18px 22px;
  font-weight: 600; color: var(--green-700); text-align: center;
  margin-bottom: 20px;
}

/* ════════════════════════════════
   NOTICE
════════════════════════════════ */
.notice {
  background: var(--green-50); border: 1.5px solid var(--green-400);
  border-radius: var(--r); padding: 22px 26px;
  display: flex; gap: 14px; align-items: flex-start; margin-top: 40px;
}
.notice svg    { width: 22px; height: 22px; stroke: var(--green-600); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.notice p      { font-size: .9rem; color: var(--gray-700); }
.notice strong { color: var(--green-900); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#site-footer { background: var(--green-900); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: 14px; line-height: 1.65; max-width: 280px; }
.footer-col h4  { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col li a:hover { color: var(--green-400); }

.f-contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.f-contact-line svg  { width: 15px; height: 15px; stroke: var(--green-400); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.f-contact-line span,
.f-contact-line a    { font-size: .875rem; color: rgba(255,255,255,.6); }
.f-contact-line a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: #fff; }


.nav-cta-wrap { display: flex; align-items: center; gap: 10px; margin-left: 14px; flex-shrink: 0; }

.btn-portal {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  font-size: .82rem;
  padding: 8px 14px;
  white-space: nowrap;
}
.btn-portal:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.mob-portal {
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 13px 18px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.2);
  text-align: center; transition: background .15s;
}
.mob-portal:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1020px) {
  .hero-inner { padding: 56px 28px; }
  .aankoop-grid  { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .afval-row     { grid-template-columns: 140px 1fr; }
  .afval-row-img { width: 140px; height: 120px; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-cta-wrap { display: none; }
  .hamburger { display: block; }
  .hero-stats  { flex-wrap: wrap; gap: 20px; }
  .troeven-list { gap: 12px; }
  .troef { border-right: none; padding-right: 0; margin-right: 0; }
  .f-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .afval-row     { grid-template-columns: 1fr; }
  .afval-row-img { width: 100%; height: 200px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .card-img { height: 180px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 56px 0; }
  .page-banner { padding: 44px 0 36px; }
  .hero-inner { padding: 48px 18px; }
}

/* ════════════════════════════════
   FAQ PAGINA
════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1.5px solid var(--gray-100);
  padding: 28px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; }
.faq-q {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.35;
  cursor: default;
}
.faq-a p  { font-size: .95rem; line-height: 1.7; color: var(--gray-700); }
.faq-a a  { color: var(--green-600); font-weight: 600; }
.faq-a a:hover { text-decoration: underline; }

/* Skip-link toegankelijkheid */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--green-600); color: #fff;
  padding: 8px 16px; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 8px; }
