/*
 * VMX Hundehalterhaftpflicht — Stylesheet
 * Design: Stil 3 Regional Warm
 * Funnel: Direktabschluss mit inobroker-Rechner
 * 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-hund-page {
  font-family: var(--font-body);
  color: var(--text-dunkel);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.vmx-hund-page img { max-width: 100%; height: auto; display: block; }
body.vmx-hund-page a   { color: var(--gruen-dunkel); text-decoration: none; }
body.vmx-hund-page a:hover { color: var(--gruen-mittel); }
body.vmx-hund-page ul  { list-style: none; }

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

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

/* ============================================================
   3. BUTTONS
   ============================================================ */
.vmx-hund-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-hund-btn-primary {
  background: var(--cta-gelb); color: var(--text-dunkel);
  box-shadow: 0 4px 16px rgba(233,196,106,.4);
}
.vmx-hund-btn-primary:hover {
  background: var(--cta-dunkel); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,134,15,.35);
}
.vmx-hund-btn-secondary {
  background: transparent; color: var(--gruen-dunkel);
  border: 2px solid var(--gruen-dunkel);
}
.vmx-hund-btn-secondary:hover { background: var(--gruen-dunkel); color: #fff; }
.vmx-hund-btn-white {
  background: #fff; color: var(--gruen-dunkel); box-shadow: var(--shadow-sm);
}
.vmx-hund-btn-white:hover { background: var(--gruen-bg); transform: translateY(-2px); }

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

.vmx-hund-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-hund-section-intro { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.vmx-hund-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-hund-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--creme);
  border-bottom: 1px solid var(--gruen-hell);
  box-shadow: var(--shadow-sm);
}
.vmx-hund-header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.vmx-hund-logo img { height: 44px; width: auto; max-width: 200px; max-height: 44px; display: block; flex-shrink: 0; }
.vmx-hund-nav-cta  { display: flex; align-items: center; gap: 12px; }
.vmx-hund-nav-phone { font-weight: 700; color: var(--gruen-dunkel); font-size: .95rem; }
.vmx-hund-nav-phone:hover { color: var(--gruen-mittel); }

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

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

/* ============================================================
   7. HERO
   ============================================================ */
.vmx-hund-hero {
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen-mittel) 60%, #52b788 100%);
  color: #fff;
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.vmx-hund-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-hund-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative;
}
.vmx-hund-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-hund-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff; margin-bottom: 16px; font-family: var(--font-display);
}
.vmx-hund-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  margin-bottom: 28px; line-height: 1.6;
}
.vmx-hund-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.vmx-hund-hero-trust   { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-hund-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: rgba(255,255,255,.85);
}

/* Pflicht-Badge Karte */
.vmx-hund-hero-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg); color: var(--text-dunkel);
}
.vmx-hund-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-hund-pflicht-badge {
  background: #fff3cd; border: 2px solid var(--cta-dunkel);
  border-radius: var(--radius); padding: 14px 16px;
  margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.vmx-hund-pflicht-badge .badge-icon { font-size: 1.8rem; flex-shrink: 0; }
.vmx-hund-pflicht-badge .badge-text strong {
  display: block; font-size: .95rem; font-weight: 700; color: var(--cta-dunkel);
}
.vmx-hund-pflicht-badge .badge-text span { font-size: .82rem; color: var(--text-hell); }

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

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

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.vmx-hund-trustbar { background: var(--gruen-dunkel); padding: 18px 0; }
.vmx-hund-trustbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.vmx-hund-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-hund-trustbar-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--beige); }
@media (max-width: 600px) {
  .vmx-hund-trustbar-inner { gap: 16px; }
  .vmx-hund-trustbar-item  { font-size: .8rem; }
  .vmx-hund-trustbar-dot   { display: none; }
}

/* ============================================================
   9. PFLICHT-SEKTION — Brandenburg
   ============================================================ */
