/*
 * VMX Kfz-Versicherung — Stylesheet
 * Design: Stil 3 Regional Warm
 * Version: 1.0 — Session 5
 */

/* ============================================================
   0. CSS CUSTOM PROPERTIES (Design-System Stil 3)
   ============================================================ */
:root {
  --gruen-dunkel:  #2d6a4f;
  --gruen-mittel:  #40916c;
  --gruen-hell:    #d8f3dc;
  --gruen-bg:      #f0faf3;
  --beige:         #d4a574;
  --beige-hell:    #fefae0;
  --creme:         #fffdf7;
  --cta-gelb:      #e9c46a;
  --cta-dunkel:    #b5860f;
  --text-dunkel:   #1a2e1a;
  --text-mittel:   #3d5a3d;
  --text-hell:     #5a7a5a;
  --font-display:  'Lora', Georgia, serif;
  --font-body:     'Source Sans 3', system-ui, sans-serif;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(45,106,79,.10);
  --shadow-md:     0 4px 20px rgba(45,106,79,.15);
  --shadow-lg:     0 8px 40px rgba(45,106,79,.18);
  --transition:    0.3s ease;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.vmx-kfz-page {
  font-family: var(--font-body);
  color: var(--text-dunkel);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.vmx-kfz-page img { max-width: 100%; height: auto; display: block; }
body.vmx-kfz-page a { color: var(--gruen-dunkel); text-decoration: none; }
body.vmx-kfz-page a:hover { color: var(--gruen-mittel); }
body.vmx-kfz-page ul { list-style: none; }

.vmx-kfz-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
body.vmx-kfz-page h1,
body.vmx-kfz-page h2,
body.vmx-kfz-page h3 {
  font-family: var(--font-display);
  color: var(--text-dunkel);
  line-height: 1.25;
}
body.vmx-kfz-page h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; }
body.vmx-kfz-page h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
body.vmx-kfz-page h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
body.vmx-kfz-page p  { font-size: 1.05rem; color: var(--text-mittel); margin-bottom: 1rem; }
body.vmx-kfz-page p:last-child { margin-bottom: 0; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.vmx-kfz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.vmx-kfz-btn-primary {
  background: var(--cta-gelb);
  color: var(--text-dunkel);
  box-shadow: 0 4px 16px rgba(233,196,106,.4);
}
.vmx-kfz-btn-primary:hover {
  background: var(--cta-dunkel);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181,134,15,.35);
}
.vmx-kfz-btn-secondary {
  background: transparent;
  color: var(--gruen-dunkel);
  border: 2px solid var(--gruen-dunkel);
}
.vmx-kfz-btn-secondary:hover { background: var(--gruen-dunkel); color: #fff; }
.vmx-kfz-btn-white {
  background: #fff;
  color: var(--gruen-dunkel);
  box-shadow: var(--shadow-sm);
}
.vmx-kfz-btn-white:hover { background: var(--gruen-bg); transform: translateY(-2px); }

/* ============================================================
   4. SECTION HELPERS
   ============================================================ */
.vmx-kfz-section    { padding: 72px 0; }
.vmx-kfz-section-sm { padding: 48px 0; }
.vmx-kfz-section-alt   { background: var(--gruen-bg); }
.vmx-kfz-section-beige { background: var(--beige-hell); }
.vmx-kfz-section-dark  { background: var(--gruen-dunkel); }

.vmx-kfz-label {
  display: inline-block;
  background: var(--gruen-hell);
  color: var(--gruen-dunkel);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.vmx-kfz-section-intro {
  max-width: 660px;
  margin: 0 auto 48px;
  text-align: center;
}
.vmx-kfz-section-intro p { font-size: 1.1rem; }

.vmx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.vmx-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   5. HEADER
   ============================================================ */
.vmx-kfz-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--creme);
  border-bottom: 1px solid var(--gruen-hell);
  box-shadow: var(--shadow-sm);
}
.vmx-kfz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.vmx-kfz-logo img { height: 44px; width: auto; max-width: 200px; max-height: 44px; display: block; flex-shrink: 0; }
.vmx-kfz-nav-cta  { display: flex; align-items: center; gap: 12px; }
.vmx-kfz-nav-phone { font-weight: 700; color: var(--gruen-dunkel); font-size: .95rem; }
.vmx-kfz-nav-phone:hover { color: var(--gruen-mittel); }

@media (max-width: 600px) {
  .vmx-kfz-nav-phone { display: none; }
  .vmx-kfz-btn { padding: 10px 18px; font-size: .9rem; }
}

/* ============================================================
   6. BREADCRUMB
   ============================================================ */
.vmx-kfz-breadcrumb {
  background: var(--gruen-bg);
  padding: 10px 0;
  font-size: .85rem;
  color: var(--text-hell);
}
.vmx-kfz-breadcrumb a { color: var(--text-hell); }
.vmx-kfz-breadcrumb a:hover { color: var(--gruen-dunkel); }
.vmx-kfz-breadcrumb span { margin: 0 6px; }

/* ============================================================
   7. HERO
   ============================================================ */
.vmx-kfz-hero {
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen-mittel) 60%, #52b788 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.vmx-kfz-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.vmx-kfz-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.vmx-kfz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.vmx-kfz-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.vmx-kfz-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  line-height: 1.6;
}
.vmx-kfz-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.vmx-kfz-hero-trust   { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-kfz-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: rgba(255,255,255,.85);
}

