/* ============================================================
   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(ellipse 100% 70% at 50% -15%, rgba(243, 78, 58, 0.28) 0%, rgba(243, 78, 58, 0.08) 40%, transparent 100%);
  --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;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

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

body.nav-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Mobile Nav Overlay Backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}


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-btn-compact {
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(243, 78, 58, 0.12);
  border: 1px solid rgba(243, 78, 58, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: var(--blur-glass);
}

.nav-btn-compact::before {
  display: none;
}

.nav-btn-compact:hover {
  background: rgba(243, 78, 58, 0.22);
  border-color: rgba(243, 78, 58, 0.65);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 78, 58, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.3s var(--ease-out);
  z-index: 1002;
  position: relative;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(243, 78, 58, 0.4);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.25s ease, background-color 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--brand-orange);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--brand-orange);
}


/* ──────────────────────────────────────────────
   3. HERO SECTION & INTERACTIVE COMMAND HUB
────────────────────────────────────────────── */
.hero-section {
  min-height: calc(100vh - 80px);
  padding-top: 130px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #070b13;
  background-image: 
    radial-gradient(ellipse 85% 60% at 50% -10%, rgba(243, 78, 58, 0.25) 0%, transparent 75%),
    radial-gradient(circle 900px at 88% 18%, rgba(255, 119, 34, 0.15) 0%, transparent 65%),
    radial-gradient(circle 700px at 12% 82%, rgba(243, 78, 58, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #090e18 0%, #05080e 100%);
  overflow: hidden;
}

/* ── Abstract Background Elements Container ── */
.hero-bg-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Subtle Technical Blueprint Mesh Grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 20%, transparent 85%);
  opacity: 0.75;
}

/* Micro Dot Matrix Accent */
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(243, 78, 58, 0.3) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 30%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 15%, transparent 75%);
  opacity: 0.55;
}

/* Glowing Ambient Orbs with Floating Motion */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.orb-primary {
  top: -12%;
  left: 28%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(243, 78, 58, 0.38) 0%, transparent 70%);
  animation: heroPulse 12s ease-in-out infinite alternate;
}

.orb-secondary {
  top: 30%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 120, 34, 0.3) 0%, transparent 70%);
  animation: heroFloat 15s ease-in-out infinite alternate;
}

.orb-accent {
  bottom: -15%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(243, 78, 58, 0.25) 0%, transparent 70%);
  animation: heroFloat 13s ease-in-out infinite alternate-reverse;
}

/* Abstract SVG Vectors */
.hero-bg-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.85;
}

.floating-line-1 {
  animation: strokeDash 25s linear infinite;
}

.floating-line-2 {
  animation: strokeFloat 9s ease-in-out infinite alternate;
}

.hero-poly-1 {
  animation: polyFloat 14s ease-in-out infinite alternate;
}

.hero-poly-2 {
  animation: polyFloat 18s ease-in-out infinite alternate-reverse;
}

.hero-ring-1 {
  transform-origin: 85% 25%;
  animation: spinSlow 45s linear infinite;
}

.hero-ring-2 {
  transform-origin: 15% 75%;
  animation: spinSlow 35s linear infinite reverse;
}

/* Glassmorphic Accent Shapes */
.hero-accent-shape {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.shape-1 {
  top: 16%;
  left: 3%;
  width: 75px;
  height: 75px;
  transform: rotate(15deg);
  animation: shapeFloat1 10s ease-in-out infinite alternate;
}

.shape-2 {
  bottom: 12%;
  right: 5%;
  width: 100px;
  height: 100px;
  transform: rotate(-12deg);
  animation: shapeFloat2 12s ease-in-out infinite alternate;
}

.shape-3 {
  top: 62%;
  left: 46%;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
  border-color: rgba(243, 78, 58, 0.18);
  background: linear-gradient(135deg, rgba(243, 78, 58, 0.08), transparent);
  animation: shapeFloat1 14s ease-in-out infinite alternate-reverse;
}

/* Keyframe Animations */
@keyframes heroPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.45; }
  100% { transform: scale(1.15) translate(25px, 20px); opacity: 0.65; }
}

@keyframes heroFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-35px) rotate(4deg); }
}

@keyframes strokeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes polyFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes shapeFloat1 {
  0% { transform: translateY(0) rotate(15deg); }
  100% { transform: translateY(-20px) rotate(25deg); }
}

