/* ============================================================
   MACHER UND MASCHINE (MuM2) — ULTRA-PREMIUM STYLESHEET
   1:1 Exact Floating Support Widget from mietgeraete-api.php,
   Navbar 1:1 Ventror Holding Hover (Soft Glass Hover, No Underlines),
   Official PNG Logo, Vibrant Macher Orange (#FF5500 / #FF7722),
   Epic Conic Border Beams & Ambient Mouse Glow
   ============================================================ */

:root {
  --color-bg:          #05080e;
  --color-bg-2:        #0a0f18;
  --color-bg-3:        #0f172a;
  --color-surface:     rgba(255, 255, 255, 0.035);
  --color-surface-2:   rgba(255, 255, 255, 0.07);
  --color-border:      rgba(255, 255, 255, 0.09);
  --color-border-glow: rgba(243, 78, 58, 0.5);

  --brand-orange:       #F34E3A;
  --brand-orange-light: #FF6E5C;
  --brand-orange-dark:  #D23824;
  --brand-gold:         #FFB703;
  --mg-theme-color:     #F34E3A;

  --grad-orange:      linear-gradient(135deg, #F34E3A 0%, #FF6E5C 50%, #D23824 100%);
  --grad-shimmer:     linear-gradient(90deg, #F34E3A 0%, #FFB703 25%, #FF6E5C 50%, #F34E3A 75%, #FFB703 100%);
  --grad-ambient:     radial-gradient(circle at 50% -20%, rgba(243,78,58,0.18) 0%, transparent 70%);
  --grad-card:        linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);

  --font-display: 'Barlow Condensed', 'Teko', 'Outfit', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py:  clamp(80px, 9vw, 140px);
  --container:   1280px;
  --gutter:      clamp(20px, 5vw, 60px);

  --blur-glass:  blur(24px) saturate(2);
  --shadow-orange: 0 0 60px rgba(243, 78, 58, 0.35);
  --shadow-card:   0 25px 60px rgba(0, 0, 0, 0.7);
  --radius-card:   24px;
  --radius-sm:     10px;
  --radius-pill:   100px;

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: #e2e8f0;
  line-height: 1.7;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

/* Mouse Glow Halo */
#mouseGlow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  margin-top: -300px;
  margin-left: -300px;
  background: radial-gradient(circle, rgba(243, 78, 58, 0.12) 0%, rgba(243, 78, 58, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.15s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05080e; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-orange); }

/* ──────────────────────────────────────────────
   1. TYPOGRAPHY & BUTTONS
────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #94a3b8;
  max-width: 680px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.gradient-text {
  background: var(--grad-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerWave 4s linear infinite;
}

@keyframes shimmerWave {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(243, 78, 58, 0.12);
  border: 1px solid rgba(243, 78, 58, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(243, 78, 58, 0.2);
}

.badge-pill .pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--brand-orange);
  animation: pulseNeon 1.5s infinite;
}

@keyframes pulseNeon {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(243, 78, 58, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 12px rgba(243, 78, 58, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(243, 78, 58, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-orange);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(243, 78, 58, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(243, 78, 58, 0.65);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: var(--blur-glass);
}

.btn-secondary:hover {
  background: rgba(243, 78, 58, 0.15);
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  color: var(--brand-orange);
}

/* ──────────────────────────────────────────────
   2. NAVBAR — VENTROR HOLDING STYLE
────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 2;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(5, 8, 14, 0.92);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 0 12px rgba(243, 78, 58, 0.35));
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(243, 78, 58, 0.55));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #94a3b8;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-link::after {
  display: none !important;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 600;
  text-decoration: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ──────────────────────────────────────────────
   3. HERO SECTION & INTERACTIVE COMMAND HUB
────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--grad-ambient);
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.miete-mich-tag {
  display: inline-block;
  background-color: #F34E3A;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 12px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(243, 78, 58, 0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 14px 0 20px;
  letter-spacing: -0.01em;
}

.typewriter-word {
  color: var(--brand-orange);
  text-shadow: 0 0 30px rgba(243, 78, 58, 0.6);
  border-right: 4px solid var(--brand-orange);
  animation: blinkCursor 0.75s step-end infinite;
  padding-right: 4px;
}

@keyframes blinkCursor {
  from, to { border-color: transparent; }
  50% { border-color: var(--brand-orange); }
}

.hero-desc {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 45px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
}

.stat-number span {
  color: var(--brand-orange);
}

.stat-label {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

/* ──────────────────────────────────────────────
   RIGHT SIDE: REALTIME 3D BAGGER ENGINE
────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-3d-stage {
  position: relative;
  width: 100%;
  height: 520px;
  background: rgba(10, 15, 24, 0.6);
  border: 1px solid rgba(243, 78, 58, 0.35);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(243, 78, 58, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-3d-stage:hover {
  border-color: rgba(243, 78, 58, 0.7);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 65px rgba(243, 78, 58, 0.35);
}

#bagger3DCanvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#bagger3DCanvas:active {
  cursor: grabbing;
}

/* Floating 3D HUD Badges */
.hud-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(5, 8, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 5;
  transition: transform 0.3s var(--ease-out);
}

.hud-badge:hover {
  transform: translateY(-4px) scale(1.03);
}

.bagger-hud {
  top: 20px;
  left: 20px;
  border-color: rgba(243, 78, 58, 0.6);
}

.ruettel-hud {
  bottom: 50px;
  right: 20px;
  border-color: rgba(0, 242, 254, 0.5);
}

.hud-icon {
  font-size: 1.4rem;
}

.hud-content {
  display: flex;
  flex-direction: column;
}

.hud-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
}

.hud-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.hud-btn {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-orange);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
}

