/* ==========================================================================
   LU Förderrechner – Styling
   Markenfarben: #183C51 (Dunkelblau), #c7d0d5 (Hellgrau)
   ========================================================================== */

.lu-rechner,
.lu-foerder-hero,
.lu-foerder-accordion,
.lu-foerder-intro,
.lu-fahrzeuge,
.lu-kontakt {
  --lu-heading-font: "Barlow", Arial, sans-serif;
  font-family: var(--lu-heading-font);
}

/* --- Hero-Teaser --- */

.lu-foerder-hero {
  width: 100vw;
  max-width: 100vw;
}

.lu-foerder-hero__stage {
  position: relative;
  min-height: clamp(480px, 62vw, 680px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(90deg, #12222e 0%, #1c2f3d 36%, #70808a 100%);
}

.lu-foerder-hero__image,
.lu-foerder-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
}

.lu-foerder-hero__image {
  object-fit: cover;
  height: 100% !important;
}

.lu-foerder-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 24, 0.82) 0%, rgba(8, 17, 24, 0.52) 32%, rgba(8, 17, 24, 0.12) 65%, transparent 100%);
}

.lu-foerder-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 5vw, 6rem) clamp(2.25rem, 6vw, 5rem);
  box-sizing: border-box;
}

@media (min-width: 981px) {
  .lu-foerder-hero__content {
    padding-left: 6vw;
  }
}

.lu-foerder-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lu-foerder-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--lu-heading-font);
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.lu-foerder-hero__lead {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
  text-wrap: pretty;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.lu-foerder-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.5rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #183c51;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 32px rgba(12, 29, 41, 0.2);
}

.lu-foerder-hero__cta:hover,
.lu-foerder-hero__cta:focus {
  background: #fff;
  color: #102c45;
  text-decoration: none;
  transform: translateY(-1px);
}

.lu-foerder-hero__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* --- Rechner Card --- */

.lu-rechner {
  --lu-blue: #18265b;
  --lu-blue-dark: #101b44;
  --lu-blue-soft: #183c51;
  --lu-surface: #f5f7f8;
  --lu-surface-strong: #eef2f3;
  --lu-border: #c7d0d5;
  --lu-copy: #4f6473;
  max-width: 1080px;
  margin: 2.5rem auto;
  padding: 0;
  background: transparent;
  border-radius: 25px;
  box-shadow: none;
  box-sizing: border-box;
}

.lu-rechner__card {
  background: var(--lu-surface);
  border-radius: 25px;
  box-shadow: none;
  border: 1px solid rgba(199, 208, 213, 0.7);
  padding: 3rem 3.1rem 2.9rem;
}

.lu-rechner__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.35rem;
  gap: 1.5rem;
}

.lu-rechner__label {
  display: block;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6a5339;
  margin-bottom: 0.6rem;
}

.lu-rechner__title {
  max-width: 11em;
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 0.55rem;
  line-height: 1.06;
  text-transform: none;
  letter-spacing: 0;
}

.lu-rechner__subtitle {
  max-width: 37rem;
  color: var(--lu-copy);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.lu-rechner__reset,
.lu-kontakt__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 16.5rem;
  min-height: 4rem;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, #214a73 0%, #183c51 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--lu-heading-font);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(24, 60, 81, 0.16);
}