@keyframes shapeFloat2 {
  0% { transform: translateY(0) rotate(-12deg); }
  100% { transform: translateY(25px) rotate(-20deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(243, 78, 58, 0.2) 0%, rgba(243, 78, 58, 0.05) 50%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  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.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 14px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(243, 78, 58, 0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin: 12px 0 18px;
  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(1.05rem, 1.4vw, 1.18rem);
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}


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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 26px;
  margin-top: 10px;
  background: rgba(12, 18, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 100%;
}

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

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

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

.stat-label {
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────
   RIGHT SIDE: CLEAN YOUTUBE VIDEO STAGE
────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05080e;
  border: 1px solid rgba(243, 78, 58, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(243, 78, 58, 0.25);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-stage:hover {
  border-color: rgba(243, 78, 58, 0.7);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 60px rgba(243, 78, 58, 0.4);
}

.hero-html5-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  outline: none;
  background: #000;
}

.video-hud-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(5, 8, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(243, 78, 58, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background-color 0.3s;
  padding-left: 4px;
}

.video-play-btn:hover {
  transform: scale(1.15);
  background: #ff6b56;
  box-shadow: 0 0 60px rgba(243, 78, 58, 0.95), 0 15px 40px rgba(0, 0, 0, 0.7);
}

.video-hud-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(5, 8, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* 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(min(100%, 290px), 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(min(100%, 290px), 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-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.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,
.mg-widget-launcher {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
  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 Styles — Modern Industry Standards */
@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; gap: 36px; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.2rem) !important;
    line-height: 1.12 !important;
    margin: 12px 0 18px;
  }
  .hero-desc {
    font-size: 1.1rem !important;
    line-height: 1.65 !important;
  }
  .miete-mich-tag {
    font-size: 0.92rem;
    padding: 6px 16px;
  }
  .section-title {
    font-size: clamp(2.1rem, 7vw, 2.7rem) !important;
    line-height: 1.15 !important;
  }
  .section-subtitle {
    font-size: 1.05rem !important;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-left: 1px solid rgba(243, 78, 58, 0.3);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8), inset 1px 0 0 rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 24px 40px;
    gap: 10px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border-radius: 0;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s var(--ease-out);
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(243, 78, 58, 0.2), rgba(255, 119, 34, 0.15));
    border-color: rgba(243, 78, 58, 0.4) !important;
    transform: translateX(4px);
  }
  .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;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 2.7rem) !important;
    line-height: 1.12 !important;
  }
  .hero-desc {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }
  .navbar {
    padding: 14px 0;
  }
  .brand-logo-img {
    height: 40px;
  }
  .nav-btn-compact {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .dual-hub-card,
  .service-card,
  .calculator-box,
  .modal-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }
  .footer-cta-card {
    padding: 28px 20px !important;
    margin-top: -30px;
    margin-bottom: 40px;
    border-radius: 20px !important;
  }
  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .cookie-trigger-btn {
    bottom: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    opacity: 0.85;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.1rem !important;
  }
  .nav-btn-compact span {
    display: none;
  }
  .nav-btn-compact {
    padding: 8px 10px;
  }
  .brand-logo-img {
    height: 34px;
  }
}



/* ──────────────────────────────────────────────
   COOKIE BANNER & PREFERENCES MODAL (DSGVO / GDPR)
────────────────────────────────────────────── */

/* Floating Cookie Trigger Button */
.cookie-trigger-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 19, 32, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(243, 78, 58, 0.2);
  transition: all 0.3s var(--ease-out);
}
.cookie-trigger-btn:hover {
  transform: scale(1.08) translateY(-2px);
  border-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(243, 78, 58, 0.4);
}
.cookie-trigger-btn svg {
  width: 20px;
  height: 20px;
}

/* Cookie Banner Card */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9995;
  width: calc(100% - 48px);
  max-width: 480px;
  background: rgba(13, 19, 32, 0.94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(243, 78, 58, 0.15);
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow: hidden;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F34E3A, #FF7722);
}
.cookie-banner.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(243, 78, 58, 0.15);
  border: 1px solid rgba(243, 78, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.cookie-banner-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 20px;
}
.cookie-banner-text a {
  color: var(--brand-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-text a:hover {
  color: #ffffff;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn-group-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-align: center;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #F34E3A, #FF7722);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(243, 78, 58, 0.35);
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(243, 78, 58, 0.5);
  filter: brightness(1.1);
}
.cookie-btn-deny {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}
.cookie-btn-deny:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.cookie-btn-settings {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 8px 12px;
}
.cookie-btn-settings:hover {
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-modal-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  background: rgba(13, 19, 32, 0.96);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(243, 78, 58, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s var(--ease-out);
}
.cookie-modal.active .cookie-modal-card {
  transform: scale(1) translateY(0);
}
.cookie-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F34E3A, #FF7722);
}

.cookie-modal-header {
  padding: 24px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.cookie-modal-body {
  padding: 20px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-intro {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* Category item */
.cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.25s;
}
.cookie-category:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.cookie-category-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-badge-required {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(243, 78, 58, 0.15);
  color: var(--brand-orange);
  border: 1px solid rgba(243, 78, 58, 0.3);
}
.cookie-category-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Switch Toggle UI */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.3s var(--ease-out);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  transition: 0.3s var(--ease-out);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.cookie-toggle input:checked + .cookie-slider {
  background: linear-gradient(135deg, #F34E3A, #FF7722);
  border-color: rgba(243, 78, 58, 0.4);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 18, 0.5);
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 18px;
  }
  .cookie-trigger-btn {
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
  }
  .cookie-btn-group-primary {
    grid-template-columns: 1fr;
  }
  .cookie-modal-card {
    max-height: 95vh;
    border-radius: 20px;
  }
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
