/* ============================================================
   SIMPEL SUBSIDIE — CORE LANDINGSPAGINA CSS
   ============================================================
   Huisstijl gebaseerd op style_v4_hoofdpagina.css
   Bevat styling voor alle gedeelde secties + herbruikbare
   component-patronen voor landingspagina's.
   ============================================================ */


/* =============================================
   1. CSS VARIABELEN & RESET
   ============================================= */
:root {
  /* Huisstijl kleuren */
  --blue-dark: #002c5b;
  --blue: #2486bb;
  --blue-light: #2486bb;
  --green: #fea500;           /* Primaire accent (oranje/amber) */
  --green-light: #fea500;
  --green-dark: #fea500;
  --amber: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-150: #EDF1F4;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Typography */
  --font-primary: "Plus Jakarta Sans", sans-serif;

  /* Shadows */
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Border radius */
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transition */
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}


/* =============================================
   2. LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--gray {
  background: var(--gray-150);
}
.text-center {
  text-align: center;
}
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}
h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Links in tekst */
.content-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-link:hover {
  color: var(--green-dark);
}


/* =============================================
   3. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(158, 76, 175, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 97, 202, 0.566);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--outline-hero {
  background: transparent;
  color: var(--gray-200);
  border: 2px solid var(--gray-200);
}
.btn--outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.btn--large {
  padding: 18px 36px;
  font-size: 1.125rem;
  text-align: center;
}
.btn--sm {
  padding: 10px 20px;
  font-size: .85rem;
}


/* =============================================
   4. HEADER / NAVIGATIE
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.logo img {
  max-height: 50px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: var(--blue-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link:hover {
  color: var(--green);
  background: var(--gray-50);
}
.nav__chevron {
  transition: transform 0.2s ease;
}
.nav__cta {
  padding: 10px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  z-index: 200;
  padding: 8px 0;
  animation: dropdownIn 0.15s ease;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__dropdown--open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown--open .nav__chevron {
  transform: rotate(180deg);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}
.nav__dropdown-item:hover {
  background: var(--gray-50);
  color: var(--green);
}
.nav__dropdown-header {
  padding: 8px 20px 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 6px 0;
}

/* Hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav__mobile-overlay--open {
  display: block;
  opacity: 1;
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  height: calc(100vh);
}
.nav__mobile--open {
  transform: translateX(0);
}
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.nav__mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  padding: 4px;
}
.nav__mobile-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.nav__mobile-section {
  margin-bottom: 24px;
}
.nav__mobile-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.nav__mobile-link:last-child {
  border-bottom: none;
}
.nav__mobile-link:hover {
  color: var(--green);
}
.nav__mobile-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: left;
  width: 100%;
}


/* =============================================
   5. HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #227fb1 0%, #2999d5 50%, #2486bb 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}
.hero__grid {
  position: absolute;
  inset: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin: 0 auto;
  padding: 60px 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgb(0 40 91 / 15%);
  border: 1px solid rgba(255, 166, 0, 0.3);
  border-radius: 100px;
  color: var(--green-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-200)!important;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__trust {
  display: flex;
  justify-content: left;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  color: var(--gray-200)!important;
  font-size: 0.9rem;
}
.hero__trust-item a {
  text-decoration: underline;
  margin-bottom: 20px;
}


/* =============================================
   6. REVIEWS CAROUSEL
   ============================================= */