.lu-rechner__reset:hover,
.lu-kontakt__submit:hover {
  background: linear-gradient(180deg, #183c51 0%, #102c45 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 26px rgba(24, 60, 81, 0.2);
}

.lu-rechner__reset:focus-visible,
.lu-kontakt__submit:focus-visible {
  outline: 3px solid rgba(199, 208, 213, 0.9);
  outline-offset: 3px;
}

/* Sections */

.lu-rechner__form {
  display: grid;
  gap: 2.45rem;
}

.lu-rechner__section {
  /* spacing handled by form gap */
}

.lu-rechner__step {
  display: block;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #6a5339;
  margin-bottom: 0.45rem;
}

.lu-rechner__section-label {
  font-family: var(--lu-heading-font);
  font-weight: 800;
  color: var(--lu-blue-soft);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
  margin: 0 0 0.85rem;
}

/* Option cards */

.lu-rechner__options {
  display: grid;
  gap: 0.8rem;
}

.lu-rechner__options--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lu-rechner__options--2 {
  grid-template-columns: repeat(2, 1fr);
}

.lu-rechner__options--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lu-rechner__options--6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lu-rechner__select-wrap {
  position: relative;
  max-width: 40rem;
}

.lu-rechner__select {
  width: 100%;
  min-height: 4rem;
  padding: 0.9rem 3.25rem 0.9rem 1.15rem;
  border: 1.5px solid var(--lu-border);
  border-radius: 18px;
  background: #fff;
  color: var(--lu-blue-soft);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  background-image: linear-gradient(45deg, transparent 50%, var(--lu-blue-soft) 50%), linear-gradient(135deg, var(--lu-blue-soft) 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 4px), calc(100% - 17px) calc(50% - 4px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.lu-rechner__select:focus {
  outline: none;
  border-color: var(--lu-blue-soft);
}

.lu-rechner__microcopy {
  margin: 0.65rem 0 0;
  color: var(--lu-copy);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lu-rechner .lu-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 5.4rem;
  padding: 1.1rem 1.3rem;
  background: transparent !important;
  border: 2px solid #18265b !important;
  border-radius: 1.15rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-align: left;
  font-family: inherit;
  box-shadow: none;
}

.lu-option strong {
  font-family: var(--lu-heading-font);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--lu-blue);
  line-height: 1.05;
  font-weight: 800;
  transition: color 0.2s ease;
}

.lu-option span {
  font-size: 0.94rem;
  color: var(--lu-copy);
  margin-top: 0.3rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.lu-rechner .lu-option:hover {
  background: rgba(24, 38, 91, 0.06) !important;
  border-color: #18265b !important;
  transform: translateY(-1px);
}

.lu-rechner .lu-option.active {
  background: #18265b !important;
  border-color: #18265b !important;
  box-shadow: none;
}

.lu-option.active strong,
.lu-option.active span {
  color: #fff;
}

#lu-einkommen-options .lu-option {
  min-height: 5.9rem;
  max-width: none;
}

#lu-einkommen-options .lu-option strong {
  font-size: 1rem;
  line-height: 1.2;
}

#lu-einkommen-options .lu-option span {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.15rem;
}

/* Ergebnis */

