/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Automobile Lopp CI */
  --lopp-blue:       #2563AE;   /* Logo-Blau */
  --lopp-blue-dark:  #1a4a8a;   /* Dunklere Variante für Hover */
  --lopp-blue-deep:  #0d2d5e;   /* Header/Footer Dunkelblau */
  --lopp-gold:       #F5A800;   /* Lieferwagen24 Amber-Gelb */
  --lopp-gold-dark:  #d48f00;

  /* Utility */
  --green-cta:       #2e9e2e;
  --green-cta-hover: #237023;
  --whatsapp:        #25D366;
  --red-badge:       #c0392b;
  --text:            #1a1a1a;
  --text-muted:      #666;
  --border:          #d8dde6;
  --bg:              #ffffff;
  --bg-light:        #f4f6fa;
  --bg-section:      #eef1f7;
  --radius:          8px;
  --shadow:          0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 24px rgba(0,0,0,0.13);
  --font:            'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--lopp-blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-text {
  font-size: 0.78rem;
  opacity: 0.8;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  transition: color 0.15s;
}

.topbar-link:hover { color: #fff; }

.topbar-wa { color: #5ee87b; }
.topbar-wa:hover { color: #7ef09a; }

.topbar-sep { opacity: 0.3; }

.wa-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--lopp-blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo { display: flex; align-items: center; }

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header-claim {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  flex: 1;
}

.header-cta {
  display: inline-block;
  background: var(--lopp-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--lopp-blue-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(160deg, var(--lopp-blue-deep) 0%, var(--lopp-blue) 55%, #3a7ad4 100%);
  color: #fff;
  padding: 72px 0 84px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--lopp-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-highlight { color: var(--lopp-gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-usps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.usp-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
}

.usp-check { color: var(--lopp-gold); font-weight: 700; }

.btn-hero-cta {
  display: inline-block;
  background: var(--lopp-gold);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,160,32,0.45);
  letter-spacing: 0.2px;
}

.btn-hero-cta:hover {
  background: var(--lopp-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,160,32,0.55);
}

.hero-disclaimer {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-logo-item {
  display: flex;
  align-items: center;
}

.trust-badge-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.trust-text-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.trust-text-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lopp-blue);
}

.trust-text-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   MODELS SECTION
   ============================================ */
.models-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--lopp-blue-deep);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.model-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.model-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.model-card.featured {
  border: 2px solid var(--lopp-gold);
  box-shadow: 0 4px 24px rgba(232,160,32,0.18);
}

.model-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  color: #fff;
}

.badge-red   { background: var(--red-badge); }
.badge-blue  { background: var(--lopp-blue); }
.badge-green { background: var(--green-cta); }

.model-img-wrap {
  background: var(--bg-light);
}

.model-img-placeholder {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dde4f0 0%, #c8d2e8 100%);
}

.img-placeholder-label {
  font-size: 0.85rem;
  color: var(--lopp-blue);
  font-weight: 600;
  opacity: 0.6;
}

.model-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.model-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.model-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lopp-blue-deep);
  margin-bottom: 4px;
}

.model-spec {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.model-features {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.model-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}

.model-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lopp-blue);
  font-weight: 700;
  font-size: 0.75rem;
}

.model-price-box {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.price-label-small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.price-crossed {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.main-price-row { margin-bottom: 6px; }

.price-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.price-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--lopp-blue);
}

.price-inkl-uef {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

.price-saving {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-cta);
}

.finance-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
}

.finance-hint strong { color: var(--lopp-blue-deep); }

/* Static financing example */
.finance-example {
  background: #f4f7fb;
  border: 1px solid #dce4ef;
  border-left: 3px solid var(--lopp-blue);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.finance-ex-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lopp-blue);
  margin-bottom: 10px;
}

/* Collapsible toggle (cards only) */
.finance-collapsible { padding: 0; }

.finance-ex-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lopp-blue);
  gap: 8px;
}

.finance-ex-toggle:hover { color: var(--lopp-blue-dark); }

.finance-ex-chevron {
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.2s;
}

.finance-collapsible.open .finance-ex-chevron {
  transform: rotate(180deg);
}

.finance-ex-body {
  display: none;
  padding: 0 14px 12px;
}

.finance-collapsible.open .finance-ex-body {
  display: block;
}

.finance-ex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.finance-ex-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.finance-ex-item.finance-ex-main {
  grid-column: 1 / -1;
  background: var(--lopp-blue);
  border-radius: 6px;
  padding: 8px 12px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.finance-ex-item.finance-ex-main .finance-ex-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
}

