/* ==========================================================================
   RESET & BASE STYLES (Normalized, Minimalist)
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F5F3;
  color: #212226;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #212226;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CBBC8A;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #212226;
  margin-bottom: 0.7em;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
  margin-top: 1.5rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}
p, li {
  font-size: 1rem;
}

/* Body font */
.text-section p, .content-wrapper p, address, li {
  font-family: 'Lato', Arial, sans-serif;
  color: #212226;
  font-size: 1rem;
  margin-bottom: 0.7em;
}

/* Minimalist font scaling on breakpoints */
@media (min-width: 960px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
  p, li { font-size: 1.08rem; }
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 12px;
}

/* Spacing Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(33,34,38,0.06);
  transition: box-shadow 0.2s;
  padding: 32px 22px;
  flex: 1 1 320px;
  min-width: 270px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(33,34,38,0.12);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(33,34,38,0.06);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 460px;
  flex: 1 1 340px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(33,34,38,0.13);
}
.testimonial-card p {
  color: #212226;
  font-size: 1.08rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: transparent;
}

/* --- Feature grid (index/onze-autos) --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(33,34,38,0.06);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 252px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px 0 rgba(33,34,38,0.10);
}

/* --- Testimonial grid --- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- Pricing Table (tarieven) --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-table .text-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(33,34,38,0.06);
  padding: 22px 18px;
  flex: 1 1 280px;
  min-width: 220px;
}

/* --- USP/Benefits Icons --- */
.usp-icons, .benefit-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 18px 0 8px 0;
}
.usp-icons img, .benefit-icons img {
  width: 36px;
  height: 36px;
}

/***** Hero Section *****/
.hero-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(33,34,38,0.09);
  padding: 60px 20px 48px 20px;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 310px;
  justify-content: center;
}
.hero-section h1 {
  color: #212226;
  margin-bottom: 22px;
}
.hero-section p {
  max-width: 650px;
  margin: 0 auto 28px auto;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(33,34,38,0.11);
  border-bottom: 1px solid #F6F5F3;
  padding: 0 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 18;
}
header > a img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #212226;
  padding: 8px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #CBBC8A11;
  color: #CBBC8A;
}
.cta-button {
  display: inline-block;
  background: #CBBC8A;
  color: #212226;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 28px;
  border-radius: 32px;
  box-shadow: 0 1px 10px 0 rgba(33,34,38,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: none;
}
.cta-button:hover, .cta-button:focus {
  background: #212226;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(33,34,38,0.14);
  outline: none;
}

/* ==========================================================================
   MOBILE BURGER MENU
   ==========================================================================
   .mobile-menu-toggle, .mobile-menu, .mobile-menu-close, .mobile-nav
   */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #212226;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #F6F5F3;
  box-shadow: 0 1px 8px 0 rgba(33,34,38,0.06);
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 47;
  transition: background 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: #F6F5F3;
  box-shadow: 0 1px 16px 0 rgba(33,34,38,0.13);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(33,34,38,0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 0.44s cubic-bezier(0.61,0.1,0.4,1), opacity 0.28s;
  z-index: 50;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #fff;
  align-self: flex-end;
  margin: 24px 16px 0 0;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  z-index: 58;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  opacity: 1;
  color: #CBBC8A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 58px;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  padding: 12px 18px 12px 0;
  border-radius: 7px;
  margin-right: 40px;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CBBC8A;
  background: #fff1;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none!important;
  }
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
}

