/* ===== RESET & BASE ===== */
:root {
  --blue:        #0f4c92;
  --blue-mid:    #1a62c5;
  --blue-light:  #e8f1fc;
  --blue-dark:   #092f5e;
  --white:       #ffffff;
  --gray:        #f4f7fb;
  --text:        #1f2d3d;
  --muted:       #5a6d82;
  --orange:      #f47c20;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-phone { color: #fff; font-weight: 600; }

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(9,47,94,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

/* ===== BUTTONS ===== */
.button {
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all .2s;
  text-decoration: none;
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; }
.button-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.button-primary:hover { background: #d96b10; border-color: #d96b10; }
.button-outline { background: var(--white); color: var(--blue); border-color: var(--white); font-weight: 800; }
.button-outline:hover { background: #ddeeff; border-color: #ddeeff; }
.button-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.button-white:hover { background: #e8f1fc; }
.button-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.button-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #ddeeff 0%, #f0f8ff 50%, #ffffff 100%);
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--text);
}
.highlight { color: var(--blue); }
.hero-sub { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.75rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.trust-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid #d3e3f8;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}
.stars { color: #f8b400; letter-spacing: 1px; }
.trust-cert {
  background: var(--white);
  border: 1px solid #d3e3f8;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}
.hero-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15,76,146,0.15);
  width: 100%;
}

/* ===== USP BALK ===== */
.usp-bar { background: var(--blue); color: var(--white); padding: 1rem 0; }
.usp-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; }
.usp-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 500; }
.usp-icon { font-size: 1.1rem; }

/* ===== SECTION BASE ===== */
.section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--blue-dark); }
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.5rem;
}
.section-label.light { color: rgba(255,255,255,0.6); }
.section-title { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin: 0 0 1rem; color: var(--text); }
.section-title.light { color: var(--white); }
.section-desc { color: var(--muted); max-width: 680px; margin: 0 0 2.5rem; }
.section-desc.light { color: rgba(255,255,255,0.75); }

/* ===== VOORDELEN ===== */
.voordelen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.voordeel-card {
  background: var(--gray);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid #dce9f8;
}
.voordeel-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.voordeel-card h3 { margin: 0 0 0.5rem; color: var(--blue); }
.voordeel-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ===== PEST GRID ===== */
.pest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pest-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.pest-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.pest-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.pest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.pest-card:hover .pest-card-img img { transform: scale(1.07); }
.pest-card > span {
  display: block;
  padding: 0.85rem 1rem;
}
.pest-card-img-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,124,32,0.25);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
}
.pest-card-more { background: rgba(244,124,32,0.2); border-color: rgba(244,124,32,0.4); }
.pest-icon { font-size: 2.5rem; }