.lu-rechner__ergebnis {
  margin-top: 1.4rem;
  border: 1px solid var(--lu-border);
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.lu-ergebnis__inner {
  padding: 1.8rem 2rem;
}

.lu-ergebnis__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.lu-ergebnis__row > span:first-child {
  color: var(--lu-copy);
}

.lu-ergebnis__row strong {
  font-family: var(--lu-heading-font);
  font-weight: 700;
}

.lu-ergebnis__row--details {
  display: block;
  font-size: 0.85rem;
  color: #5a6d78;
  padding-bottom: 0.6rem;
}

.lu-ergebnis__row--total {
  font-size: 1.2rem;
}

.lu-highlight {
  color: #2e7d32;
}

.lu-total {
  color: var(--lu-blue);
  font-family: var(--lu-heading-font);
  font-size: 1.55rem;
}

.lu-rechner__ergebnis hr {
  border: none;
  border-top: 1px solid #d8dce0;
  margin: 0.7rem 0;
}

.lu-ergebnis__ueberfuehrung {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #5a6d78;
  text-align: right;
}

/* Citroën-Bonus-Zeile */

.lu-ergebnis__citroen-bonus {
  background: #e8f5e9;
  border-radius: 6px;
  padding: 0.6rem 0.75rem !important;
  margin: 0.4rem 0;
  border-left: 4px solid #2e7d32;
}

.lu-ergebnis__citroen-bonus span {
  color: #2e7d32;
  font-weight: 600;
}

/* Leasing-Disclaimer */

.lu-rechner__disclaimer {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: var(--lu-surface);
  border: 1px solid var(--lu-border);
  border-radius: 16px;
  font-size: 0.82rem;
  color: #52606d;
  line-height: 1.5;
}

.lu-rechner__hinweis {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #52606d;
  line-height: 1.55;
}

/* --- Gemeinsames Akkordeon --- */

.lu-foerder-accordion {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  overflow-x: clip;
}

.lu-foerder-accordion__trigger {
  display: grid !important;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "media cta";
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #102c45 0%, #183c51 55%, #214a73 100%);
  color: #fff;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lu-foerder-accordion__trigger:hover,
.lu-foerder-accordion__trigger:focus,
.lu-foerder-accordion__trigger:active {
  border: 0;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #102c45 0%, #183c51 55%, #214a73 100%);
}

.lu-foerder-accordion__trigger:hover {
  transform: translateY(-2px);
}

.lu-foerder-accordion__trigger:focus {
  outline: none;
}

.lu-foerder-accordion__trigger:focus-visible {
  outline: none;
}

.lu-foerder-accordion__trigger:focus:not(:focus-visible) {
  outline: none;
}

.lu-foerder-accordion__trigger::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lu-foerder-accordion__trigger-copy {
  display: grid;
  grid-area: copy;
  gap: 1rem;
  min-width: 0;
  align-content: end;
  justify-items: start;
  padding: 2rem 2rem 0 2.25rem;
  text-align: left;
}

.lu-foerder-accordion__media {
  grid-area: media;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lu-foerder-accordion__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.lu-foerder-accordion__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lu-foerder-accordion__title {
  color: #fff;
  font-family: var(--lu-heading-font);
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  word-break: break-word;
  text-wrap: balance;
}

.lu-foerder-accordion__lead {
  max-width: 46rem;
  margin: 0;
  padding-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.45;
  text-align: left;
  text-wrap: pretty;
}

.lu-foerder-accordion__cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: start;
  gap: 0.9rem;
  margin: 1.35rem 2rem 2rem 2.25rem;
  padding: 0.95rem 1.15rem 0.95rem 1.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lu-foerder-accordion__cta-label {
  display: block;
  color: #fff;
  font-family: var(--lu-heading-font);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.lu-foerder-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lu-foerder-accordion__icon::before,
.lu-foerder-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.lu-foerder-accordion__icon::before {
  transform: translate(-50%, -50%);
}

.lu-foerder-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lu-foerder-accordion__trigger[aria-expanded="true"] .lu-foerder-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.lu-foerder-accordion__content {
  padding-top: 1.25rem;
  min-width: 0;
}

.lu-foerder-accordion__stack {
  display: grid;
  gap: 2rem;
  min-width: 0;
  overflow: hidden;
}

.lu-foerder-accordion__stack > .wp-block-heading {
  margin: 0;
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.lu-foerder-accordion__stack > .wp-block-heading + .lu-rechner,
.lu-foerder-accordion__stack > .lu-rechner {
  width: 100%;
  max-width: 100%;
  grid-column: 1 / -1;
  justify-self: stretch;
}

.lu-foerder-accordion__stack > .wp-block-spacer {
  display: none;
}

.lu-foerder-accordion__stack > .lu-fahrzeuge,
.lu-foerder-accordion__stack > .lu-kontakt,
.lu-foerder-accordion__stack > .lu-rechner,
.lu-foerder-accordion__stack > .lu-foerder-intro,
.lu-foerder-accordion__stack > p {
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

/* --- Förder-Intro in Elementor --- */

.lu-foerder-intro {
  background: #f5f7f8;
  border: 1px solid rgba(199, 208, 213, 0.9);
  border-radius: 25px;
  padding: 2.75rem 2.8rem;
  color: var(--lu-copy);
  box-shadow: none;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.lu-foerder-intro > *:first-child {
  margin-top: 0;
}

.lu-foerder-intro > *:last-child {
  margin-bottom: 0;
}

.lu-foerder-intro__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #6a5339;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lu-foerder-intro__title {
  margin: 0 0 0.9rem;
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.lu-foerder-intro p,
.lu-foerder-intro li,
.lu-foerder-intro figcaption {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lu-copy);
}

.lu-foerder-intro p {
  margin: 0 0 1rem;
}

.lu-foerder-intro p strong {
  color: var(--lu-blue-soft);
}

.lu-foerder-intro h3 {
  margin: 2.2rem 0 0.9rem;
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lu-foerder-intro ul,
.lu-foerder-intro ol {
  margin: 0 0 1.15rem 1.25rem;
  padding: 0;
}

.lu-foerder-intro ul {
  list-style: none;
  margin-left: 0;
}

.lu-foerder-intro ul li::marker,
.lu-foerder-intro ol li::marker {
  color: var(--lu-blue-soft);
  font-weight: 700;
}

.lu-foerder-intro .wp-block-table,
.lu-foerder-intro figure {
  margin: 1.4rem 0 1.1rem;
  overflow-x: auto;
}

.lu-foerder-intro table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.lu-foerder-intro thead th {
  padding: 1rem 1rem 0.95rem;
  background: #d8d8d8;
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  border: none;
}

.lu-foerder-intro thead th:first-child {
  border-top-left-radius: 18px;
}

.lu-foerder-intro thead th:last-child {
  border-top-right-radius: 18px;
}

.lu-foerder-intro tbody td {
  padding: 1rem;
  border: none;
  border-top: 1px solid #e5e8ea;
  color: var(--lu-copy);
  vertical-align: top;
  font-size: 0.98rem;
  line-height: 1.55;
}

.lu-foerder-intro tbody tr:nth-child(even) td {
  background: #f8f9fa;
}

.lu-foerder-intro tbody td:first-child {
  color: var(--lu-blue-soft);
  font-family: var(--lu-heading-font);
  font-weight: 700;
  white-space: nowrap;
}

.lu-foerder-intro figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}



@media (max-width: 980px) {

  .lu-foerder-hero__stage {
    min-height: 540px;
  }

  .lu-foerder-hero__overlay {
    background:
      linear-gradient(180deg, rgba(8, 17, 24, 0.25) 0%, rgba(8, 17, 24, 0.58) 40%, rgba(8, 17, 24, 0.92) 100%);
  }

  .lu-foerder-hero__content {
    max-width: none;
    justify-items: center;
    text-align: center;
    padding-inline: 1.5rem;
  }

  .lu-foerder-hero__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }

  .lu-foerder-hero__lead {
    max-width: 42rem;
  }

  .lu-foerder-accordion {
    margin: 1.75rem auto;
    padding: 0 0.9rem;
  }

  .lu-foerder-accordion__trigger {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "cta";
    padding: 0 0 1.35rem;
  }

  .lu-foerder-accordion__image {
    aspect-ratio: 16 / 10;
  }

  .lu-foerder-accordion__trigger-copy {
    gap: 0.85rem;
    padding: 1rem 1.35rem 0;
    justify-items: center;
    text-align: center;
  }

  .lu-foerder-accordion__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .lu-foerder-accordion__lead {
    max-width: none;
    font-size: 1rem;
    line-height: 1.45;
    padding-bottom: 0.2rem;
    text-align: center;
  }

  .lu-foerder-accordion__cta {
    margin: 1.15rem 1.35rem 2rem auto;
  }

  .lu-foerder-accordion__cta-label {
    font-size: 0.88rem;
  }

  .lu-foerder-accordion__icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .lu-foerder-accordion__stack > .wp-block-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  }

  .lu-fahrzeuge {
    grid-template-columns: 1fr;
    margin: 1.5rem auto;
  }
}

@media (max-width: 767px) {

  .lu-foerder-hero__stage {
    min-height: 460px;
  }

  .lu-foerder-hero__content {
    gap: 0.85rem;
    padding: 1.25rem 1rem 1.5rem;
  }

  .lu-foerder-hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .lu-foerder-hero__title {
    max-width: none;
    font-size: 1.95rem;
    line-height: 0.98;
  }

  .lu-foerder-hero__lead {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .lu-foerder-hero__cta {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.85rem 1.1rem;
    font-size: 0.8rem;
  }

  .lu-foerder-accordion {
    margin: 1.5rem auto;
  }

  .lu-foerder-accordion__trigger {
    padding: 0 0 1.35rem;
    border-radius: 22px;
  }

  .lu-foerder-accordion__media {
    min-height: 0;
  }

  .lu-foerder-accordion__image {
    aspect-ratio: 6 / 5;
  }

  .lu-foerder-accordion__title {
    font-size: 1.9rem;
    line-height: 1;
  }

  .lu-foerder-accordion__trigger-copy {
    gap: 0.9rem;
    padding: 1rem 1rem 0;
  }

  .lu-foerder-accordion__lead {
    font-size: 0.95rem;
    line-height: 1.38;
    padding-bottom: 0.15rem;
  }

  .lu-foerder-accordion__cta {
    width: calc(100% - 2rem);
    margin: 1.15rem 1rem 1rem auto;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem 0.8rem 1.05rem;
    box-sizing: border-box;
  }

  .lu-foerder-accordion__cta-label {
    font-size: 0.8rem;
  }

  .lu-foerder-accordion__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .lu-foerder-accordion__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .lu-foerder-accordion__stack {
    gap: 1.5rem;
  }

  .lu-foerder-intro {
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
  }

  .lu-foerder-intro h3 {
    font-size: 1.45rem;
    margin-top: 1.7rem;
  }

  .lu-foerder-intro__title {
    font-size: 1.95rem;
  }

  .lu-foerder-intro .wp-block-table {
    overflow-x: auto;
  }

  .lu-foerder-intro table {
    min-width: 760px;
  }
}

/* --- Fahrzeugkarten --- */

.lu-fahrzeuge {
  max-width: 1100px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  min-width: 0;
  box-sizing: border-box;
}

.lu-fahrzeuge__marke {
  grid-column: 1 / -1;
  color: #183C51;
  font-family: var(--lu-heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #c7d0d5;
}

.lu-fahrzeuge__marke:first-child {
  margin-top: 0;
}

.lu-fahrzeug-card {
  background: #fff;
  border: 1px solid #c7d0d5;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  min-width: 0;
  max-width: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.lu-fahrzeug-card:hover {
  box-shadow: 0 4px 16px rgba(24, 60, 81, 0.15);
  border-color: #183C51;
}

.lu-fahrzeug-card--active {
  border-color: #183C51;
  box-shadow: 0 4px 16px rgba(24, 60, 81, 0.2);
}

.lu-fahrzeug-card__badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: #2e7d32;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 0 4px 4px 0;
  z-index: 1;
}

.lu-fahrzeug-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f0f2f4;
  overflow: hidden;
}

.lu-fahrzeug-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lu-fahrzeug-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
  min-width: 0;
}

.lu-fahrzeuge .lu-fahrzeug-card__title,
.elementor .lu-fahrzeuge .lu-fahrzeug-card__title,
.elementor-kit-7 .lu-fahrzeuge .lu-fahrzeug-card__title {
  color: #183C51;
  font-family: var(--lu-heading-font);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 0.6rem;
  text-transform: none !important;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.lu-fahrzeug-card__preis {
  font-size: 1.05rem;
  color: #183C51;
  margin: 0 0 0.2rem;
}

.lu-fahrzeug-card__preis strong {
  color: #2e7d32;
}

.lu-fahrzeug-card__barpreis {
  font-size: 0.92rem;
  color: #5a6d78;
  margin: 0 0 0.9rem;
}

.lu-fahrzeug-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: #5a6d78;
}

.lu-fahrzeug-card__specs li {
  padding: 0.15rem 0;
}

.lu-fahrzeug-card__upe {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #999;
}

.lu-fahrzeuge__hinweis {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  overflow-wrap: anywhere;
}

/* --- Kontaktformular --- */

.lu-kontakt {
  max-width: 600px;
  margin: 2rem auto;
  min-width: 0;
  box-sizing: border-box;
}

.lu-kontakt__title {
  color: #183C51;
  font-family: var(--lu-heading-font);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.lu-kontakt__form {
  display: grid;
  gap: 1.15rem;
}

.lu-kontakt__field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #183C51;
  font-size: 0.92rem;
}

.lu-kontakt__field input[type="text"],
.lu-kontakt__field input[type="email"],
.lu-kontakt__field input[type="tel"],
.lu-kontakt__field select,
.lu-kontakt__field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #c7d0d5;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #183C51;
  font-family: inherit;
  box-sizing: border-box;
  max-width: 100%;
}

.lu-kontakt__field input:focus,
.lu-kontakt__field select:focus,
.lu-kontakt__field textarea:focus {
  outline: 2px solid #183C51;
  outline-offset: 1px;
}

.lu-kontakt__field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
}

.lu-kontakt__field--checkbox input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 0.2rem;
  accent-color: #183C51;
  opacity: 1;
  position: static;
  pointer-events: auto;
}

.lu-kontakt__submit {
  min-width: 15rem;
  padding: 20px 34px;
  background-color: var(--e-global-color-1edfdda);
  color: #fff !important;
  border: none;
  border-radius: 30px;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: none;
  cursor: pointer;
}

.lu-kontakt__submit[disabled] {
  opacity: 0.7;
  cursor: progress;
}

.lu-kontakt__status:empty {
  display: none;
}

.lu-kontakt__status {
  margin-bottom: 1rem;
}

.lu-kontakt--success-view .lu-kontakt__form {
  display: none;
}

.lu-foerder-accordion--success-view > .lu-foerder-accordion__trigger {
  display: none;
}

.lu-foerder-accordion--success-view .lu-foerder-accordion__stack > :not(.lu-kontakt) {
  display: none;
}

.lu-kontakt__success {
  padding: 1.25rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  color: #2e7d32;
  font-weight: 600;
}

.lu-kontakt__success-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.lu-kontakt__success-copy {
  margin: 0 0 1rem;
  font-weight: 500;
}

.lu-kontakt__summary {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #b8dfba;
  border-radius: 12px;
  color: #183C51;
}

.lu-kontakt__summary-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: #183C51;
}