.reviews-carousel {
  position: relative;
}
.reviews-viewport {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
.review-card {
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}
.review-card:hover {
  border-color: var(--green);
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.review-card__tp {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__text {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-card__author {
  font-weight: 700;
  color: var(--gray-800);
  font-size: .88rem;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-800);
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.carousel-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.carousel-dot--active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .review-card {
    width: calc(100%);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .review-card {
    width: calc((100% - 24px) / 2);
  }
}


/* =============================================
   7. SEO BLOCK
   ============================================= */
.seo-block {
  background: var(--gray-50);
  padding: 64px 0;
}
.seo-block__inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-block h2 {
  color: var(--gray-800);
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}
.seo-block__content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-600);
}
.seo-block__content p {
  margin-bottom: 20px;
}
.seo-block__content strong {
  color: var(--gray-800);
}
.seo-block__content a {
  color: var(--green);
  text-decoration: underline;
}


/* =============================================
   8. SOURCES / EEAT-BAR
   ============================================= */
.sources {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
}
.sources__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.sources__content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.sources__content p {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.sources__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.sources__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-600);
}


/* =============================================
   9. FAQ ACCORDION
   ============================================= */
.faq__grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
}
.faq-question:hover {
  color: var(--green);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item--open .faq-question svg {
  transform: rotate(45deg);
  color: var(--green);
}
.faq-answer {
  padding: 0 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item--open .faq-answer {
  padding: 0 24px 20px;
  opacity: 1;
}
.faq-answer a {
  color: var(--green);
  text-decoration: underline;
}
.faq__cta {
  text-align: center;
  margin-top: 40px;
}


/* =============================================
   10. FOOTER
   ============================================= */
.footer {
  background: var(--blue-dark);
  color: var(--gray-400);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 12px;
}
.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a:hover {
  color: var(--white);
}


/* =============================================
   11. TARIEVEN MODAL
   ============================================= */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-backdrop--open {
  display: block;
  opacity: 1;
}
.modal-dialog-custom {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  z-index: 2001;
  width: 460px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.modal-dialog-custom--open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.modal-content-custom {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}
.modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.modal-sub-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.rate-list {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  gap: 12px;
}
.rate-item:last-child {
  border-bottom: none;
}
.rate-item:nth-child(odd) {
  background: var(--gray-50);
}
.rate-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rate-highlight {
  background: var(--amber);
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.rate-price {
  white-space: nowrap;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rate-old {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.rate-current {
  font-size: 1rem;
  color: var(--green);
}
.modal-bottom-text {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
}


/* =============================================
   12. LEADGENERATOR / STAPPENPLAN STYLING
   (Wordt via PHP-include geladen)
   ============================================= */
#leadgeneratorcontainer {
  text-align: center !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-bottom: 90px;
  padding-top: 10px;
  margin-top: 30px;
}
#leadgeneratortitel p {
  font-weight: 700;
  line-height: 1.2;
}
#leadgeneratortitel p:first-child {
  color: #ffffff !important;
  font-size: 3rem !important;
  margin-bottom: 20px !important;
}
#leadgeneratortitel .col-lg-12 {
  text-align: center !important;
}
#leadgeneratortitel .col-lg-12 p {
  color: #ffffff !important;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.25rem !important;
}
#closeleadgeneratorbutton img {
  transition: all 0.3s ease;
}
#closeleadgeneratorbutton img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
#leadgeneratorsection {
  margin-bottom:0px!important;
}
.blogleadgeneratorsection .row.mt-5.mb-5 {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin-top: 40px;
}
#leadgenerator {
  padding: 10px 30px 50px 30px !important;
  margin-top: 20px;
}
#leadgenerator .form-group.p-2 {
  padding: 1.5rem 1.5rem 0.0rem 1.5rem !important;
}
#leadgenerator .form-group.p-2 table {
  width: 100%;
}
#leadgenerator .form-group.p-2 img {
  border: 4px solid #c9302c;
  width: 90px !important;
  height: 90px !important;
}
#leadgenerator .form-group.p-2 span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}
#leadgenerator .form-control {
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  padding: 12px 16px !important;
  transition: all 0.3s ease;
  height: auto !important;
  width: 60%;
}
#leadgenerator .form-control:focus {
  border-color: #9ca3af;
  box-shadow: none;
  outline: none;
}
#leadgenerator .form-control::placeholder {
  color: #6b7280;
}
#lg_Voorwaarden {
  border-radius: 3px !important;
  border: 1px solid #d1d5db !important;
  cursor: pointer;
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
}
#leadgenerator label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 0;
  font-weight: 400;
}
#leadgenerator label a {
  color: #0066cc;
  text-decoration: none;
}
#leadgenerator label a:hover {
  text-decoration: underline;
}
#leadgenerator label span {
  color: #6b7280 !important;
}
#lg_errormelding {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
}
#leadgenerator .btn-secondary {
  background: #f59e0b !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: lowercase;
  padding: 12px 24px !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  margin-top: 15px;
}
#leadgenerator .btn-secondary:hover {
  background: #d97706 !important;
  transform: none;
  box-shadow: none !important;
}
#leadgenerator .btn-secondary:active {
  transform: translateY(0px);
}
#leadgenerator p,
#leadgenerator td,
#leadgenerator label {
  text-align: left;
}
#blogloadingicon {
  vertical-align: middle;
  margin-right: 8px;
}
#leadgenerator .form-group {
  margin-bottom: 1rem;
}
#leadgenerator .form-group:last-of-type {
  margin-bottom: 0;
}
#leadgenerator input:focus,
#leadgenerator button:focus {
  outline: none;
}
#leadgenerator div[style*="display:flex"] {
  align-items: flex-start;
}
#leadgenerator label span a {
  transition: color 0.3s ease;
}
.pl-3 {
  padding-left: 10px;
}
.blogleadgeneratorsection.hidescrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.blogleadgeneratorsection.hidescrollbar::-webkit-scrollbar {
  display: none;
}