.finance-ex-item.finance-ex-main .finance-ex-value {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.finance-ex-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.finance-ex-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.finance-ex-fine {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   FINANCING CALCULATOR
   ============================================ */
.calc-widget {
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.calc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-light);
  border: none;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lopp-blue);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.calc-toggle:hover { background: #e4eaf5; }

.calc-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--lopp-blue);
}

.calc-widget.open .calc-chevron {
  transform: rotate(180deg);
}

.calc-body {
  display: none;
  padding: 14px;
  background: #fff;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 12px;
}

.calc-widget.open .calc-body {
  display: flex;
}

.calc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.calc-down-display {
  font-weight: 700;
  color: var(--lopp-blue);
}

/* Range slider */
.calc-slider {
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--border);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lopp-blue);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lopp-blue);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.calc-slider-hints {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Term buttons */
.calc-term-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-term-btns button {
  flex: 1;
  min-width: 0;
  padding: 6px 4px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.calc-term-btns button:hover {
  border-color: var(--lopp-blue);
  color: var(--lopp-blue);
}

.calc-term-btns button.active {
  background: var(--lopp-blue);
  border-color: var(--lopp-blue);
  color: #fff;
}

/* Result */
.calc-result {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--lopp-gold);
}

.calc-result-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.calc-result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-result-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lopp-blue);
}

.calc-balloon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
  margin-top: 6px;
}

.calc-balloon-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-balloon-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.calc-result-fine {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.model-name em {
  font-style: normal;
  color: var(--lopp-blue);
}

.btn-model-cta {
  display: block;
  text-align: center;
  background: var(--lopp-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius);
  margin-top: auto;
  transition: background 0.2s;
}

.btn-model-cta:hover { background: var(--lopp-blue-dark); }

.btn-model-cta.btn-primary {
  background: var(--lopp-gold);
}

.btn-model-cta.btn-primary:hover {
  background: var(--lopp-gold-dark);
}

.uvp-disclaimer {
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: 72px 0;
  background: var(--lopp-blue-deep);
}

.why-title {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
  line-height: 1.25;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.why-card p strong {
  color: var(--lopp-gold);
  font-weight: 700;
}

@media (max-width: 720px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  padding: 80px 0;
  background: var(--bg);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}

.form-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--lopp-blue-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}

.lopp-blue { color: var(--lopp-blue); }

.form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.form-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.form-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.promise-check {
  width: 22px;
  height: 22px;
  background: var(--lopp-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-direct-contact { margin-bottom: 24px; }

.direct-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.direct-link:hover { opacity: 0.85; }

.direct-phone {
  background: var(--bg-light);
  color: var(--lopp-blue);
  border: 1.5px solid var(--border);
}

.direct-wa {
  background: var(--whatsapp);
  color: #fff;
}

.wa-icon-sm {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.form-trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-trust-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* FORM BOX */
.form-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.form-box-header {
  background: var(--lopp-blue);
  padding: 20px 28px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.form-box-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
}

form {
  padding: 24px 28px 28px;
}

.field-group {
  margin-bottom: 16px;
}

.field-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.req { color: var(--red-badge); }
.optional { color: var(--text-muted); font-weight: 400; }

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 10px 36px 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-group input:focus,
.select-wrap select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--lopp-blue);
  box-shadow: 0 0 0 3px rgba(37,99,174,0.1);
}

.field-group input.error,
.select-wrap select.error,
.field-group textarea.error {
  border-color: var(--red-badge);
}

.field-group textarea {
  resize: vertical;
  min-height: 82px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---- Kundentyp Toggle ---- */
.kundentyp-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.kundentyp-option {
  flex: 1;
  cursor: pointer;
}

.kundentyp-option input[type="radio"] {
  display: none;
}

.kundentyp-option span {
  display: block;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border-right: 1.5px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.kundentyp-option:last-child span {
  border-right: none;
}

.kundentyp-option input[type="radio"]:checked + span {
  background: var(--lopp-blue);
  color: #fff;
}

/* ---- Financing block ---- */
.financing-block {
  background: #f4f7fb;
  border: 1px solid #dce4ef;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 4px;
}

.financing-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.financing-block-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lopp-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.barkauf-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.barkauf-label input[type="checkbox"] {
  display: none;
}

.barkauf-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--lopp-blue);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.barkauf-label input[type="checkbox"]:checked + .barkauf-check {
  background: var(--lopp-blue);
  border-color: var(--lopp-blue);
}

.barkauf-label input[type="checkbox"]:checked + .barkauf-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.financing-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.2s;
}

.financing-fields.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.input-affix-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-affix-wrap input {
  padding-right: 28px;
  width: 100%;
}

.input-affix {
  position: absolute;
  right: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
}

/* ---- end financing block ---- */

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--lopp-blue);
  cursor: pointer;
}

