/* --- Brand palette (single source of truth) --- */
:root {
  --lc-blue: #1b4fe4;       /* primary link */
  --lc-blue-dark: #0f3198;  /* mobile link */
  --lc-coral: #f26d5b;      /* CTA */
  --lc-blue-hover: #00a3e0; /* CTA hover */
  --midnight:#1C2C4C;
  --cyan:#00A3E0;
  --coral:#F26D5B;
  --soft-sky:#EAF1F9;
}

/* ───────── Sticky header (new) ───────── */
.lc-header {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.lc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* logo */
.lc-logo img { height: 36px; display: block; }
/* desktop nav */
.lc-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lc-nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--lc-blue);
  transition: color .2s ease;
}
.lc-nav a:hover,
.lc-nav a:focus { color: var(--lc-coral); }
/* CTA */
.lc-btn {
  font-weight: 700;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  transition: background .2s ease;
}
.lc-btn--cta { background: var(--lc-coral); color: #fff; }
.lc-btn--cta:hover,
.lc-btn--cta:focus { background: var(--lc-blue-hover); color:#fff; }
/* hamburger */
.lc-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; padding: 0;
  cursor: pointer;
}
.lc-toggle span {
  display: block !important;
  width: 32px !important;
  height: 5px !important;
  background: #1b4fe4 !important;
  border-radius: 3px !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
}
/* mobile menu */
.lc-mobile { background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.05); }
.lc-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0; padding: 1rem;
}
.lc-mobile a {
  color: var(--lc-blue) !important;
  font-weight:600; text-decoration:none;
}
/* breakpoint */
@media (max-width: 768px){
  .lc-nav, .lc-btn--cta { display:none; }
  .lc-toggle { display:flex; }
}

/* ───────── Hero section (unchanged) ───────── */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(28,44,76,.7), rgba(90,90,90,.3));
  z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  color:#fff; width:100%; text-align:center;
}
.cta-btn {
  background: var(--lc-coral);
  color:#fff; border:none; border-radius: 8px;
  padding: 12px 24px;
  font-family:'Inter',Arial,sans-serif;
  font-size:16px; font-weight:600;
  text-transform:uppercase; letter-spacing:.5px;
  text-decoration:none; display:inline-block;
  margin-top:16px; transition:background .2s; cursor:pointer;
}
.cta-btn:hover { background: var(--lc-blue-hover); }