/* Hero-Karte: Deadline-Hinweis */
.vmx-kfz-hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dunkel);
}
.vmx-kfz-hero-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gruen-hell);
}
.vmx-kfz-deadline-box {
  background: #fff3cd;
  border: 2px solid var(--cta-dunkel);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
  text-align: center;
}
.vmx-kfz-deadline-box .deadline-label { font-size: .8rem; font-weight: 700; color: var(--cta-dunkel); text-transform: uppercase; letter-spacing: .06em; }
.vmx-kfz-deadline-box .deadline-date  { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-dunkel); line-height: 1.1; }
.vmx-kfz-deadline-box .deadline-sub   { font-size: .82rem; color: var(--text-hell); }

.vmx-kfz-check-list { display: flex; flex-direction: column; gap: 10px; }
.vmx-kfz-check-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-mittel);
}
.vmx-kfz-check-item::before {
  content: '✓';
  color: var(--gruen-dunkel);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .vmx-kfz-hero-inner { grid-template-columns: 1fr; }
  .vmx-kfz-hero-card  { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.vmx-kfz-trustbar { background: var(--gruen-dunkel); padding: 18px 0; }
.vmx-kfz-trustbar-inner {
  display: flex; align-items: center;
  justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.vmx-kfz-trustbar-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.9); white-space: nowrap;
}
.vmx-kfz-trustbar-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--beige); }

@media (max-width: 600px) {
  .vmx-kfz-trustbar-inner { gap: 16px; }
  .vmx-kfz-trustbar-item  { font-size: .8rem; }
  .vmx-kfz-trustbar-dot   { display: none; }
}

/* ============================================================
   9. WARUM MAKLER — VERGLEICH-GRID
   ============================================================ */
.vmx-kfz-vergleich-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.vmx-kfz-vergleich-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.vmx-kfz-vergleich-card.highlight {
  border: 2px solid var(--gruen-dunkel);
  box-shadow: var(--shadow-md);
  position: relative;
}
.vmx-kfz-vergleich-card.highlight::before {
  content: '✓ Empfohlen';
  position: absolute;
  top: -13px; left: 24px;
  background: var(--gruen-dunkel);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}
.vmx-kfz-vergleich-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.vmx-kfz-vergleich-card.highlight h3 { color: var(--gruen-dunkel); }

.vmx-kfz-pro-con { display: flex; flex-direction: column; gap: 10px; }
.vmx-kfz-pro-item, .vmx-kfz-con-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .9rem; color: var(--text-mittel); line-height: 1.4;
}
.vmx-kfz-pro-icon { color: var(--gruen-dunkel); font-weight: 700; flex-shrink: 0; }
.vmx-kfz-con-icon { color: #c0392b; font-weight: 700; flex-shrink: 0; }

@media (max-width: 680px) {
  .vmx-kfz-vergleich-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   10. LEISTUNGS-CARDS
   ============================================================ */
.vmx-kfz-leistung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.vmx-kfz-leistung-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gruen-hell);
  transition: var(--transition);
}
.vmx-kfz-leistung-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-top-color: var(--gruen-dunkel);
}
.vmx-kfz-leistung-icon { font-size: 2rem; margin-bottom: 14px; }
.vmx-kfz-leistung-card h3 { font-size: 1rem; color: var(--gruen-dunkel); margin-bottom: 8px; }
.vmx-kfz-leistung-card p  { font-size: .9rem; color: var(--text-mittel); margin: 0; }

/* ============================================================
   11. TARIFARTEN
   ============================================================ */