/* =============================================
   13. HERBRUIKBARE COMPONENT-PATRONEN
   (Voor pagina-specifieke secties — Fase 2)
   ============================================= */

/* --- Sectie label (uppercase tag boven titels) --- */
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}

/* --- Info block (tekst + visual, 2-kolom) --- */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-block--reverse {
  direction: rtl;
}
.info-block--reverse > * {
  direction: ltr;
}
.info-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.info-block p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 17px;
}
.info-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.info-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}
.info-block__list li svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-block__visual {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Bedragen tabel --- */
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
}
.tbl-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tbl-wrap thead {
  background: var(--blue-dark);
  color: var(--white);
}
.tbl-wrap th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}
.tbl-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.tbl-wrap tbody tr:last-child td {
  border-bottom: none;
}
.tbl-wrap tbody tr:hover {
  background: var(--gray-50);
}
.tbl-wrap .hl {
  font-weight: 700;
  color: var(--green);
}

/* --- Stappen (verticale timeline) --- */
.steps {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--gray-200));
}
.step {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  position: relative;
}
.step__num {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(254, 165, 0, 0.3);
}
.step__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step__body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- USP grid (3 kolommen) --- */
.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.usp:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.usp__ico {
  width: 44px;
  height: 44px;
  background: rgba(254, 165, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.usp__ico svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.usp p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Case studies / voorbeelden --- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.case:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.case__top {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.case__type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 4px;
}
.case__title {
  font-size: 1.1rem;
  font-weight: 700;
}
.case__rows {
  padding: 20px 28px;
}
.case__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.case__row + .case__row {
  border-top: 1px solid var(--gray-200);
}
.case__row--note {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.case__bottom {
  padding: 16px 28px;
  background: rgba(254, 165, 0, 0.06);
  border-top: 2px solid rgba(254, 165, 0, 0.15);
}
.case__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
}
.case__total span:last-child {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
}

/* --- Mini stats (kleine stat cards in een rij) --- */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.mini-stat {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.mini-stat:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mini-stat__val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}
.mini-stat__lbl {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.mini-stat__sub {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* --- Ontzorging / feature list (icon + titel + tekst) --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-list__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(254, 165, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-list__content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.feature-list__content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Authority bar (stats in een rij) --- */
.authority-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.authority-bar--gray {
  background: var(--gray-150);
  border-bottom: 1px solid var(--gray-200);

}
.authority-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.authority-bar__item {
  text-align: center;
  padding: 16px;
}
.authority-bar__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.authority-bar__number--accent {
  color: var(--green);
}
.authority-bar__label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* --- CTA banner (afsluitende call-to-action) --- */
.cta-banner {
  background: linear-gradient(135deg, #227fb1 0%, #2999d5 50%, #2486bb 100%);
  padding: 160px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--gray-300);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* --- Stappen grid (horizontale stappen in cards) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.steps-grid__item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.steps-grid__item:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.steps-grid__num {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.steps-grid__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.steps-grid__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* --- Section head (label + h2 + intro, centered) --- */
.section__head {
  text-align: center;
  margin-bottom: 48px;
}
.section__head h2 {
  margin-bottom: 12px;
}
.section__head p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Verified bar (EEAT auteur) --- */
.verified-bar {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.verified-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.verified-bar__inner p {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.verified-bar__inner strong {
  color: var(--gray-800);
}

/* --- Partners bar --- */
.partners-bar {
  padding: 64px 0;
  background: var(--gray-300);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.partners-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.partners-bar__grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-bar__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-bar__item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
}
.partners-bar__item img {
  height:50px;
}

/* --- Praktijkvoorbeelden (fout + oplossing kaarten) --- */
.praktijk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.praktijk-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.praktijk-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.praktijk-card__fout {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: #fff8f0;
}
.praktijk-card__fout-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  margin-bottom: 4px;
}
.praktijk-card__fout-titel {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}
.praktijk-card__body {
  padding: 24px;
  flex: 1;
}
.praktijk-card__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.praktijk-card__situatie {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.praktijk-card__oplossing {
  background: #f0fdf4;
  border-radius: var(--radius-md);
  padding-top: 16px;
}
.praktijk-card__oplossing-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #15803d;
  margin-bottom: 6px;
}
.praktijk-card__oplossing p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.praktijk-card__resultaat {
  padding: 16px 24px;
  background: rgba(254, 165, 0, 0.06);
  border-top: 2px solid rgba(254, 165, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.praktijk-card__resultaat span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
}
.praktijk-card__resultaat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
}
.praktijk-card__resultaat small {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* --- Budget sectie (donkere achtergrond) --- */
.budget-section {
  background: linear-gradient(135deg, #227fb1 0%, #2999d5 50%, #2486bb 100%);
  padding: 80px 0;
  color: var(--white);
}
.budget-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.budget-section p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.7;
}
.budget-section__amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 20px;
}
.budget-section__warning {
  background: rgb(30 21 4 / 12%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 24px;
  line-height: 1.6;
}
.budget-section__warning strong {
  color: var(--amber);
}


/* --- Product cards (warmtepompen etc.) --- */
.product-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}
.product-card__img img {
  max-height: 100px;
  object-fit: contain;
}
.product-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 40px;
}
.product-card__amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.product-card__label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.product-card__spec {
  display: inline-block;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* --- Blogs sectie --- */
.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 10px;
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
  margin: 0;
}
.blog-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}
.blog-card:hover .blog-card__link {
  text-decoration: underline;
}


/* =============================================
   14. RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .nav {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .info-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-block--reverse {
    direction: ltr;
  }
  .cases {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .praktijk-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .usps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .product-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .blogs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogs__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .sources__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .usps {
    grid-template-columns: 1fr;
  }
  .mini-stats {
    grid-template-columns: 1fr;
  }
  .authority-bar__grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Leadgenerator responsive */
  #leadgeneratortitel p:first-child {
    font-size: 2rem !important;
  }
  #leadgeneratortitel .col-lg-12 p {
    font-size: 1rem !important;
  }
  #leadgenerator {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  #leadgenerator .form-group.p-2 table {
    display: block;
  }
  #leadgenerator .form-group.p-2 table tr {
    display: block;
  }
  #leadgenerator .form-group.p-2 table td {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
  #leadgenerator .form-group.p-2 img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  #leadgeneratorcontainer {
    border-radius: 6px !important;
  }
  .blogleadgeneratorsection .row.mt-5.mb-5 {
    max-width: 100% !important;
  }
  #leadgenerator {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #leadgenerator .form-control {
    width: 100%;
  }
}