/* ───────── Stories / content sections (unchanged) ───────── */
.stories-section { background:#fff; padding:64px 0; }
.stories-container { max-width:1140px; margin:0 auto; padding:0 30px; }
.stories-heading {
  text-align:center; font-size:2.3rem;
  color: var(--midnight-blue);
  margin-bottom:48px;
  font-family: var(--font-family); font-weight:700;
}
.stories-grid {
  display:grid; gap:40px;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}
.story-card {
  background: var(--soft-sky,#F5F8FB);
  border-radius:12px; padding:32px 24px;
  box-shadow:0 6px 18px rgba(28,44,76,.08);
  display:flex; flex-direction:column; align-items:center;
}
.story-img {
  width:80px; height:80px; object-fit:cover; border-radius:50%;
  margin-bottom:18px; box-shadow:0 2px 8px rgba(28,44,76,.10);
}
.story-title {
  color: var(--midnight-blue);
  font-size:1.2rem; font-weight:700;
  margin-bottom:6px; font-family: var(--font-family);
}
.story-sub {
  color: var(--blue-cyan);
  font-size:1rem; margin-bottom:14px;
  font-family: var(--font-family);
}
.story-quote {
  color: var(--graphite-grey);
  font-size:1.05rem; font-style:italic; margin:0;
  font-family: var(--font-family);
}
@media (max-width:767px){
  .stories-grid { grid-template-columns:1fr; }
}

/* ───────── Generic CTA (if used elsewhere) ───────── */
.btn-primary {
  background: var(--lc-coral);
  color:#fff; font-weight:700;
  border:none; border-radius:6px;
  padding:12px 32px;
  font-size:16px; text-transform:uppercase;
  letter-spacing:.5px; transition:background .2s;
  margin-left:32px;
  box-shadow:0 2px 8px rgba(28,44,76,.08);
}
.btn-primary:hover,
.btn-primary:focus { background: var(--lc-blue-hover); }

/* ───────── Page-wide backgrounds (unchanged) ───────── */
.body-wrapper,
html, body, .body-wrapper, main, .main-content, .site-wrapper,
.mobility-section { background:#fff !important; }
.compare-section {
  background: var(--soft-sky,#EAF1F9);
  padding: 80px 30px;
}
/* ─── LeaseCompany utilities ─────────────────────────── */
.lc-container{max-width:1200px;margin:0 auto;padding:0 24px;}
.bg-soft-sky{background:var(--soft-sky);}
.text-midnight{color:var(--midnight);}
.text-cyan{color:var(--cyan);}

/* simple CSS-grid helpers (enough for this page) */
.grid{display:grid;}
.gap-12{gap:3rem;}
@media(min-width:1024px){.lg\\:grid-cols-2{grid-template-columns:repeat(2,1fr);}}

/* button */
.lc-btn-primary{
  background:var(--coral);color:#fff;font-weight:700;
  padding:14px 32px;border-radius:12px;text-decoration:none;
  transition:background .2s;
}
.lc-btn-primary:hover{background:#e85c4a;}

/* gallery images & general tweaks */
.rounded-3xl{border-radius:24px;}
.rounded-2xl{border-radius:16px;}
.shadow-lg{box-shadow:0 8px 24px rgba(0,0,0,.12);}
.shadow{box-shadow:0 4px 12px rgba(0,0,0,.06);}
.aspect-\\[4\\/3\\]{aspect-ratio:4/3;}
/* Sticky footer layout for all pages */
html, body {
  height: 100%;
  min-height: 100%;
}

body.layout-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.body-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

main, .main-content {
  flex: 1 0 auto;
}

footer, .footer, .site-footer {
  flex-shrink: 0;
  width: 100%;
  /* Optional: add background and padding if needed */
}
html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body.layout-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.body-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

footer, .footer, .site-footer {
  flex-shrink: 0;
  width: 100%;
}
html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body.layout-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.body-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

footer, .footer, .site-footer {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

section {
  margin: 1rem 0 !important;
  overflow: visible !important;
}
section:last-of-type {
  margin-bottom: 0 !important;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}

body, html {
  font-family: 'Inter', Arial, sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', Arial, sans-serif !important;
}

/* Hamburger menu bars: always brand blue */
.lc-toggle span {
  background: var(--lc-blue) !important;
}

/* Mobile navigation links: blue (optional) */
@media (max-width: 768px) {
  .lc-mobile a {
    color: var(--lc-blue) !important;
    font-weight:600; text-decoration:none;
  }
}
/* Homepage hero live alignment fix */
.lc-header {
  box-shadow: none !important;
  border-bottom: 0 !important;
}

.hero .hero-content {
  width: min(calc(100% - 40px), 1240px) !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.hero .hero-content h1 {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(38px, 4vw, 56px) !important;
  line-height: 1.12 !important;
}

.hero .hero-content h2 {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero .hero-content p {
  display: none !important;
}

@media (max-width: 768px) {
  .hero .hero-content {
    width: min(calc(100% - 32px), 1240px) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero .hero-content h1 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }
}
/* End homepage hero live alignment fix */
/* Homepage partner mobile layout fix */
@media (max-width: 900px) {
  .lease-partner-strip__eyebrow { white-space: normal !important; }
  .lease-partner-strip__logos { justify-content: flex-start !important; overflow-x: auto !important; gap: 22px !important; }
  .lease-partner-strip__logos img { flex: 0 0 auto !important; max-height: 30px !important; max-width: 130px !important; }
  .car-filter-bar { flex-direction: column !important; margin: 0 18px !important; }
  .filter-buttons { flex: 0 0 auto !important; }
  .cars-section .cars-container { display: block !important; }
  .cars-section .results-counter {
    display: block !important;
    text-align: center !important;
    margin: 0 0 14px !important;
  }
  .cars-section .sorting-controls {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 0 26px !important;
    text-align: center !important;
  }
  .cars-section .sort-select {
    width: min(100%, 220px) !important;
  }
}
.sort-select {
  border-color: #d9e5f1 !important;
  box-shadow: none !important;
  outline: none !important;
}
.sort-select:focus {
  border-color: #d9e5f1 !important;
  box-shadow: none !important;
  outline: none !important;
}
/* Lease aanbod final layout */
.hero-section {
  background: linear-gradient(135deg, #1C2C4C 0%, #00A3E0 100%) !important;
  min-height: 285px !important;
  padding: 46px 0 38px !important;
}
.hero-section .hero-video,
.hero-section .hero-image,
.hero-section .hero-cta,
.brand-banner-section,
.lease-partners-section,
.lc-ix1-internal-link {
  display: none !important;
}
.hero-section .hero-subtitle { display: none !important; }
.hero-section .hero-content::after {
  content: "We vergelijken meerdere leasemaatschappijen en binnen 2 uur ontvang je de beste leasedeal.";
  display: block;
  max-width: 880px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: .95;
}
.lease-partner-strip {
  background: #fff !important;
  border: 0 !important;
  padding: 18px 0 16px !important;
  margin: 0 !important;
}
.lease-partner-strip__inner {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  text-align: center !important;
}
.lease-partner-strip__eyebrow {
  margin: 0 0 12px !important;
  color: #1C2C4C !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}
.lease-partner-strip__logos {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  overflow: visible !important;
}
.lease-partner-strip__logos img {
  width: auto !important;
  height: auto !important;
  max-height: 34px !important;
  max-width: 138px !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  filter: grayscale(100%) saturate(0%) contrast(1.08) !important;
  opacity: 1 !important;
  transform: none !important;
}
.lease-partner-strip__logos img[alt="Alphabet"] { max-width: 120px !important; max-height: 30px !important; }
.lease-partner-strip__logos img[alt="Athlon"],
.lease-partner-strip__logos img[alt="Hiltermann Lease"] { max-width: 148px !important; max-height: 36px !important; }
.filter-section,
.cars-section,
.cars-section .cars-container,
.cars-section .results-counter {
  background: #eff8ff !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.filter-section {
  padding: 28px 0 28px !important;
  margin: 0 !important;
  border: 0 !important;
}
.filter-title,
.filter-title::after,
.sorting-controls {
  display: none !important;
  content: none !important;
}
.car-filter-bar {
  display: flex !important;
  gap: 14px !important;
  align-items: stretch !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.car-filter-group {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  height: 80px !important;
  padding: 15px 22px !important;
  background: #fff !important;
  border: 1px solid #d9e5f1 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(28, 44, 76, .035) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.car-filter-group::before { display: none !important; content: none !important; }
.car-filter-label {
  width: 100% !important;
  margin: 0 0 4px !important;
  text-align: center !important;
  color: #64748b !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  line-height: 1 !important;
}
.car-filter-select {
  width: 100% !important;
  height: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #0b1f44 !important;
  font-size: 1.05rem !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-align-last: center !important;
  box-shadow: none !important;
}
.filter-buttons {
  flex: 0 0 210px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
}
.car-filter-btn {
  width: 100% !important;
  min-width: 0 !important;
  height: 80px !important;
  border-radius: 10px !important;
  background: #F26D5B !important;
  border: 1px solid #F26D5B !important;
  color: #fff !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}
.car-filter-btn:hover {
  background: #e85f4d !important;
  border-color: #e85f4d !important;
  box-shadow: none !important;
}
.cars-section {
  margin: 0 !important;
  padding: 30px 0 80px !important;
  border: 0 !important;
}
.cars-section::before,
.cars-section::after,
.cars-container::before,
.cars-container::after {
  display: none !important;
  content: none !important;
}
.cars-section .cars-container { display: block !important; }
.cars-section .results-counter {
  text-align: left !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
}
@media (max-width: 900px) {
  .lease-partner-strip__eyebrow { white-space: normal !important; }
  .lease-partner-strip__logos { justify-content: flex-start !important; overflow-x: auto !important; gap: 22px !important; }
  .lease-partner-strip__logos img { flex: 0 0 auto !important; max-height: 30px !important; max-width: 130px !important; }
  .car-filter-bar { flex-direction: column !important; margin: 0 18px !important; }
  .filter-buttons { flex: 0 0 auto !important; }
  .cars-section .results-counter { text-align: center !important; margin-bottom: 16px !important; }
}
/* End lease aanbod final layout */
/* LC AUTO AANBOD HARD FINAL FIX */
.lease-partner-strip {
  background: #fff !important;
  padding: 18px 0 20px !important;
  overflow: hidden !important;
}
.lease-partner-strip__inner {
  display: block !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  text-align: center !important;
}
.lease-partner-strip__eyebrow {
  display: block !important;
  width: 100% !important;
  margin: 0 0 26px !important;
  color: #1C2C4C !important;
  font-size: 1.05rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  white-space: normal !important;
}
.lease-partner-strip__logos {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 26px !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
}
.lease-partner-strip__logos img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-height: 32px !important;
  max-width: 128px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  filter: grayscale(100%) saturate(0%) contrast(1.08) !important;
  opacity: 1 !important;
  transform: none !important;
}
.lease-partner-strip__logos img[alt="Alphabet"] { max-width: 118px !important; }
.lease-partner-strip__logos img[alt="DriveWise"] { max-width: 140px !important; }
.filter-section {
  background: #eff8ff !important;
  padding: 28px 0 !important;
  margin: 0 !important;
}
.filter-section .filter-title,
.filter-section .filter-title::after {
  display: none !important;
  content: none !important;
}
.filter-section .car-filter-bar {
  display: flex !important;
  gap: 14px !important;
  align-items: stretch !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.filter-section .car-filter-group {
  flex: 1 1 0 !important;
  height: 80px !important;
  padding: 15px 22px !important;
  background: #fff !important;
  border: 1px solid #d9e5f1 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(28,44,76,.035) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.filter-section .car-filter-group::before { display: none !important; content: none !important; }
.filter-section .car-filter-label {
  width: 100% !important;
  margin: 0 0 4px !important;
  text-align: center !important;
  color: #64748b !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}
.filter-section .car-filter-select {
  width: 100% !important;
  height: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  text-align-last: center !important;
  color: #0b1f44 !important;
  font-size: 1.05rem !important;
}
.filter-section .filter-buttons {
  flex: 0 0 210px !important;
  padding: 0 !important;
  display: flex !important;
}
.filter-section .car-filter-btn,
.filter-section button.car-filter-btn,
.car-filter-bar .car-filter-btn {
  width: 100% !important;
  min-width: 0 !important;
  height: 80px !important;
  background: #F26D5B !important;
  border: 1px solid #F26D5B !important;
  color: #fff !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-weight: 800 !important;
}
.filter-section .car-filter-btn:hover,
.filter-section button.car-filter-btn:hover,
.car-filter-bar .car-filter-btn:hover {
  background: #e85f4d !important;
  border-color: #e85f4d !important;
}
.cars-section,
.cars-section .cars-container,
.cars-section .results-counter {
  background: #eff8ff !important;
}
.cars-section .sorting-controls { display: none !important; }
@media (max-width: 900px) {
  .lease-partner-strip__logos { justify-content: flex-start !important; overflow-x: auto !important; }
  .filter-section .car-filter-bar { flex-direction: column !important; margin: 0 18px !important; }
  .filter-section .filter-buttons { flex: 0 0 auto !important; }
}
/* END LC AUTO AANBOD HARD FINAL FIX */
/* LC alignment fix: filters exact gelijk met autokaarten */
.filter-section .filter-container,
.cars-section .cars-container,
.cars-section .results-counter {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}
.filter-section .car-filter-bar {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}
@media (max-width: 800px) {
  .filter-section .filter-container,
  .cars-section .cars-container,
  .cars-section .results-counter {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
/* EINDE LC alignment fix */