.vmx-hund-pflicht-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: start;
}
.vmx-hund-gesetz-box {
  background: var(--gruen-dunkel); color: #fff;
  border-radius: var(--radius-lg); padding: 32px;
}
.vmx-hund-gesetz-box h3 { color: #fff; margin-bottom: 16px; }
.vmx-hund-gesetz-box p  { color: rgba(255,255,255,.85); font-size: .95rem; }
.vmx-hund-gesetz-cite {
  background: rgba(255,255,255,.1);
  border-left: 4px solid var(--cta-gelb);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 16px; margin: 16px 0;
  font-size: .88rem; color: rgba(255,255,255,.9); font-style: italic;
}
.vmx-hund-gesetz-quelle { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 8px; }

.vmx-hund-bußgeld-box {
  background: #fef2f2; border: 2px solid #fca5a5;
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  margin-bottom: 20px;
}
.vmx-hund-bußgeld-box .buss-icon { font-size: 2.5rem; margin-bottom: 8px; }
.vmx-hund-bußgeld-box .buss-label { font-size: .8rem; font-weight: 700; color: #b91c1c; text-transform: uppercase; letter-spacing: .06em; }
.vmx-hund-bußgeld-box .buss-betrag { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #b91c1c; line-height: 1.1; }
.vmx-hund-bußgeld-box .buss-sub { font-size: .85rem; color: var(--text-hell); }

.vmx-hund-why-list { display: flex; flex-direction: column; gap: 14px; }
.vmx-hund-why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.vmx-hund-why-icon { font-size: 1.5rem; flex-shrink: 0; }
.vmx-hund-why-item strong { display: block; font-size: .95rem; color: var(--text-dunkel); margin-bottom: 2px; }
.vmx-hund-why-item span   { font-size: .85rem; color: var(--text-hell); }

@media (max-width: 760px) { .vmx-hund-pflicht-grid { grid-template-columns: 1fr; } }

/* ============================================================
   10. WAS LEISTET DIE HUNDEHAFTPFLICHT
   ============================================================ */
.vmx-hund-leistung-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px;
}
.vmx-hund-leistung-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gruen-hell); transition: var(--transition);
}
.vmx-hund-leistung-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  border-top-color: var(--gruen-dunkel);
}
.vmx-hund-leistung-icon { font-size: 1.8rem; margin-bottom: 12px; }
.vmx-hund-leistung-card h3 { font-size: .97rem; color: var(--gruen-dunkel); margin-bottom: 6px; }
.vmx-hund-leistung-card p  { font-size: .88rem; color: var(--text-mittel); margin: 0; }

/* deckt / deckt nicht */
.vmx-hund-deckt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.vmx-hund-deckt-box { border-radius: var(--radius-lg); padding: 28px; }
.vmx-hund-deckt-ja   { background: var(--gruen-bg); border: 2px solid var(--gruen-hell); }
.vmx-hund-deckt-nein { background: #fef2f2; border: 2px solid #fca5a5; }
.vmx-hund-deckt-box h3 { font-size: 1rem; margin-bottom: 14px; }
.vmx-hund-deckt-ja h3   { color: var(--gruen-dunkel); }
.vmx-hund-deckt-nein h3 { color: #b91c1c; }
.vmx-hund-deckt-list { display: flex; flex-direction: column; gap: 8px; }
.vmx-hund-deckt-item {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .88rem; color: var(--text-mittel); line-height: 1.4;
}
.vmx-hund-deckt-item .di { font-weight: 700; flex-shrink: 0; }
.vmx-hund-deckt-ja .di   { color: var(--gruen-dunkel); }
.vmx-hund-deckt-nein .di { color: #b91c1c; }

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

/* ============================================================
   11. MICRO-FUNNEL
   ============================================================ */
.vmx-hund-funnel-wrap {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  max-width: 700px; margin: 0 auto;
}
.vmx-hund-funnel-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.vmx-hund-funnel-dot {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--gruen-hell); transition: background .3s;
}
.vmx-hund-funnel-dot.active { background: var(--gruen-dunkel); }
.vmx-hund-funnel-step   { display: none; }
.vmx-hund-funnel-step.active { display: block; }
.vmx-hund-funnel-question {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--text-dunkel); margin-bottom: 20px; font-weight: 600;
}
.vmx-hund-funnel-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vmx-hund-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-hund-funnel-opt:hover,
.vmx-hund-funnel-opt.selected {
  border-color: var(--gruen-dunkel); background: var(--gruen-hell);
  color: var(--gruen-dunkel); font-weight: 600;
}
.vmx-hund-funnel-opt .opt-icon { font-size: 1.3rem; flex-shrink: 0; }
@media (max-width: 480px) { .vmx-hund-funnel-options { grid-template-columns: 1fr; } }

/* Rechner-CTA nach Funnel */
.vmx-hund-rechner-cta {
  background: var(--gruen-bg); border: 2px solid var(--gruen-hell);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; margin-top: 8px;
}
.vmx-hund-rechner-cta h3 { color: var(--gruen-dunkel); margin-bottom: 8px; font-size: 1.1rem; }
.vmx-hund-rechner-cta p  { font-size: .92rem; color: var(--text-hell); margin-bottom: 18px; }

/* ============================================================
   12. INOBROKER RECHNER
   ============================================================ */
.vmx-hund-rechner-section {
  background: var(--gruen-dunkel); padding: 72px 0;
}
.vmx-hund-rechner-head { text-align: center; margin-bottom: 36px; }
.vmx-hund-rechner-head h2 { color: #fff; margin-bottom: 10px; }
.vmx-hund-rechner-head p  { color: rgba(255,255,255,.85); font-size: 1.05rem; }

.vmx-hund-rechner-frame-wrap {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; min-height: 600px;
}
.vmx-hund-rechner-frame-wrap iframe {
  width: 100%; border: none; display: block;
  min-height: 700px;
}
.vmx-hund-rechner-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #fff; gap: 16px;
  font-size: 1rem; color: var(--text-hell);
  pointer-events: none;
}
.vmx-hund-rechner-loading .spin {
  width: 40px; height: 40px;
  border: 4px solid var(--gruen-hell);
  border-top-color: var(--gruen-dunkel);
  border-radius: 50%;
  animation: vmxSpin 0.8s linear infinite;
}
@keyframes vmxSpin { to { transform: rotate(360deg); } }

.vmx-hund-rechner-trust {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-top: 24px;
}
.vmx-hund-rechner-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.8);
}