.lu-kontakt__summary-list {
  margin: 0;
}

.lu-kontakt__summary-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid #d9ead9;
}

.lu-kontakt__summary-row:first-child {
  border-top: none;
  padding-top: 0;
}

.lu-kontakt__summary-row:last-child {
  padding-bottom: 0;
}

.lu-kontakt__summary-row dt,
.lu-kontakt__summary-row dd {
  margin: 0;
}

.lu-kontakt__summary-row dt {
  font-weight: 700;
}

.lu-kontakt__summary-row dd {
  line-height: 1.55;
  word-break: break-word;
}

.lu-kontakt__summary-row--message dd {
  white-space: normal;
}

.lu-kontakt__errors {
  padding: 1rem;
  background: #fce4ec;
  border: 1px solid #ef9a9a;
  border-radius: 6px;
  color: #c62828;
  margin-bottom: 1rem;
}

.lu-kontakt__errors ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .lu-fahrzeuge {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lu-rechner {
    margin: 1.25rem auto;
    padding: 0;
  }

  .lu-rechner__card {
    padding: 1.5rem 1.2rem;
  }

  .lu-rechner__header {
    flex-direction: column;
    margin-bottom: 1.8rem;
  }

  .lu-rechner__reset,
  .lu-kontakt__submit {
    width: 100%;
    min-width: 0;
  }

  .lu-kontakt__summary-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .lu-rechner__title {
    max-width: none;
    font-size: 1.9rem;
  }

  .lu-rechner__options--3 {
    grid-template-columns: 1fr;
  }

  .lu-rechner__options--2 {
    grid-template-columns: 1fr;
  }

  .lu-rechner__options--4 {
    grid-template-columns: 1fr;
  }

  .lu-rechner__options--6 {
    grid-template-columns: 1fr;
  }

  .lu-option {
    min-height: 4.8rem;
    padding: 0.95rem 1rem;
  }

  .lu-option strong {
    font-size: 1.2rem;
  }

  .lu-option span {
    font-size: 0.95rem;
  }

  #lu-einkommen-options .lu-option {
    max-width: none;
  }

  .lu-rechner,
  .lu-kontakt {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lu-kontakt {
    margin: 1rem auto 0;
  }

  .lu-ergebnis__row {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .lu-total {
    font-size: 1.15rem;
  }

  .lu-fahrzeuge {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1rem;
  }

  .lu-fahrzeug-card__title {
    font-size: 1.25rem;
  }

  .lu-fahrzeug-card__preis {
    font-size: 1rem;
  }

  .lu-fahrzeuge__marke {
    font-size: 1.45rem;
  }
}

@media (max-width: 980px) {
  .lu-rechner {
    margin: 1.75rem auto;
  }

  .lu-rechner__card {
    padding: 2.2rem 1.6rem;
  }

  .lu-rechner__header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .lu-rechner__title,
  .lu-rechner__subtitle,
  .lu-rechner__select-wrap {
    max-width: none;
  }

  .lu-rechner__reset,
  .lu-kontakt__submit {
    width: 100%;
    min-width: 0;
  }

  .lu-rechner__options--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lu-rechner__options--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lu-fahrzeuge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    padding: 0 0.5rem;
  }

  .lu-fahrzeuge__marke {
    font-size: 1.65rem;
    overflow-wrap: anywhere;
  }

  .lu-fahrzeug-card__body {
    padding: 1rem 1rem 1.15rem;
  }

  .lu-fahrzeug-card__title {
    font-size: 1.3rem;
  }

  .lu-kontakt {
    max-width: none;
    margin: 1.5rem auto 0;
    padding: 0 0.5rem;
  }
}