.field-check label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.field-check label a {
  color: var(--lopp-blue);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--lopp-gold);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--lopp-gold-dark);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-fine {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* SUCCESS */
.form-success {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-cta);
  padding: 48px 32px;
  text-align: center;
}

.success-check {
  width: 60px;
  height: 60px;
  background: var(--green-cta);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-logo {
  height: 40px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lopp-blue-deep);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 72px 0 80px;
  background: linear-gradient(160deg, #f0f5fb 0%, #fdfaf4 100%);
  border-top: 1px solid #dce4ef;
}

.experience-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.experience-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--lopp-blue-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}

.experience-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* --- Map column --- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
}

.dealer-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--lopp-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.dealer-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dealer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lopp-blue);
}

.dealer-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

.dealer-hours {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dealer-info-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dealer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.dealer-btn-phone {
  background: var(--lopp-blue);
  color: #fff;
}

.dealer-btn-phone:hover {
  background: var(--lopp-blue-dark);
  transform: translateY(-1px);
}

.dealer-btn-route {
  background: var(--lopp-gold);
  color: #fff;
}

.dealer-btn-route:hover {
  background: var(--lopp-gold-dark);
  transform: translateY(-1px);
}

/* --- Ideas column --- */
.ideas-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lopp-blue-deep);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ideas-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.idea-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}

.idea-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.11);
}

.idea-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idea-body strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}

.idea-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Speditionslieferung Banner ---- */
.delivery-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--lopp-blue-deep) 0%, var(--lopp-blue) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.delivery-banner-icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-banner-content {
  flex: 1;
  min-width: 0;
}

.delivery-banner-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.delivery-banner-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
}

.delivery-banner-text strong {
  color: var(--lopp-gold);
  font-weight: 700;
}

.delivery-banner-cta {
  display: inline-block;
  background: var(--lopp-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 13px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}

.delivery-banner-cta:hover {
  background: var(--lopp-gold-dark);
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .experience-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .delivery-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .delivery-banner-cta {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--lopp-blue-deep);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  opacity: 0.65;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 5px 8px;
}

.footer-bottom {
  padding: 24px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.82rem;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.footer-nav a:hover { opacity: 1; text-decoration: underline; }

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.5;
}

.footer-disclaimer {
  font-size: 0.72rem;
  opacity: 0.4;
  max-width: 640px;
  line-height: 1.5;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 10px 12px;
  gap: 8px;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 6px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
}

.btn-phone-mob {
  background: var(--bg-light);
  color: var(--lopp-blue);
  border: 1.5px solid var(--border);
}

.btn-offer-mob {
  background: var(--lopp-gold);
  color: #fff;
}

.btn-wa-mob {
  background: var(--whatsapp);
  color: #fff;
}

.wa-icon-xs {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .models-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero { padding: 52px 0 64px; }

  .trust-strip-inner { gap: 16px; }
  .trust-divider { display: none; }
  .trust-badge-img { height: 52px; }

  .header-claim { display: none; }

  form { padding: 20px 18px 22px; }
  .form-box-header { padding: 16px 20px; }

  .field-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .mobile-sticky.visible { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .topbar-text { display: none; }
  .topbar-sep { display: none; }
  .topbar-contacts { width: 100%; justify-content: space-between; }

  .logo-img { height: 40px; }
  .header-cta { font-size: 0.78rem; padding: 8px 14px; }

  .hero-usps { flex-direction: column; align-items: center; }
}

/* ============================================
   MODEL CARD: CLICKABLE IMAGE + DETAILS BTN
   ============================================ */
.model-img-clickable {
  position: relative;
  cursor: pointer;
}

.model-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 80, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.model-img-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.3);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.model-img-clickable:hover .model-img-overlay,
.model-img-clickable:focus .model-img-overlay {
  opacity: 1;
}

.stock-banner {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: #e65c00;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px 5px 10px;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
  pointer-events: none;
}

.btn-details {
  display: block;
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--lopp-blue);
  color: var(--lopp-blue);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.15s, color 0.15s;
}

.btn-details:hover {
  background: var(--lopp-blue);
  color: #fff;
}

/* ============================================
   VEHICLE MODAL
   ============================================ */
.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.vehicle-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 40, 0.75);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.modal-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 980px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.vehicle-modal.open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover { background: rgba(0,0,0,0.8); }

.modal-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  height: 100%;
  overflow: hidden;
}

/* --- GALLERY --- */
.modal-gallery {
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
}

.gallery-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-slide span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  padding: 6px 16px;
  border-radius: 20px;
}