/* ==========================================================================
   FOOTER
   ==========================================================================
*/
footer {
  background: #212226;
  color: #fff;
  padding: 45px 0 30px 0;
  margin-top: 46px;
  border-radius: 24px 24px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
footer nav a {
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.93;
  transition: color 0.18s, opacity 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #CBBC8A;
  opacity: 1;
}
footer address {
  font-style: normal;
  color: #CBBC8A;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer address img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
  display: inline;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 225px;
  max-width: 260px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand p {
  font-size: 0.97rem;
  color: #fff;
  opacity: 0.75;
}

/* ==========================================================================
   CONTENT ELEMENTS & CARDS
   ========================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.text-section ul, .feature-list ul {
  margin-left: 1.2em;
  margin-bottom: 0.4em;
}
.text-section li, .feature-list li {
  margin-bottom: 0.31em;
}
.feature-list {
  margin: 28px 0;
}

/* Testimonials rating */
.star-rating {
  color: #CBBC8A;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 0.5em;
}

/* OL List styling */
ol {
  padding-left: 1.2em;
  margin-bottom: 1.1em;
}
ol li {
  margin-bottom: 0.37em;
}

/* Map-embed simulation */
.map-embed {
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 rgba(33,34,38,0.07);
  background: #fff;
  padding: 22px 16px;
  font-size: 1rem;
  color: #777;
  margin-top: 12px;
}

/* ==========================================================================
   BUTTONS AND INTERACTION
   ========================================================================== */
button, .cta-button {
  transition: background 0.15s, color 0.18s, box-shadow 0.18s, border 0.13s;
}
button:focus, .cta-button:focus {
  outline: 2px solid #CBBC8A;
  outline-offset: 2px;
}

/* Minimal micro-interactions for icons*/
.feature-grid img,
.usp-icons img,
.benefit-icons img,
footer address img {
  transition: filter 0.2s, opacity 0.18s;
}
.feature-grid > div:hover img,
.usp-icons img:hover,
.benefit-icons img:hover {
  filter: brightness(1.12) drop-shadow(0 2px 6px #CBBC8A44);
  opacity: 0.9;
}

/* ==========================================================================
   COOKIE CONSENT BANNER + MODAL
   ==========================================================================
   For integration: Add .cookie-banner and .cookie-modal markup in your HTML.
*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 22px 0 rgba(33,34,38,0.10);
  border-top: 2px solid #CBBC8A22;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 18px 16px;
  gap: 18px;
  opacity: 1;
  transition: transform 0.34s, opacity 0.23s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border-radius: 22px;
  font-weight: 600;
  padding: 9px 22px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  margin: 0;
}
.cookie-banner .accept-btn {
  background: #CBBC8A;
  color: #212226;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #212226;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #F6F5F3;
  color: #212226;
  border: 1.2px solid #21222633;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #EAEAE8;
}
.cookie-banner .settings-btn {
  background: none;
  color: #CBBC8A;
  border: 1.2px solid #CBBC8A;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #CBBC8A;
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,34,38,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(33,34,38,0.18);
  padding: 36px 24px 28px 24px;
  max-width: 400px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalFadeIn 0.32s cubic-bezier(.65,-0.02,.5,1.4);
}
@keyframes modalFadeIn {
  from { transform: scale(0.89) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  color: #212226;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.68;
  z-index: 6;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  opacity: 1;
  color: #CBBC8A;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 9px 0;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #F6F5F3;
  border-radius: 13px;
  border: 1.2px solid #CBBC8A55;
  transition: background 0.18s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #CBBC8A;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px #21222622;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .category span[aria-label],
.cookie-modal .category label[aria-label] {
  font-size: 1rem;
  color: #212226;
  margin-right: 8px;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-modal .category.essential span {
  font-weight: bold;
  color: #CBBC8A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 22px;
  font-weight: 600;
  padding: 8px 19px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: none;
}
.cookie-modal .save-btn {
  background: #CBBC8A;
  color: #212226;
}
.cookie-modal .save-btn:hover,
.cookie-modal .save-btn:focus {
  background: #212226;
  color: #fff;
}
.cookie-modal .cancel-btn {
  background: #F6F5F3;
  color: #212226;
  border: 1.2px solid #21222633;
}
.cookie-modal .cancel-btn:hover,
.cookie-modal .cancel-btn:focus {
  background: #EAEAE8;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  header {
    padding: 0 12px;
  }
}
@media (max-width: 890px) {
  .feature-grid, .testimonial-grid, .pricing-table {
    gap: 16px;
  }
  .hero-section {
    padding: 46px 10px 34px 10px;
    min-height: 220px;
  }
  .testimonial-card, .card {
    min-width: 180px;
    padding: 18px 10px;
  }
  .feature-grid > div {
    padding: 16px 10px;
    max-width: 98vw;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .testimonial-grid, .pricing-table, .content-grid {
    flex-direction: column;
    gap: 19px;
  }
  .hero-section {
    min-height: 160px;
    padding-top: 28px;
    padding-bottom: 22px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 38px;
  }
  .footer-brand {
    min-width: unset;
    max-width: 90vw;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .map-embed {
    padding: 13px 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  .footer-brand img {
    height: 30px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ==========================================================================
   Print cleanup (minimal, white background)
   ========================================================================== */
@media print {
  header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #212226 !important;
  }
  .container, .section, .content-wrapper, .text-section, .feature-grid, .testimonial-grid, .card, .testimonial-card { box-shadow:none !important; background:transparent !important; }
}

/* ==========================================================================
   ADDITIONAL: Hide on desktop, show on mobile for mobile-menu-toggle,
   Hide desktop nav/cta on mobile, always show cta in hero on mobile.
   Enforce layout containers to never use CSS Grid or columns.
   ==========================================================================
*/
/* No grid, no column properties anywhere! Only flex and gap. */