.vmx-kfz-tarif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vmx-kfz-tarif-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 3px solid var(--gruen-hell);
  transition: var(--transition);
}
.vmx-kfz-tarif-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vmx-kfz-tarif-card.empfohlen { border-bottom-color: var(--gruen-dunkel); }
.vmx-kfz-tarif-icon { font-size: 2.2rem; margin-bottom: 12px; }
.vmx-kfz-tarif-card h3 { font-size: 1.05rem; color: var(--text-dunkel); margin-bottom: 10px; }
.vmx-kfz-tarif-tag {
  display: inline-block;
  background: var(--gruen-bg);
  color: var(--gruen-dunkel);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.vmx-kfz-tarif-tag.gelb { background: #fff3cd; color: var(--cta-dunkel); }
.vmx-kfz-tarif-card p { font-size: .88rem; color: var(--text-mittel); margin: 0; }

@media (max-width: 680px) {
  .vmx-kfz-tarif-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   12. MICRO-FUNNEL
   ============================================================ */
.vmx-kfz-funnel-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}
.vmx-kfz-funnel-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.vmx-kfz-funnel-dot {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--gruen-hell); transition: background .3s;
}
.vmx-kfz-funnel-dot.active { background: var(--gruen-dunkel); }
.vmx-kfz-funnel-step { display: none; }
.vmx-kfz-funnel-step.active { display: block; }
.vmx-kfz-funnel-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dunkel);
  margin-bottom: 20px;
  font-weight: 600;
}
.vmx-kfz-funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vmx-kfz-funnel-opt {
  padding: 14px 16px;
  border: 2px solid var(--gruen-hell);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .95rem;
  color: var(--text-mittel);
  background: var(--gruen-bg);
  transition: var(--transition);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}
.vmx-kfz-funnel-opt:hover,
.vmx-kfz-funnel-opt.selected {
  border-color: var(--gruen-dunkel);
  background: var(--gruen-hell);
  color: var(--gruen-dunkel);
  font-weight: 600;
}
.vmx-kfz-funnel-opt .opt-icon { font-size: 1.2rem; flex-shrink: 0; }
@media (max-width: 480px) { .vmx-kfz-funnel-options { grid-template-columns: 1fr; } }

/* ============================================================
   13. KONTAKTFORMULAR
   ============================================================ */
.vmx-kfz-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}
.vmx-kfz-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vmx-kfz-form-full { grid-column: 1 / -1; }

.vmx-kfz-field { display: flex; flex-direction: column; gap: 6px; }
.vmx-kfz-field label { font-size: .9rem; font-weight: 600; color: var(--text-dunkel); }
.vmx-kfz-field label .req { color: var(--gruen-dunkel); }
.vmx-kfz-field input,
.vmx-kfz-field select,
.vmx-kfz-field textarea {
  padding: 11px 14px;
  border: 2px solid var(--gruen-hell);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dunkel);
  background: var(--gruen-bg);
  transition: border-color .2s;
  width: 100%;
}
.vmx-kfz-field input:focus,
.vmx-kfz-field select:focus,
.vmx-kfz-field textarea:focus {
  outline: none;
  border-color: var(--gruen-dunkel);
  background: #fff;
}
.vmx-kfz-field textarea { resize: vertical; min-height: 80px; }

.vmx-kfz-dsgvo {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: var(--gruen-bg);
  border-radius: var(--radius);
  font-size: .85rem; color: var(--text-mittel);
  margin-top: 4px;
}
.vmx-kfz-dsgvo input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px;
  accent-color: var(--gruen-dunkel);
}
.vmx-kfz-dsgvo a { color: var(--gruen-dunkel); font-weight: 600; }