.hud-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 15px rgba(243, 78, 58, 0.6);
}

.hud-btn-cyan {
  background: #00f2fe;
  color: #05080e;
}

.hud-btn-cyan:hover {
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
}

/* 3D Hint Bar */
.hero-3d-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 8, 14, 0.85);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #cbd5e1;
  pointer-events: none;
  z-index: 6;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .hero-3d-stage {
    height: 440px;
  }
}

@media (max-width: 576px) {
  .hero-3d-stage {
    height: 400px;
  }
  .hud-badge {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 8px;
  }
}
  gap: 6px;
}

.duration-pill {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.duration-pill:hover {
  color: #ffffff;
  border-color: rgba(243, 78, 58, 0.5);
}

.duration-pill.active {
  background: rgba(243, 78, 58, 0.2);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.widget-media-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.widget-media-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

.widget-spec-badge {
  display: inline-block;
  background: rgba(5, 8, 14, 0.85);
  border: 1px solid var(--color-border-glow);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.widget-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #e2e8f0;
  font-weight: 600;
}

.widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-price-box {
  display: flex;
  flex-direction: column;
}

.price-caption {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}

.widget-btn {
  padding: 12px 22px !important;
  font-size: 0.95rem !important;
  border-radius: 12px !important;
}

/* ──────────────────────────────────────────────
   DUAL HUB SECTION ("ZWEI WEGE ZUM ERFOLG")
────────────────────────────────────────────── */
.dual-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .dual-hub-grid {
    grid-template-columns: 1fr;
  }
}

.dual-hub-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.dual-hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(243, 78, 58, 0.2);
}

.dual-hub-card.highlight-card {
  background: linear-gradient(145deg, rgba(243, 78, 58, 0.12) 0%, rgba(10, 15, 24, 0.8) 100%);
  border-color: rgba(243, 78, 58, 0.4);
}

.hub-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0 10px;
  line-height: 1.15;
}

.hub-card-desc {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hub-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.hub-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hub-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hub-feature-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.hub-feature-item p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.style-block-btn {
  width: 100%;
  text-align: center;
}

/* ──────────────────────────────────────────────
   4. RENTAL CATALOG GRID & 3D CARDS
────────────────────────────────────────────── */
.catalog-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.cat-chip {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}

.cat-chip:hover, .cat-chip.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(243, 78, 58, 0.45);
  transform: translateY(-2px);
}

.search-filter-wrapper {
  max-width: 540px;
  margin: 28px auto 0;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 16px 24px 16px 54px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.35s;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 25px rgba(243, 78, 58, 0.3);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 44px;
}

.machine-card,
.dual-hub-card,
.service-card,
.process-step-card,
.hero-booking-card {
  cursor: pointer;
}

.machine-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  transform: none !important;
  cursor: pointer;
}

.machine-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--color-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--shadow-orange);
}

.card-img-container {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #090e17;
}

.card-img-container img,
.widget-media-container img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.6s var(--ease-out);
}

.machine-card:hover .card-img-container img,
.hero-booking-card:hover .widget-media-container img,
.service-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.card-offer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(243, 78, 58, 0.5);
}

.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.spec-tag {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 5px 12px;
  border-radius: 8px;
  color: #cbd5e1;
}

.card-footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.open-booking-btn,
.machine-card .btn-primary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
  padding: 8px 18px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.open-booking-btn::before,