/* ===== RISICO'S ===== */
.risico-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.risico-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border-top: 4px solid #f44336;
}
.risico-icon { font-size: 2rem; color: #f44336; margin-bottom: 0.5rem; }
.risico-card h3 { margin: 0 0 0.5rem; }
.risico-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.center-cta { text-align: center; }

/* ===== REVIEWS ===== */
.section-reviews { background: var(--blue-light); padding: 5rem 0; }
.reviews-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.score-number { font-size: 3.5rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stars-row { color: #f8b400; font-size: 1.3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(15,76,146,0.07);
}
.review-stars { color: #f8b400; font-size: 1rem; margin-bottom: 0.75rem; }
.review-card p { margin: 0 0 1rem; color: var(--text); font-style: italic; }
.review-author { font-size: 0.88rem; color: var(--muted); font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); padding: 4rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { margin: 0 0 0.5rem; color: var(--white); font-size: 1.75rem; }
.cta-text p { margin: 0; color: rgba(255,255,255,0.85); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-text .section-title { margin-bottom: 0.75rem; }
.contact-list { margin-top: 1.5rem; display: grid; gap: 0.65rem; }
.contact-list li { color: var(--muted); }
.contact-list a { color: var(--blue); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.contact-form {
  background: var(--white);
  border: 1px solid #dce9f8;
  border-radius: 20px;
  padding: 2.25rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(15,76,146,0.08);
}
.contact-form h3 { margin: 0 0 0.25rem; color: var(--blue); }
.contact-form label { font-weight: 600; font-size: 0.9rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #d3e3f8;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.85); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0 3rem; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo img { height: 38px; width: auto; }
.footer-col > p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0.25rem 0 0; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); }
.footer-bottom-nav { display: flex; gap: 1.5rem; }
.footer-bottom-nav a { color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-bottom-nav a:hover { color: var(--white); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 32px rgba(9,47,94,0.15);
  border-top: 3px solid var(--blue);
  transition: bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  bottom: 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 1rem;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}
.cookie-text strong {
  display: block;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.cookie-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 640px;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.button-cookie-decline {
  background: var(--gray);
  color: var(--text);
  border-color: var(--gray);
}
.button-cookie-decline:hover {
  background: #dce9f8;
  border-color: #dce9f8;
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .button { flex: 1; }
}

/* ===== WONING BANNER ===== */
.section-img-banner { background: var(--gray); }
.img-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.img-banner-text p:not(.section-label) { color: var(--muted); margin-bottom: 1.75rem; }
.img-banner-visual {
  position: relative;
}
.img-banner-visual::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--blue-light);
  border-radius: 24px;
  z-index: 0;
}
.img-banner-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(15,76,146,0.22);
}
.img-banner-badge {
  position: absolute;
  z-index: 2;
  bottom: -14px;
  left: -14px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(244,124,32,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* ===== SCROLL ANIMATIES ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== HAMBURGER MENU ===== */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  color: var(--white);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .voordelen-grid { grid-template-columns: repeat(3, 1fr); }
  .pest-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-header { overflow: visible; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .header-inner { flex-wrap: nowrap; justify-content: space-between; text-align: left; }
  .header-inner > .button { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--blue-dark);
    padding: 0.25rem 0 0.75rem;
    box-shadow: 0 8px 24px rgba(9,47,94,0.3);
    z-index: 200;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
  .risico-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .img-banner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar-inner { flex-direction: column; text-align: center; gap: 0.25rem; }
  .usp-inner { justify-content: center; }
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .voordelen-grid { grid-template-columns: 1fr; }
  .risico-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 2.5rem 0 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-nav { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .hero-cta { flex-direction: column; }
  .button { width: 100%; justify-content: center; }
  .section { padding: 3rem 0; }
  .hero-section { padding: 2.5rem 0 2rem; }
  .cta-banner { padding: 2.5rem 0; }
  .legal-container h1 { font-size: 1.6rem; }
  .nav-toggle { padding: 0.35rem 0.6rem; font-size: 1.2rem; }
}

/* ===================== LEGAL PAGES ===================== */
.legal-section {
  padding: 3rem 0 5rem;
  background: var(--white, #fff);
}
.legal-container {
  max-width: 800px;
}
.legal-container h1 {
  font-size: 2.2rem;
  color: var(--blue, #0f4c92);
  margin-bottom: 0.35rem;
}
.legal-updated {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal-container h2 {
  font-size: 1.25rem;
  color: var(--blue, #0f4c92);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #e8eef7;
}
.legal-container h3 {
  font-size: 1.05rem;
  color: var(--blue-dark, #092f5e);
  margin: 1.4rem 0 0.5rem;
}
.legal-container p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.legal-container a {
  color: var(--blue, #0f4c92);
  text-decoration: underline;
}
.legal-container a:hover {
  color: var(--orange, #f47c20);
}
.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-list li {
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

/* ===================== PEST DETAIL PAGINA'S ===================== */
.pest-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
}
.pest-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 3rem;
}
.pest-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pest-hero-image img {
  border-radius: 20px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 3px solid rgba(255,255,255,0.15);
}
.pest-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}
.pest-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.75rem;
  max-width: 640px;
}
.pest-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.pest-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.pest-hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.pest-content { padding: 4rem 0 5rem; background: var(--white); }
.pest-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.pest-main > * + * { margin-top: 2.5rem; }
.pest-block {
  background: var(--gray);
  border-radius: 18px;
  padding: 2rem;
  border-left: 5px solid var(--blue);
}
.pest-block.danger { border-left-color: #f44336; }
.pest-block.tip { border-left-color: #2e9e4f; }
.pest-block h2 {
  font-size: 1.3rem;
  color: var(--blue);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pest-block.danger h2 { color: #c62828; }
.pest-block.tip h2 { color: #2e9e4f; }
.pest-block p { color: var(--muted); margin: 0 0 0.75rem; line-height: 1.8; }
.pest-block p:last-child { margin: 0; }
.pest-fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.pest-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  line-height: 1.7;
}
.pest-fact-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pest-block.danger .pest-fact-list li::before { content: '⚠'; color: #c62828; }
.pest-block.tip .pest-fact-list li::before { content: '✓'; color: #2e9e4f; }

.pest-sidebar { display: grid; gap: 1.5rem; }
.pest-sidebar-card {
  background: var(--blue-dark);
  border-radius: 18px;
  padding: 1.75rem;
  color: var(--white);
  text-align: center;
}
.pest-sidebar-card h3 { margin: 0 0 0.5rem; color: var(--white); font-size: 1.05rem; }
.pest-sidebar-card p { margin: 0 0 1.25rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.pest-sidebar-card .button { width: 100%; justify-content: center; }
.pest-quickfacts {
  background: var(--gray);
  border-radius: 18px;
  padding: 1.75rem;
}
.pest-quickfacts h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1rem;
}
.pest-quickfact-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid #dce9f8;
  font-size: 0.9rem;
  gap: 0.5rem;
}
.pest-quickfact-row:last-child { border-bottom: none; }
.pest-quickfact-row span:first-child { color: var(--muted); }
.pest-quickfact-row span:last-child { color: var(--text); font-weight: 600; text-align: right; }

.pest-related { background: var(--blue-dark); padding: 3.5rem 0; }
.pest-related .section-title { margin-bottom: 1.5rem; }
.pest-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .pest-hero-inner { grid-template-columns: 1fr; }
  .pest-hero-image { display: none; }
  .pest-content-grid { grid-template-columns: 1fr; }
  .pest-sidebar { grid-template-columns: repeat(2, 1fr); }
  .pest-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pest-sidebar { grid-template-columns: 1fr; }
  .pest-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pest-hero { padding: 2.5rem 0 2rem; }
  .pest-content { padding: 2.5rem 0 3rem; }
}

/* ===== FAQ PAGINA ===== */
.faq-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  text-align: center;
}
.faq-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.5rem 0 1rem;
  color: var(--white);
}
.faq-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 0;
}
.faq-hero-sub a { color: var(--white); font-weight: 700; text-decoration: underline; }

.faq-container { max-width: 780px; margin: 0 auto; }

.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid #dce9f8;
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(15,76,146,0.08); }
.faq-item.open { box-shadow: 0 6px 24px rgba(15,76,146,0.12); border-color: var(--blue-mid); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background .15s, color .15s;
}
.faq-question:hover { background: var(--gray); }
.faq-item.open .faq-question { color: var(--blue); background: #eef5ff; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}
.faq-answer a { color: var(--blue); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

.faq-cta {
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-top: 1rem;
}
.faq-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.faq-cta h3 { margin: 0 0 0.35rem; color: var(--white); font-size: 1.25rem; }
.faq-cta p { margin: 0; color: rgba(255,255,255,0.8); }
.faq-cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 600px) {
  .faq-cta-inner { flex-direction: column; text-align: center; }
  .faq-cta-buttons { width: 100%; flex-direction: column; }
  .faq-question { font-size: 0.92rem; padding: 1rem 1.1rem; }
}

/* ===== WHATSAPP KNOP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 500;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
@media (max-width: 600px) {
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ===== MOBIELE NAV: max-width fix ===== */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.82rem; }
  .header-inner > .button { padding: 0.6rem 1rem; font-size: 0.85rem; }
}