@media (max-width: 760px) {
  .lu-foerder-accordion__stack > .wp-block-heading {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .lu-rechner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lu-rechner__card {
    padding: 1.4rem 1rem;
    border-radius: 20px;
  }

  .lu-rechner__form {
    gap: 1.4rem;
  }

  .lu-rechner__section-label {
    font-size: 1.3rem;
    line-height: 1.12;
  }

  .lu-rechner__options--2,
  .lu-rechner__options--3,
  .lu-rechner__options--4,
  .lu-rechner__options--6 {
    grid-template-columns: 1fr;
  }

  .lu-option {
    min-height: 4.6rem;
    padding: 0.9rem 1rem;
  }

  .lu-option strong {
    font-size: 1.15rem;
  }

  .lu-option span,
  #lu-einkommen-options .lu-option span,
  #lu-einkommen-options .lu-option strong {
    font-size: 0.95rem;
  }

  .lu-ergebnis__inner {
    padding: 1.2rem 1rem;
  }

  .lu-ergebnis__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.94rem;
  }

  .lu-total {
    font-size: 1.1rem;
  }

  .lu-ergebnis__ueberfuehrung {
    text-align: left;
  }

  .lu-rechner__disclaimer,
  .lu-rechner__hinweis {
    font-size: 0.78rem;
  }

  .lu-fahrzeuge {
    grid-template-columns: 1fr;
    padding: 0 0.75rem;
    overflow-x: hidden;
  }

  .lu-fahrzeuge__marke {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
  }

  .lu-fahrzeug-card {
    width: 100%;
  }

  .lu-fahrzeug-card__img {
    aspect-ratio: 4 / 3;
  }

  .lu-fahrzeug-card__badge {
    max-width: calc(100% - 1rem);
    font-size: 0.7rem;
    line-height: 1.25;
    white-space: normal;
  }

  .lu-kontakt {
    padding: 0 0.75rem;
  }

  .lu-kontakt__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .lu-kontakt__field input[type="text"],
  .lu-kontakt__field input[type="email"],
  .lu-kontakt__field input[type="tel"],
  .lu-kontakt__field select,
  .lu-kontakt__field textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .lu-foerder-accordion {
    padding: 0 0.5rem;
  }

  .lu-foerder-accordion__trigger {
    padding-bottom: 1.45rem;
  }

  .lu-foerder-accordion__trigger-copy {
    gap: 1rem;
    padding: 1rem 0.9rem 0;
  }

  .lu-foerder-accordion__lead {
    line-height: 1.42;
  }

  .lu-foerder-accordion__cta {
    width: calc(100% - 1.8rem);
    margin: 1.2rem 0.9rem 1.1rem auto;
  }

  .lu-foerder-accordion__stack {
    gap: 1.2rem;
  }

  .lu-foerder-accordion__stack > .wp-block-heading {
    font-size: 1.28rem;
  }

  .lu-rechner,
  .lu-kontakt,
  .lu-fahrzeuge {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lu-rechner__card {
    padding: 1.2rem 0.85rem;
  }

  .lu-rechner__title {
    font-size: 1.6rem;
  }

  .lu-rechner__section-label {
    font-size: 1.15rem;
  }

  .lu-fahrzeug-card__body {
    padding: 0.9rem 0.85rem 1rem;
  }

  .lu-fahrzeug-card__title {
    font-size: 1.12rem;
  }

  .lu-kontakt__title {
    font-size: 1.4rem;
  }
}