.machine-card .btn-primary::before {
  display: none !important;
}

.machine-card:hover .open-booking-btn,
.open-booking-btn:hover {
  background: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(243, 78, 58, 0.45) !important;
  transform: translateY(-2px) !important;
}

.card-price-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-price-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand-orange);
}

.strike-price {
  font-size: 0.88rem;
  color: #64748b;
  text-decoration: line-through;
  margin-right: 6px;
}

/* ──────────────────────────────────────────────
   5. SERVICES SECTION (DIENSTLEISTUNGEN)
────────────────────────────────────────────── */
.services-section {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 36px;
  margin-top: 54px;
}

.service-card {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-orange);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(243, 78, 58, 0.15);
  border: 1px solid rgba(243, 78, 58, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(243, 78, 58, 0.2);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 26px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.service-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   6. TIMELINE & MIETRECHNER
────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.process-step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 34px 24px;
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-glow);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--grad-orange);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 20px rgba(243, 78, 58, 0.4);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: #94a3b8;
}

.calculator-box {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border-glow);
  border-radius: 30px;
  padding: 44px;
  margin-top: 70px;
  box-shadow: var(--shadow-orange);
}

.calc-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
}

.form-control {
  padding: 14px 18px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.98rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 20px rgba(243, 78, 58, 0.3);
}

/* ──────────────────────────────────────────────
   7. MODALS DIALOG
────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border-glow);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ──────────────────────────────────────────────
   8. 1:1 FLOATING PLUGIN SUPPORT WIDGET (mietgeraete-api.php)
────────────────────────────────────────────── */
#mg-widget-container {
  display: block !important;
}

.mg-widget-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 54px;
  border-radius: 27px;
  background-color: var(--mg-theme-color);
  box-shadow: 0 4px 20px rgba(243, 78, 58, 0.45);
  display: flex;
  align-items: center;
  padding: 0 22px;
  gap: 10px;
  cursor: pointer;
  z-index: 1000000;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mg-widget-launcher:hover {
  transform: scale(1.05);
}

#mg-widget-launcher-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}

.mg-badge-counter {
  background: #ff3b30;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 11px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(255, 59, 48, 0.45);
  padding: 0 6px;
  box-sizing: border-box;
}

.mg-widget-panel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 420px;
  max-width: 92vw;
  height: 600px;
  max-height: 85vh;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(243, 78, 58, 0.4);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000000;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.1, 0.76, 0.55, 0.94);
}

.mg-widget-panel.open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
  display: flex !important;
}

.mg-widget-header {
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--mg-theme-color), rgba(15, 23, 42, 0.6));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.mg-widget-close {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mg-widget-close:hover {
  opacity: 1;
}

.mg-widget-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mg-menu-item-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--mg-theme-color);
  border-radius: 10px;
  padding: 14px 18px;
  color: #e2e8f0;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.25s var(--ease-out);
  text-decoration: none !important;
}

.mg-menu-item-btn:hover {
  background: rgba(243, 78, 58, 0.12);
  border-color: rgba(243, 78, 58, 0.4);
  color: #ffffff;
  transform: translateX(3px);
}

.mg-item-icon {
  margin-right: 14px;
  color: var(--mg-theme-color);
  display: flex;
  align-items: center;
}

.mg-widget-footer {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 11px;
  color: #8b949e;
}

/* ──────────────────────────────────────────────
   9. REDESIGNED ULTRA-PREMIUM FOOTER
────────────────────────────────────────────── */
.footer {
  background: #030509;
  border-top: 1px solid var(--color-border);
  padding: 0 0 36px;
  position: relative;
}

.footer-cta-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border-glow);
  border-radius: 28px;
  padding: 40px 50px;
  margin-top: -60px;
  margin-bottom: 70px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  backdrop-filter: var(--blur-glass);
}

.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-cta-text p {
  color: #94a3b8;
  font-size: 1.05rem;
}

.footer-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.6fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 18px 0 24px;
}

.footer-hours-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease-out);
  text-decoration: none !important;
}

.footer-links-list a:hover {
  color: var(--brand-orange);
  transform: translateX(4px);
  text-decoration: none !important;
}

.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.contact-info-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: color 0.2s;
  text-decoration: none !important;
}

.footer-legal-links a:hover {
  color: var(--brand-orange);
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-form-grid { grid-template-columns: 1fr; }
  .footer-cta-card { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #05080e;
    flex-direction: column;
    padding: 90px 30px;
    transition: right 0.4s var(--ease-out);
    border-radius: 0;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