/* ============================================================
   13. ALTERNATIV: BERATUNG
   ============================================================ */
.vmx-hund-beratung-box {
  background: var(--beige-hell); border: 2px solid var(--beige);
  border-radius: var(--radius-lg); padding: 32px 36px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.vmx-hund-beratung-icon { font-size: 2.5rem; flex-shrink: 0; }
.vmx-hund-beratung-text h3 { color: var(--gruen-dunkel); margin-bottom: 6px; font-size: 1.05rem; }
.vmx-hund-beratung-text p  { font-size: .9rem; margin-bottom: 12px; }
.vmx-hund-beratung-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   14. FAQ
   ============================================================ */
.vmx-hund-faq-list { max-width: 800px; margin: 0 auto; }
.vmx-hund-faq-item { border-bottom: 1px solid var(--gruen-hell); }
.vmx-hund-faq-item:last-child { border-bottom: none; }
.vmx-hund-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-hund-faq-question:hover { color: var(--gruen-dunkel); }
.vmx-hund-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-hund-faq-item.open .vmx-hund-faq-icon {
  background: var(--gruen-dunkel); color: #fff; transform: rotate(45deg);
}
.vmx-hund-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.vmx-hund-faq-item.open .vmx-hund-faq-answer { max-height: 500px; padding-bottom: 20px; }
.vmx-hund-faq-answer p { color: var(--text-mittel); font-size: .97rem; line-height: 1.7; margin: 0; }

/* ============================================================
   15. MAKLER & FINAL CTA
   ============================================================ */
.vmx-hund-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-hund-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-hund-makler-info h3  { color: var(--gruen-dunkel); margin-bottom: 6px; }
.vmx-hund-makler-info p   { font-size: .95rem; margin-bottom: 12px; }
.vmx-hund-makler-badges   { display: flex; gap: 8px; flex-wrap: wrap; }
.vmx-hund-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-hund-makler-inner  { grid-template-columns: 1fr; text-align: center; }
  .vmx-hund-makler-avatar { margin: 0 auto; }
  .vmx-hund-makler-badges { justify-content: center; }
}

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

/* ============================================================
   16. FOOTER
   ============================================================ */
.vmx-hund-footer { background: var(--text-dunkel); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.vmx-hund-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.vmx-hund-footer-brand .brand-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.vmx-hund-footer-brand p { font-size: .88rem; line-height: 1.6; }
.vmx-hund-footer h4 {
  color: #fff; font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.vmx-hund-footer ul  { display: flex; flex-direction: column; gap: 8px; }
.vmx-hund-footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.vmx-hund-footer ul li a:hover { color: var(--cta-gelb); }
.vmx-hund-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-hund-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-hund-footer-legal a { color: rgba(255,255,255,.5) !important; }
.vmx-hund-footer-legal a:hover { color: var(--cta-gelb) !important; }

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

/* ============================================================
   17. FLOATING ELEMENTS
   ============================================================ */
.vmx-hund-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: vmxHundPulse 2.5s infinite; transition: transform .2s;
}
.vmx-hund-whatsapp:hover { transform: scale(1.1); }
.vmx-hund-whatsapp svg  { width: 28px; height: 28px; fill: #fff; }

@keyframes vmxHundPulse {
  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-hund-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-hund-sticky-mobile { display: flex; }
  .vmx-hund-sticky-mobile a { flex: 1; justify-content: center; text-align: center; font-size: .9rem; padding: 12px 10px; }
  .vmx-hund-whatsapp { bottom: 80px; }
}