.vmx-kfz-form-submit-row { text-align: center; margin-top: 8px; }
.vmx-kfz-form-risk {
  margin-top: 12px; font-size: .82rem; color: var(--text-hell);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.vmx-kfz-form-success {
  display: none;
  background: var(--gruen-hell);
  border: 2px solid var(--gruen-dunkel);
  border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
}
.vmx-kfz-form-success h3 { color: var(--gruen-dunkel); margin-bottom: 8px; }
.vmx-kfz-form-success p  { color: var(--text-mittel); font-size: .95rem; margin: 0; }

@media (max-width: 560px) {
  .vmx-kfz-form-wrap  { padding: 24px 20px; }
  .vmx-kfz-form-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   14. CALENDLY-KARTE
   ============================================================ */
.vmx-kfz-calendly-card {
  background: var(--gruen-dunkel);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vmx-kfz-calendly-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.vmx-kfz-calendly-card h2 { color: #fff; margin-bottom: 12px; }
.vmx-kfz-calendly-card p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }
.vmx-kfz-calendly-items {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.vmx-kfz-calendly-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 50px; padding: 8px 16px;
  font-size: .9rem; color: rgba(255,255,255,.9);
}

/* ============================================================
   15. FAQ
   ============================================================ */
.vmx-kfz-faq-list { max-width: 800px; margin: 0 auto; }
.vmx-kfz-faq-item { border-bottom: 1px solid var(--gruen-hell); }
.vmx-kfz-faq-item:last-child { border-bottom: none; }
.vmx-kfz-faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--text-dunkel); transition: color .2s;
}
.vmx-kfz-faq-question:hover { color: var(--gruen-dunkel); }
.vmx-kfz-faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gruen-hell);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .85rem; font-weight: 700;
  color: var(--gruen-dunkel); transition: var(--transition);
}
.vmx-kfz-faq-item.open .vmx-kfz-faq-icon {
  background: var(--gruen-dunkel); color: #fff; transform: rotate(45deg);
}
.vmx-kfz-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.vmx-kfz-faq-item.open .vmx-kfz-faq-answer { max-height: 500px; padding-bottom: 20px; }
.vmx-kfz-faq-answer p { color: var(--text-mittel); font-size: .97rem; line-height: 1.7; margin: 0; }

/* ============================================================
   16. MAKLER-KURZBLOCK
   ============================================================ */
.vmx-kfz-makler-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 36px;
  align-items: center;
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.vmx-kfz-makler-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--gruen-dunkel); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}
.vmx-kfz-makler-info h3  { color: var(--gruen-dunkel); margin-bottom: 6px; }
.vmx-kfz-makler-info p   { font-size: .95rem; margin-bottom: 12px; }
.vmx-kfz-makler-badges   { display: flex; gap: 8px; flex-wrap: wrap; }
.vmx-kfz-makler-badge {
  background: var(--gruen-bg); border: 1px solid var(--gruen-hell);
  color: var(--gruen-dunkel); font-size: .78rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
@media (max-width: 560px) {
  .vmx-kfz-makler-inner  { grid-template-columns: 1fr; text-align: center; }
  .vmx-kfz-makler-avatar { margin: 0 auto; }
  .vmx-kfz-makler-badges { justify-content: center; }
}

/* ============================================================
   17. FINAL CTA
   ============================================================ */
.vmx-kfz-final-cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen-mittel) 100%);
}
.vmx-kfz-final-cta h2 { color: #fff; margin-bottom: 12px; }
.vmx-kfz-final-cta p  {
  color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.vmx-kfz-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. FOOTER
   ============================================================ */
.vmx-kfz-footer { background: var(--text-dunkel); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.vmx-kfz-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.vmx-kfz-footer-brand .brand-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.vmx-kfz-footer-brand p { font-size: .88rem; line-height: 1.6; }
.vmx-kfz-footer h4 {
  color: #fff; font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.vmx-kfz-footer ul { display: flex; flex-direction: column; gap: 8px; }
.vmx-kfz-footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.vmx-kfz-footer ul li a:hover { color: var(--cta-gelb); }
.vmx-kfz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .82rem;
}
.vmx-kfz-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-kfz-footer-legal a { color: rgba(255,255,255,.5) !important; }
.vmx-kfz-footer-legal a:hover { color: var(--cta-gelb) !important; }

@media (max-width: 760px) { .vmx-kfz-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .vmx-kfz-footer-grid   { grid-template-columns: 1fr; }
  .vmx-kfz-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   19. FLOATING ELEMENTS
   ============================================================ */
.vmx-kfz-whatsapp {
  position: fixed; bottom: 88px; right: 20px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  animation: vmxKfzPulse 2.5s infinite;
  transition: transform .2s;
}
.vmx-kfz-whatsapp:hover { transform: scale(1.1); }
.vmx-kfz-whatsapp svg  { width: 28px; height: 28px; fill: #fff; }

@keyframes vmxKfzPulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
}

.vmx-kfz-sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: #fff;
  border-top: 2px solid var(--gruen-hell);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  gap: 10px;
}
@media (max-width: 680px) {
  .vmx-kfz-sticky-mobile { display: flex; }
  .vmx-kfz-sticky-mobile a { flex: 1; justify-content: center; text-align: center; font-size: .9rem; padding: 12px 10px; }
  .vmx-kfz-whatsapp { bottom: 80px; }
}