/* Slide colors – Life (silver/grey tones) */
.slide-life-1 { background: linear-gradient(135deg, #8fa8c4 0%, #6688aa 100%); }
.slide-life-2 { background: linear-gradient(135deg, #7a98b8 0%, #5a7a9a 100%); }
.slide-life-3 { background: linear-gradient(135deg, #6888a8 0%, #4a6888 100%); }
.slide-life-4 { background: linear-gradient(135deg, #d0d8e8 0%, #b0bcd0 100%); }
.slide-life-5 { background: linear-gradient(135deg, #e8eef6 0%, #c8d4e4 100%); }

/* Slide colors – Style (deeper blue tones) */
.slide-style-1 { background: linear-gradient(135deg, #1e4d8c 0%, #1a3a6e 100%); }
.slide-style-2 { background: linear-gradient(135deg, #2258a0 0%, #1a4478 100%); }
.slide-style-3 { background: linear-gradient(135deg, #1a3a6e 0%, #0d2a5e 100%); }
.slide-style-4 { background: linear-gradient(135deg, #c8d4e8 0%, #a8bed8 100%); }
.slide-style-5 { background: linear-gradient(135deg, #3a6bb4 0%, #2a5094 100%); }

/* Slide colors – Hybrid (teal/eco tones) */
.slide-hybrid-1 { background: linear-gradient(135deg, #1a6e4a 0%, #0d5238 100%); }
.slide-hybrid-2 { background: linear-gradient(135deg, #1e8055 0%, #145e3d 100%); }
.slide-hybrid-3 { background: linear-gradient(135deg, #0d5238 0%, #0a3e2c 100%); }
.slide-hybrid-4 { background: linear-gradient(135deg, #c8e8d8 0%, #a8d4bc 100%); }
.slide-hybrid-5 { background: linear-gradient(135deg, #2e9e6e 0%, #1a7850 100%); }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
}

.gallery-nav:hover { background: rgba(255,255,255,0.35); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.gallery-thumbs {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.gallery-thumb {
  flex: 1;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #222;
  transition: opacity 0.15s, border-color 0.15s;
}

.gallery-thumb:hover { opacity: 0.75; }
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--lopp-gold);
}

/* --- DETAILS PANEL --- */
.modal-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--border);
}

.modal-details-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 24px 22px 16px;
  scrollbar-width: thin;
}

.modal-details-scroll::-webkit-scrollbar { width: 4px; }
.modal-details-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.modal-head { margin-bottom: 14px; }

.modal-badge-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lopp-blue-deep);
  margin-bottom: 4px;
  line-height: 1.2;
}

.modal-spec-line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Price highlight in modal */
.modal-price-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.mph-left, .mph-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mph-right { text-align: right; }

.mph-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mph-crossed {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.mph-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lopp-blue);
}

.mph-inkl-uef {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

.mph-saving {
  grid-column: 1 / -1;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-cta);
  text-align: center;
  background: rgba(46,158,46,0.08);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Equipment list */
.equip-section { margin-bottom: 18px; }

.equip-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lopp-blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--lopp-gold);
  display: inline-block;
}

.equip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.equip-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 1px;
}

.equip-list li div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.equip-list li strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.equip-list li span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Modal calculator */
.modal-calc-wrap { margin-bottom: 8px; }

.modal-calc .calc-body {
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

/* Modal CTA bar */
.modal-cta-bar {
  padding: 14px 22px 16px;
  border-top: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}

.btn-modal-cta {
  display: block;
  background: var(--lopp-gold);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(245,168,0,0.35);
}

.btn-modal-cta:hover { background: var(--lopp-gold-dark); }

.modal-cta-fine {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 7px;
}

/* Scroll-Offset für Sticky-Header beim Anker-Sprung */
#formular {
  scroll-margin-top: 80px;
}

/* No scroll on body when modal open */
body.modal-open { overflow: hidden; }

/* ============================================
   MODAL RESPONSIVE
   ============================================ */
@media (max-width: 720px) {
  /* Gesamter Modal-Inhalt scrollt als eine Einheit */
  .modal-container {
    max-height: 96vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Flex-Spalte statt Grid – kein Doppel-Scroll */
  .modal-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  /* Galerie: feste Höhe, nicht dehnbar */
  .modal-gallery {
    flex-shrink: 0;
    height: 280px;
  }

  .gallery-stage {
    flex: none;
    height: 220px;
    min-height: 0;
  }

  /* Details: natürlicher Fluss, kein Overflow-Problem */
  .modal-details {
    overflow: visible;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .modal-details-scroll {
    overflow: visible;
    padding: 18px 16px 12px;
  }

  /* Badge in der Detailansicht auf Mobile ausblenden */
  .modal-badge-tag { display: none; }

  .modal-title { font-size: 1.15rem; }
  .mph-value { font-size: 1.2rem; }
}
