/* ============================================================================
   ANALYTICSROCKET - CLEAN & MODERN CSS
   ============================================================================ */

/* ============================================================================
   THEME SYSTEM - CSS CUSTOM PROPERTIES (Light & Dark Mode)
   ============================================================================ */

:root {
  /* Default: Dark Theme */
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  --accent-cyan: #00d4ff;
  --accent-blue: #0ea5e9;
  --accent-purple: #8338ec;
  --accent-pink: #ff006e;
  --accent-green: #34a853;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);
  
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

/* Light Theme */

/* Smooth theme transition */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ============================================================================
   CRITICAL FIX - Top Bar & Nav MUST stick at top on ALL devices - NO GAPS!
   ============================================================================ */

/* Reset to prevent any unwanted spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CRITICAL: Allow natural scrolling on all devices - SIMPLIFIED */
html {
  overflow: visible !important;
  height: auto !important;
  min-height: 100% !important;
}

body {
  overflow: visible !important;
  height: auto !important;
  min-height: 100vh !important;
  position: static !important;
}

/* Scroll Progress Bar */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Top Bar - Sticks at very top */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  z-index: 998;
  pointer-events: auto;
}

/* Navigation - Sticks directly below top bar */
.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 999;
  pointer-events: auto;
}

.nav.scrolled {
  position: fixed;
  top: 40px;
}

/* Mobile Hamburger must be on top */
.mobile-menu-toggle {
  z-index: 1001;
  position: relative;
  pointer-events: auto;
}

/* Ensure icons are visible immediately - NO ANIMATION DELAYS */
.fas, .fab, .far, .fa {
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900 !important;
}

/* Force icons in navigation and top bar to show immediately */
.top-bar i,
.nav i,
.mobile-menu i {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Prevent horizontal scroll issues */
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

/* ============================================================================
   GLOBAL PARTICLES BACKGROUND - Große leuchtende Orbs wie im Hero Banner
   ============================================================================ */
.global-particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  opacity: 1;
}

.global-particles-container .particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}

/* Große leuchtende Orbs - Hero Style */
.global-particles-container .particle:nth-child(1) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.6), transparent);
  top: 10%;
  left: -10%;
  animation: float-orb 25s infinite ease-in-out;
}

.global-particles-container .particle:nth-child(2) {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.5), transparent);
  top: 20%;
  right: -8%;
  animation: float-orb 30s infinite ease-in-out 3s;
}

.global-particles-container .particle:nth-child(3) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.45), transparent);
  top: 50%;
  left: 5%;
  animation: float-orb 28s infinite ease-in-out 5s;
}

.global-particles-container .particle:nth-child(4) {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.5), transparent);
  bottom: 10%;
  right: -5%;
  animation: float-orb 32s infinite ease-in-out 2s;
}

.global-particles-container .particle:nth-child(5) {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.45), transparent);
  top: 70%;
  left: 50%;
  animation: float-orb 27s infinite ease-in-out 7s;
}

.global-particles-container .particle:nth-child(6) {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.48), transparent);
  top: 40%;
  right: 20%;
  animation: float-orb 29s infinite ease-in-out 4s;
}

.global-particles-container .particle:nth-child(7) {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.4), transparent);
  bottom: 30%;
  left: 15%;
  animation: float-orb 26s infinite ease-in-out 6s;
}

.global-particles-container .particle:nth-child(8) {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.45), transparent);
  top: 60%;
  right: 40%;
  animation: float-orb 31s infinite ease-in-out 1s;
}

/* Kleinere Akzent-Orbs */
.global-particles-container .particle:nth-child(9) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.5), transparent);
  top: 15%;
  left: 40%;
  animation: float-orb 24s infinite ease-in-out 8s;
}

.global-particles-container .particle:nth-child(10) {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.45), transparent);
  bottom: 20%;
  right: 25%;
  animation: float-orb 28s infinite ease-in-out 3s;
}

.global-particles-container .particle:nth-child(11) {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.48), transparent);
  top: 35%;
  left: 25%;
  animation: float-orb 25s infinite ease-in-out 9s;
}

.global-particles-container .particle:nth-child(12) {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.42), transparent);
  bottom: 45%;
  right: 10%;
  animation: float-orb 27s infinite ease-in-out 5s;
}

.global-particles-container .particle:nth-child(13) {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.5), transparent);
  top: 25%;
  right: 35%;
  animation: float-orb 23s infinite ease-in-out 7s;
}

.global-particles-container .particle:nth-child(14) {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.45), transparent);
  bottom: 35%;
  left: 35%;
  animation: float-orb 29s infinite ease-in-out 2s;
}

.global-particles-container .particle:nth-child(15) {
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.48), transparent);
  top: 55%;
  left: 70%;
  animation: float-orb 26s infinite ease-in-out 6s;
}

.global-particles-container .particle:nth-child(16) {
  width: 370px;
  height: 370px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.45), transparent);
  bottom: 15%;
  left: 50%;
  animation: float-orb 30s infinite ease-in-out 4s;
}

.global-particles-container .particle:nth-child(17) {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.5), transparent);
  top: 45%;
  right: 5%;
  animation: float-orb 24s infinite ease-in-out 8s;
}

.global-particles-container .particle:nth-child(18) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.48), transparent);
  bottom: 50%;
  left: 8%;
  animation: float-orb 28s infinite ease-in-out 1s;
}

.global-particles-container .particle:nth-child(19) {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.42), transparent);
  top: 75%;
  right: 15%;
  animation: float-orb 27s infinite ease-in-out 9s;
}

.global-particles-container .particle:nth-child(20) {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.45), transparent);
  top: 5%;
  left: 60%;
  animation: float-orb 25s infinite ease-in-out 3s;
}

/* Sanfte Float Animation */
@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 60px) scale(0.95);
  }
}

/* Mobile - Weniger und kleinere Orbs */
@media (max-width: 768px) {
  .global-particles-container {
    opacity: 0.3;
  }
  
  .global-particles-container .particle:nth-child(n+9) {
    display: none;
  }
  
  .global-particles-container .particle {
    filter: blur(40px);
  }
  
  .global-particles-container .particle:nth-child(1) { width: 250px; height: 250px; }
  .global-particles-container .particle:nth-child(2) { width: 220px; height: 220px; }
  .global-particles-container .particle:nth-child(3) { width: 200px; height: 200px; }
  .global-particles-container .particle:nth-child(4) { width: 280px; height: 280px; }
  .global-particles-container .particle:nth-child(5) { width: 210px; height: 210px; }
  .global-particles-container .particle:nth-child(6) { width: 240px; height: 240px; }
  .global-particles-container .particle:nth-child(7) { width: 190px; height: 190px; }
  .global-particles-container .particle:nth-child(8) { width: 220px; height: 220px; }
}

/* ============================================================================
   CSS VARIABLES - Zentrale Farbdefinitionen
   ============================================================================ */
:root {
  /* Hauptfarben - Brand Colors */
  --primary-blue: #00d4ff;
  --primary-blue-dark: #0099cc;
  --primary-pink: #ff006e;
  --primary-purple: #8338ec;
  --primary-green: #34A853;
  
  /* Google Brand Colors */
  --google-blue: #4285F4;
  --google-red: #EA4335;
  --google-yellow: #FBBC04;
  --google-green: #34A853;
  
  /* Legacy support - mapped to new theme variables */
  --bg-black: var(--bg-primary);
  --bg-dark: var(--bg-secondary);
  --bg-section: var(--bg-secondary);
  --bg-card: var(--bg-card);
  
  /* Text Farben - mapped to new theme variables */
  --text-white: var(--text-primary);
  --text-gray: var(--text-secondary);
  --text-gray-light: var(--text-muted);
  
  /* Gradients - Section Theme */
  --gradient-hero: var(--gradient-primary);
  --gradient-about: linear-gradient(135deg, var(--accent-purple) 0%, #a855f7 100%);
  --gradient-services: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  --gradient-websites: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
  --gradient-pricing: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
  --gradient-google: linear-gradient(90deg, #4285F4 0%, #EA4335 33%, #FBBC04 66%, #34A853 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px var(--shadow-color);
  --shadow-md: 0 4px 16px var(--shadow-color);
  --shadow-lg: 0 8px 32px var(--shadow-color);
  --shadow-glow-blue: 0 0 40px rgba(0, 212, 255, 0.3);
  --shadow-glow-purple: 0 0 40px rgba(131, 56, 236, 0.3);
  --shadow-glow-pink: 0 0 40px rgba(255, 0, 110, 0.3);
  --shadow-glow-google: 0 0 40px rgba(66, 133, 244, 0.3);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 20px;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

/* Box-Sizing für alle Elemente */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML & Body Setup - NO OVERFLOW RESTRICTIONS */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
  /* Removed position: fixed - this was blocking scroll */
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Bilder */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Listen */
ul, ol {
  list-style: none;
}

/* ============================================================================
   CONTAINER & LAYOUT
   ============================================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Section Spacing */
section {
  padding: var(--spacing-xl) 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-lg) 0;
    scroll-margin-top: 80px; /* Offset for fixed nav */
  }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

/* Animated Text Gradient - Desktop Only */
.text-gradient, h1 span.text-gradient {
  background: linear-gradient(to right, #00d4ff, #0099cc, #8338ec, #ff006e, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradientAnimation 8s linear infinite;
  will-change: background-position;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(to right, #00d4ff, #0099cc, #8338ec, #ff006e, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradientAnimation 8s linear infinite;
  will-change: background-position;
}

/* Mobile - Disable animation for better performance and readability */
@media (max-width: 768px) {
  .text-gradient, h1 span.text-gradient, h1 {
    animation: none !important;
    background: #00d4ff !important; /* Fallback solid color */
    background: linear-gradient(to right, #00d4ff, #0099cc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 100% !important;
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-white);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-white);
}

p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::after {
  left: 100%;
  transition: 0.5s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ============================================================================
   CARDS
   ============================================================================ */

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================================
   GRID SYSTEM
   ============================================================================ */

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

/* ============================================================================
   TOP BAR - Contact Information
   ============================================================================ */

.top-bar {
  background: linear-gradient(135deg, #0a0a0f 0%, #0d0d1a 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  z-index: 998;
  pointer-events: auto;
  overflow: hidden;
}

.top-bar-inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}

/* ---- Links: Telefon ---- */
.top-bar-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.top-bar-item i {
  color: #00d4ff;
  font-size: 0.8rem;
}

.top-bar-item:hover {
  color: #00d4ff;
}

/* ---- Mitte: News-Ticker ---- */
.news-ticker {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  gap: 0;
  min-width: 0;
}

.ticker-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 20px 20px 0;
  margin-right: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* Fade-out an den Seiten */
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 3rem;
  flex-shrink: 0;
  position: relative;
}

.ticker-item::after {
  content: '•';
  position: absolute;
  right: 0.5rem;
  color: rgba(0, 212, 255, 0.5);
  font-size: 1rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

/* ---- Rechts: Theme Toggle ---- */
.top-bar-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ---- Ticker Animation ---- */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Mobile: Top-Bar optimieren ---- */
@media (max-width: 768px) {
  .top-bar {
    height: 36px;
  }
  .top-bar-left {
    display: none;
  }
  .top-bar-right {
    display: none;
  }
  .news-ticker {
    flex: 1;
    justify-content: center;
  }
  .ticker-label {
    display: none;
  }
  .ticker-track {
    animation: ticker-scroll 60s linear infinite;
  }
  .ticker-item {
    font-size: 0.72rem;
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    height: 32px;
  }
  .ticker-track {
    animation: ticker-scroll 70s linear infinite;
  }
  .ticker-item {
    font-size: 0.68rem;
    padding: 0 1.5rem;
  }
}

/* ============================================================================
   MAIN NAVIGATION — Floating Pill Style (ar-* namespace)
   ============================================================================ */

.ar-header {
  position: fixed;
  top: calc(40px + 0.75rem); /* 40px Top-Bar + Abstand */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1280px;
  z-index: 1000;
  overflow: visible;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ar-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.5rem;
  background: rgba(10, 10, 22, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: all 0.35s ease;
  overflow: visible;
}

.ar-header.scrolled .ar-header-inner {
  background: rgba(6, 6, 16, 0.95);
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,212,255,0.08);
}

/* Logo */
.ar-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.ar-logo:hover { opacity: 0.85; }

.ar-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,212,255,0.2));
}

.ar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ar-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.ar-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #00d4ff;
}

/* Desktop Nav */
.ar-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow: visible;
  position: relative;
}

.ar-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.45rem 0.875rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ar-nav-link:hover,
.ar-nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.ar-nav-link.active {
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
}

/* Dropdown */
.ar-nav-dropdown { position: relative; }

.ar-nav-dropdown .ar-nav-link i {
  font-size: 0.65rem;
  margin-left: 0.25rem;
  transition: transform 0.25s;
}
.ar-nav-dropdown.ar-drop-active .ar-nav-link i { transform: rotate(180deg); }

.ar-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(10,10,22,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
  pointer-events: none;
}
.ar-dropdown-menu.ar-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* CSS hover als Fallback (für Browser ohne JS) */
.ar-nav-dropdown:hover .ar-dropdown-menu:not(.ar-menu-open) {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ar-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.ar-dropdown-item:hover {
  background: rgba(0,212,255,0.1);
  color: #fff;
}
.ar-dropdown-item i {
  color: #00d4ff;
  width: 16px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.ar-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.35rem 0.5rem;
}

/* ── Nested Dropdown (flyout rechts) ── */
.ar-dropdown-nested {
  position: relative;
  padding: 0;
  display: block;
}
.ar-dropdown-nested-trigger {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  width: 100%;
}
.ar-dropdown-nested-trigger:hover {
  background: rgba(0,212,255,0.1);
  color: #fff;
}
.ar-dropdown-nested-trigger i:first-child {
  color: #00d4ff;
  width: 16px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.ar-nested-arrow {
  margin-left: auto;
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.35) !important;
  width: auto !important;
  transition: transform 0.2s, color 0.2s !important;
}
.ar-dropdown-nested:hover .ar-nested-arrow {
  color: #00d4ff !important;
  transform: translateX(2px);
}
.ar-dropdown-sub {
  position: absolute;
  top: 0;
  left: calc(100% + 6px);
  min-width: 210px;
  background: rgba(10,10,22,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 10000;
  pointer-events: none;
}
.ar-dropdown-sub.ar-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
/* CSS hover als Fallback */
.ar-dropdown-nested:hover .ar-dropdown-sub:not(.ar-menu-open) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.ar-dropdown-nested:hover .ar-dropdown-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Header CTA */
.ar-header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ar-btn-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  white-space: nowrap;
}
.ar-btn-phone i { color: #00d4ff; font-size: 0.85rem; }
.ar-btn-phone:hover { color: #fff; }

.ar-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  color: #000;
  font-size: 0.83rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,212,255,0.35);
  position: relative;
}
.ar-btn-primary::before {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: navPing 2s ease-in-out infinite;
}
.ar-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,212,255,0.5);
}

/* Mobile Toggle */
.ar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.55rem 0.65rem;
  z-index: 1100;
}
.ar-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ar-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ar-mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ar-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.ar-mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: rgba(8,8,20,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 1002;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ar-mobile-nav.open { transform: translateX(0); }

.ar-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ar-mobile-overlay.active {
  opacity: 1;
}

.ar-mobile-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
}

.ar-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ar-mobile-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ar-mobile-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.ar-mobile-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.15rem;
  flex: 1;
}
.ar-mobile-list li > a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.ar-mobile-list li > a i { color: #00d4ff; width: 18px; font-size: 0.875rem; flex-shrink: 0; }
.ar-mobile-list li > a:hover,
.ar-mobile-list li > a.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.ar-mobile-list li > a.active { color: #00d4ff; background: rgba(0,212,255,0.08); }

/* Sub-menu */
.ar-mobile-sub-wrap .ar-mobile-submenu {
  display: none;
  flex-direction: column; gap: 0.1rem;
  padding: 0.25rem 0 0.25rem 2.5rem;
}
.ar-mobile-sub-wrap.open .ar-mobile-submenu { display: flex; }
.ar-mobile-submenu li { list-style: none; }
.ar-mobile-submenu a {
  display: block;
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.ar-mobile-submenu a:hover { background: rgba(255,255,255,0.05); color: #fff; }

.ar-mobile-cta {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ar-btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.93rem;
  border-radius: 12px;
}
.ar-btn-full::before { display: none; }
.ar-btn-outline-full {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 0.93rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.ar-btn-outline-full:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .ar-nav { display: none; }
  .ar-btn-phone span { display: none; }
  .ar-mobile-toggle { display: flex !important; }
  .ar-mobile-nav { display: flex; }
  .ar-mobile-overlay { display: block; }
}

@media (max-width: 768px) {
  /* Top-Bar ist 36px auf Mobile */
  .ar-header {
    top: 36px;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
  }
  .ar-header-inner {
    height: 60px;
    padding: 0 1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(6, 6, 16, 0.97);
  }
  .ar-logo-img { height: 38px; }
  .ar-logo-name { font-size: 0.9rem; }
  .ar-logo-sub { font-size: 0.6rem; }
  .ar-header-cta .ar-btn-primary span { display: none; }
  .ar-header-cta .ar-btn-primary { padding: 0.5rem 0.75rem; }
  .ar-header-cta .ar-btn-phone { display: none; }
  .ar-mobile-nav { width: 100%; right: 0; }
}

@media (max-width: 480px) {
  /* Top-Bar ist 32px auf sehr kleinen Geräten */
  .ar-header {
    top: 32px;
  }
  .ar-header-inner { height: 56px; padding: 0 0.875rem; }
  .ar-logo-img { height: 34px; }
  .ar-logo-name { font-size: 0.85rem; }
  .ar-logo-sub { display: none; }
  .ar-header-cta .ar-btn-primary i { font-size: 0.85rem; }
}

.nav.scrolled {
  background: rgba(6, 6, 16, 0.92);
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 212, 255, 0.1);
}

/* ---- Container — 3-column centered logo ---- */
.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--container-padding);
  max-width: 1400px;
  margin: 0 auto;
  height: 100px;
  gap: 1rem;
}

/* ---- Logo — center column ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  justify-content: center;
  white-space: nowrap;
}
.nav-logo:hover { opacity: 0.9; }

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,212,255,0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 16px rgba(0,212,255,0.45));
  transform: scale(1.04);
}

/* ---- Nav Left (links-aligned) ---- */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: flex-end;
}

/* ---- Nav Right (rechts-aligned) ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: flex-start;
}

/* ---- Nav Link ---- */
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-link.active {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.08);
  font-weight: 600;
}
/* Active underline dot */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #00d4ff;
}

/* ---- CTA Button ---- */
.nav-cta {
  position: relative;
  margin-left: 0.75rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.32);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.5);
  opacity: 0.95;
}
.nav-cta:active { transform: translateY(0); }
.nav-cta i { font-size: 0.85rem; }

/* Ping-dot (live indicator) */
.nav-cta::before {
  content: '';
  position: absolute;
  top: -3px; right: -3px;
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #080812;
  animation: navPing 2s ease-in-out infinite;
}
@keyframes navPing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* ============================================================================
   DROPDOWN MENU — Mega-Style
   ============================================================================ */
.nav-item-dropdown {
  position: relative;
}
.nav-item-dropdown .nav-arrow {
  font-size: 0.68rem;
  margin-left: 3px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.nav-item-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10, 10, 22, 0.97);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 16px;
  padding: 6px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 255, 0.06);
}
/* Arrow triangle */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(10, 10, 22, 0.97);
  border-left: 1px solid rgba(0, 212, 255, 0.14);
  border-top: 1px solid rgba(0, 212, 255, 0.14);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}
.dropdown-item:hover {
  background: rgba(0, 212, 255, 0.09);
  color: #fff;
  transform: translateX(3px);
}
.dropdown-item:last-child { border-bottom: none; }

.dropdown-item-icon {
  width: 32px; height: 32px;
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: #00d4ff;
  flex-shrink: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}
.dropdown-item:hover .dropdown-item-icon {
  background: rgba(0, 212, 255, 0.18);
  transform: scale(1.08);
}
.dropdown-item-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown-item-text strong { font-size: 0.875rem; font-weight: 600; color: inherit; }
.dropdown-item-text small { font-size: 0.72rem; color: rgba(255,255,255,0.38); line-height: 1.3; }
.dropdown-item:hover .dropdown-item-text small { color: rgba(255,255,255,0.55); }

/* Divider inside dropdown */
.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 4px 8px;
}

/* ============================================================================
   HERO SECTION - "THE ULTIMATE" (Centered Video Layout)
   ============================================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Fallback */
  min-height: 100dvh; /* Mobile fix */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Premium Dark Background - Clean */
  background-color: #020202;
  /* Increased padding to separate from nav */
  padding: 180px 2rem 80px;
  /* Prevent flickering */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

/* Dark Vignette Overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #020202 90%);
  pointer-events: none;
  z-index: 1;
}

/* Animated Background (Interactive Layer) */
#energy-orb-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  filter: blur(0.5px) brightness(1.2);
}

/* Remove old particles-js styling if present */
#particles-js {
  display: none;
}

/* Old Orb definitions removed to prevent conflicts */

/* Main Content Layout - Grid System */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

/* Left Column: Text Content */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  max-width: 1000px;
}

/* Right Column: Visual Stats Stack */
.hero-visual-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  perspective: 1000px;
}

/* Stats Cards - Inspired by Google Ads Section */
.hero-stats-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Active Indicator Line (Left Border) */
.hero-stats-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #333;
  transition: all 0.3s ease;
}

/* Color Coding for Cards */
.hero-stats-card:nth-child(1)::before { background: #00d4ff; }
.hero-stats-card:nth-child(2)::before { background: #8b5cf6; }
.hero-stats-card:nth-child(3)::before { background: #EA4335; } /* Google Red for Ads */

.hero-stats-card:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-stats-card:hover::before {
  width: 6px;
  box-shadow: 0 0 15px currentColor;
}

.hero-stats-card:nth-child(1) { transform: translateX(20px); }
.hero-stats-card:nth-child(2) { transform: translateX(0); }
.hero-stats-card:nth-child(3) { transform: translateX(20px); }

.hero-stats-card:hover .stat-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-stats-card:nth-child(1) .stat-icon-box { color: #00d4ff; }
.hero-stats-card:nth-child(2) .stat-icon-box { color: #8b5cf6; }
.hero-stats-card:nth-child(3) .stat-icon-box { color: #EA4335; }

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

/* Main Title - Massive Typography */
.hero-main-title {
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.title-line {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0, 212, 255, 0.3);
}

.title-line.highlight {
  background: linear-gradient(90deg, #ffffff, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.5)) drop-shadow(0 4px 20px rgba(0,0,0,0.9));
}

/* Subtitle - Styled like Google Ads Subtitle */
.hero-main-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0;
  border-left: 3px solid #00d4ff;
  padding-left: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: #00d4ff;
  color: #000;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.hero-btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.hero-btn-primary .btn-arrow {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Trust Pills */
.hero-trust-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  backdrop-filter: blur(5px);
}

.trust-pill i {
  color: #00d4ff;
  font-size: 0.9rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #00d4ff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text-col {
    align-items: center;
  }

  .hero-visual-col {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stats-card {
    transform: none !important; /* Reset staggered transform */
    justify-content: flex-start;
  }
  
  .hero-main-subtitle {
    margin: 0 auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-pills {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    /* Top-Bar 36px + Header 60px = 96px + 1rem buffer = ~112px */
    padding: 112px 1rem 60px;
  }

  .hero-video-wrapper {
    max-width: 100%;
  }

  .hero-content-wrapper {
    gap: 2rem;
  }
  
  .hero-main-title {
    font-size: 2rem;
  }
  
  /* H1 mit inline styles - Mobile Fix */
  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    word-break: keep-all;
    hyphens: none;
  }

  .hero-main-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .hero-btn {
    width: auto;
    padding: 1rem 1.5rem;
  }

  .hero-trust-pills {
    gap: 0.5rem;
  }

  .trust-pill {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}

/* Extra small phones - Prevent text breaking */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  
  .hero p {
    font-size: 1rem !important;
  }
  
  .hero-cta-group a {
    font-size: 1rem !important;
    padding: 14px 28px !important;
  }
}

/* Hero Background Orbs - Enhanced & Larger */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  /* Hardware acceleration for smoother animation */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Mobile Optimization for Orbs */
@media (max-width: 768px) {
  /* Disable heavy canvas on mobile to prevent flickering */
  #energy-orb-canvas {
    display: none !important;
  }

  .hero {
    /* Simple background for mobile */
    background: #020205;
  }

  .hero-orb {
    filter: blur(50px);
    opacity: 0.3;
    /* Disable animation on mobile to stop "light/dark" flashing */
    animation: none;
    /* Static positions for mobile */
    transform: none;
  }
  
  /* Position orbs statically to create a nice static gradient */
  .hero-orb-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.2;
  }
  
  .hero-orb-2 {
    top: 30%;
    right: -20%;
    width: 80%;
    height: 50%;
    opacity: 0.2;
  }
  
  .hero-orb-3 {
    bottom: 0;
    left: -20%;
    width: 80%;
    height: 50%;
    opacity: 0.2;
  }
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-blue), transparent);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--primary-pink), transparent);
  top: 40%;
  right: -10%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-purple), transparent);
  bottom: -10%;
  left: 15%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate3d(50px, -50px, 0) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translate3d(30px, 30px, 0) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate3d(-40px, 20px, 0) scale(1.05) rotate(270deg);
  }
}

/* Hero Particles - Enhanced */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
  box-shadow: 0 0 10px currentColor;
}

/* Particle Sizes */
.particle-sm {
  width: 3px;
  height: 3px;
  background: var(--primary-blue);
}

.particle-md {
  width: 6px;
  height: 6px;
  background: var(--primary-pink);
}

.particle-lg {
  width: 10px;
  height: 10px;
  background: var(--primary-purple);
}

/* ============================================================================
   WHATSAPP FLOAT BUTTON WITH CHAT PREVIEW
   ============================================================================ */

/* Wrapper Container */
.whatsapp-float-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-float-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float Button */
.whatsapp-float {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 10;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse Rings - DEAKTIVIERT wegen Performance */
.whatsapp-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25D366;
  border-radius: 50%;
  /* animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; */
  opacity: 0;
  display: none;
}

.whatsapp-pulse-ring-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25D366;
  border-radius: 50%;
  /* animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; */
  /* animation-delay: 1.5s; */
  opacity: 0;
  display: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Icon Wrapper */
.whatsapp-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.whatsapp-icon-wrapper i {
  font-size: 32px;
  color: #fff;
}

/* Chat Preview Window */
.whatsapp-chat-preview {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  overflow: hidden;
}

.whatsapp-chat-preview.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Chat Preview Header */
.chat-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  position: relative;
}

.chat-preview-avatar {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-preview-avatar i {
  font-size: 24px;
  color: #25D366;
}

.chat-preview-info {
  flex: 1;
  min-width: 0;
}

.chat-preview-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.chat-preview-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.9;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  /* animation: pulse-dot 2s ease-in-out infinite; - DEAKTIVIERT */
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.chat-preview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-preview-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Chat Preview Body */
.chat-preview-body {
  padding: 20px;
  background: #e5ddd5;
  min-height: 150px;
}

.chat-message {
  margin-bottom: 16px;
}

.message-bubble {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.message-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.message-bubble p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.5;
}

.message-time {
  display: block;
  font-size: 11px;
  color: #6b7280;
  text-align: right;
}

/* Quick Replies */
.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.quick-reply {
  display: block;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  text-decoration: none;
  color: #1f2937;
  font-size: 13px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.quick-reply:hover {
  background: #f3f4f6;
  border-color: #25D366;
  color: #25D366;
  transform: translateX(4px);
}

/* WhatsApp Button Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float-wrapper {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-icon-wrapper i {
    font-size: 28px;
  }
  
  .whatsapp-chat-preview {
    width: calc(100vw - 40px);
    max-width: 320px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-chat-preview {
    bottom: 70px;
    right: -10px;
    width: calc(100vw - 40px);
  }
}

/* Print - Hide WhatsApp Button */
@media print {
  .whatsapp-float-wrapper {
    display: none !important;
  }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
  }
  10% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    transform: translateY(50vh) translateX(20px) scale(1) rotate(180deg);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) translateX(-20px) scale(0.5) rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes shimmer {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.4));
  }
  25% {
    filter: drop-shadow(0 0 25px rgba(234, 67, 53, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(251, 188, 4, 0.6));
  }
  75% {
    filter: drop-shadow(0 0 25px rgba(52, 168, 83, 0.5));
  }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ============================================================================
   GOOGLE REVIEWS SECTION
   ============================================================================ */

.reviews-section {
  background: var(--bg-black);
  padding: 0 0 4rem 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(66, 133, 244, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(52, 168, 83, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 188, 4, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(234, 67, 53, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Reviews Header */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.google-logo:hover {
  transform: translateY(-2px);
}

.google-logo i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25%, #EA4335 50%, #FBBC04 50%, #FBBC04 75%, #34A853 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(66, 133, 244, 0.4));
}

.google-logo span {
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #FBBC04;
  font-size: 1.75rem;
  text-shadow: 0 0 12px rgba(251, 188, 4, 0.6);
  filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.4));
}

.rating-info {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
}

.rating-text {
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 500;
}

.review-count {
  color: var(--text-gray-light);
  font-size: 0.9rem;
}

/* Reviews Carousel Container */
.reviews-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 60px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.2);
  border: 2px solid rgba(0, 212, 255, 0.4);
  color: #00d4ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  border-color: #00d4ff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #00d4ff;
  width: 30px;
  border-radius: 5px;
}

.indicator:hover {
  background: rgba(0, 212, 255, 0.6);
}

/* Review Card in Carousel */
.reviews-carousel .review-card {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  min-height: 280px;
}

.reviews-carousel .review-card.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reviews-carousel .review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #4285F4 0%, 
    #EA4335 33.33%, 
    #FBBC04 66.66%, 
    #34A853 100%
  );
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .reviews-carousel-container {
    padding: 0 50px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .reviews-carousel .review-card {
    padding: 1.5rem;
    min-height: 300px;
  }
  
  /* Extra Abstand oberhalb der Reviews Section auf Mobile */
  .reviews-section {
    padding-top: 60px !important;
  }
}

/* Old Reviews Grid - Hide */
.reviews-grid {
  display: none;
}

/* Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #4285F4 0%, 
    #EA4335 33.33%, 
    #FBBC04 66.66%, 
    #34A853 100%
  );
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(66, 133, 244, 0.4);
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(66, 133, 244, 0.2);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviewer-info h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-white);
  font-weight: 500;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
}

.review-stars i {
  color: #FBBC04;
  font-size: 1rem;
  filter: drop-shadow(0 0 4px rgba(251, 188, 4, 0.4));
}

.review-time {
  color: var(--text-gray-light);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.review-text {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.review-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-platform i {
  font-size: 1.125rem;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 33%, #FBBC04 66%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(66, 133, 244, 0.4));
}

/* Live Activity */
.live-activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: var(--border-radius-lg);
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.live-activity::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4285F4, #34A853);
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.4);
}

.activity-indicator,
.recent-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #34A853;
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(52, 168, 83, 0.6);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(52, 168, 83, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(52, 168, 83, 0.8);
    transform: scale(1.1);
  }
}

.recent-action i {
  color: #34A853;
  font-size: 1.125rem;
  filter: drop-shadow(0 0 6px rgba(52, 168, 83, 0.4));
}

@media (max-width: 768px) {
  .live-activity {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
}

/* ============================================================================
   ABOUT SECTION - Wer ich bin
   ============================================================================ */

.about-section {
  background: var(--bg-black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
}

/* Profile Image */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
}

.profile-image {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.15), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(255, 0, 110, 0.15), transparent 70%),
    var(--gradient-card);
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.profile-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.profile-wrapper:hover .profile-image {
  transform: scale(1.05);
  box-shadow: 
    0 12px 48px rgba(0, 212, 255, 0.5),
    0 0 60px rgba(0, 212, 255, 0.3),
    inset 0 0 40px rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.6);
}

.rocket-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border: 3px solid var(--bg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 
    0 4px 20px rgba(0, 212, 255, 0.6),
    0 0 30px rgba(255, 0, 110, 0.4);
  animation: pulse 2s ease-in-out infinite;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

@media (max-width: 768px) {
  .profile-wrapper {
    width: 220px;
    height: 220px;
  }
  
  .profile-image {
    font-size: 4.5rem;
  }
  
  .rocket-badge {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 10px;
    right: 10px;
  }
}

/* About Content */
.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

@media (max-width: 1024px) {
  .about-content h2 {
    text-align: center;
  }
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
}

.about-text strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Skill Cards */
.skill-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .skill-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--primary-blue) 0%, 
    var(--primary-pink) 50%, 
    var(--primary-purple) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-card::before {
  opacity: 1;
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 212, 255, 0.3);
}

.skill-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
  transition: all 0.3s ease;
}

.skill-card:hover i {
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
  transform: scale(1.1) rotate(5deg);
}

.skill-card strong {
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-weight: 700;
}

.skill-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================================
   VIDEO CTA SECTION - Bereit durchzustarten?
   ============================================================================ */

.video-cta-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-xl) var(--container-padding);
  background: var(--bg-black);
}

/* Video Background */
.video-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-cta-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

/* Multi-Layer Overlay für perfekten Look */
.video-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, 
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0.85) 100%
    );
  pointer-events: none;
}

/* Animated Gradient Border */
.video-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #00d4ff 0%,
    #8338ec 50%,
    #ff006e 100%
  );
  z-index: 5;
  animation: gradientShift 8s ease infinite;
}

.video-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #ff006e 0%,
    #8338ec 50%,
    #00d4ff 100%
  );
  z-index: 5;
  animation: gradientShift 8s ease infinite reverse;
}

/* Content Container */
.video-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-xl) var(--spacing-md);
  animation: fadeInUp 1s ease-out;
}

/* Badge */
.video-cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #8338ec);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  box-shadow: 
    0 4px 15px rgba(0, 212, 255, 0.3),
    0 0 30px rgba(131, 56, 236, 0.2);
  /* Animation entfernt - kein Wackeln mehr */
}

/* Hauptüberschrift */
.video-cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, #00d4ff, #ff006e, #8338ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.5));
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Untertitel */
.video-cta-subtitle {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Stats Grid in Video CTA */
.video-cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.video-stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  transition: all 0.4s ease;
}

.video-stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 212, 255, 0.3);
}

.video-stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #8338ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.video-stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* CTA Buttons */
.video-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

.video-cta-buttons .btn {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.video-cta-buttons .btn-primary {
  background: linear-gradient(135deg, #00d4ff, #8338ec);
  color: white;
  border: none;
  box-shadow: 
    0 8px 24px rgba(0, 212, 255, 0.4),
    0 0 40px rgba(131, 56, 236, 0.3);
}

.video-cta-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.video-cta-buttons .btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.video-cta-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 16px 40px rgba(0, 212, 255, 0.6),
    0 0 60px rgba(131, 56, 236, 0.5);
}

.video-cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* Trust Indicators */
.video-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.video-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.video-trust-item i {
  color: #00d4ff;
  font-size: 1.25rem;
}

/* Gradient Animation */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .video-cta-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .video-cta-section {
    min-height: 100vh;
    padding: var(--spacing-lg) var(--container-padding);
  }
  
  .video-cta-content h2 {
    font-size: 2.5rem;
  }
  
  .video-cta-subtitle {
    font-size: 1.25rem;
  }
  
  .video-cta-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .video-stat-number {
    font-size: 2rem;
  }
  
  .video-cta-buttons {
    flex-direction: column;
  }
  
  .video-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .video-trust-bar {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.services-section {
  background: var(--bg-black);
  padding: 4rem 0;
}

/* ============================================================================
   BENTO-* — Leistungen Bento Box (Variante 2)
   ============================================================================ */

.bento-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
}

/* Featured card spans 2 rows */
.bento-feat {
  grid-row: 1 / 3;
  background: rgba(0, 212, 255, 0.035) !important;
  border-color: rgba(0, 212, 255, 0.2) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.bento-feat .bento-title { font-size: 1.45rem; }
.bento-feat .bento-desc  { font-size: 0.95rem; }

/* Team strip spans full width */
.bento-team {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}
.bento-team-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.bento-team-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  flex: 1;
}
.bento-team-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.bento-team-item i { color: #00d4ff; font-size: 0.75rem; }
.bento-team-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.bento-team-ansatz {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.75rem;
  width: 100%;
}
.bento-team-sep-v {
  width: 1px;
  height: 16px;
  background: rgba(0, 212, 255, 0.25);
}
.bento-ansatz-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}
.bento-ansatz-highlight {
  font-size: 0.82rem;
  font-weight: 700;
  color: #00d4ff;
}
.bento-ansatz-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Tech stack line */
.bento-tech {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.02em;
}

/* Card base */
.bento-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.bento-card:hover::after { opacity: 1; }

/* Icon */
.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bento-feat .bento-icon { width: 54px; height: 54px; border-radius: 14px; font-size: 1.2rem; }

.bento-icon--cyan   { background: rgba(0,212,255,0.1);   border: 1px solid rgba(0,212,255,0.25);   color: #00d4ff; }
.bento-icon--green  { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.25);  color: #34d399; }
.bento-icon--purple { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25); color: #a78bfa; }
.bento-icon--orange { background: rgba(251,146,60,0.1);  border: 1px solid rgba(251,146,60,0.25);  color: #fb923c; }
.bento-icon--pink   { background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.25); color: #f472b6; }

/* Label pill */
.bento-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  align-self: flex-start;
}

/* Typography */
.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.bento-pos {
  font-size: 0.78rem;
  font-weight: 600;
  color: #00d4ff;
}
.bento-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Feature list */
.bento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
.bento-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
}
.bento-list li i { color: #00d4ff; font-size: 0.65rem; }

/* CTA Buttons */
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.bento-cta:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: #00d4ff;
}
.bento-cta--primary {
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  border-color: transparent;
  color: #000;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}
.bento-cta--primary:hover {
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.45);
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-feat {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-team { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .bento-team-sep { display: none; }
}

/* ============================================================================
   SVC-* — Services Grid (5 Leistungen)
   ============================================================================ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* First card spans full width on its own row to signal "Fundament" */
.svc-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 2rem;
  align-items: start;
}
.svc-card--featured .svc-card-head  { grid-column: 1; grid-row: 1; }
.svc-card--featured .svc-title      { grid-column: 2; grid-row: 1; align-self: center; margin: 0; }
.svc-card--featured .svc-pos        { grid-column: 2; grid-row: 2; }
.svc-card--featured .svc-desc       { grid-column: 2; grid-row: 3; }
.svc-card--featured .svc-list       { grid-column: 3; grid-row: 1 / 4; margin: 0; align-self: start; }
.svc-card--featured .svc-cta        { grid-column: 2 / 4; grid-row: 4; justify-self: start; margin-top: 1.25rem; }

/* Base card */
.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.svc-card:hover {
  border-color: rgba(0,212,255,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,212,255,0.08);
  transform: translateY(-3px);
}
.svc-card:hover::before { opacity: 1; }

/* Featured card accent */
.svc-card--featured {
  background: rgba(0,212,255,0.04);
  border-color: rgba(0,212,255,0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,212,255,0.1);
}

/* Card head: icon + label row */
.svc-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Icon */
.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #00d4ff;
  flex-shrink: 0;
}
.svc-icon--green  { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.2); color: #34d399; }
.svc-icon--purple { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); color: #a78bfa; }
.svc-icon--orange { background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.2); color: #fb923c; }
.svc-icon--pink   { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.2); color: #f472b6; }

/* Label badge */
.svc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

/* Title */
.svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Positioning tagline */
.svc-pos {
  font-size: 0.82rem;
  font-weight: 600;
  color: #00d4ff;
  opacity: 0.8;
  margin: 0;
}
.svc-card--featured .svc-pos { color: #00d4ff; opacity: 1; font-size: 0.9rem; }

/* Description */
.svc-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* Feature list */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
}
.svc-list li i {
  color: #00d4ff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* CTA button */
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 999px;
  color: #00d4ff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}
.svc-cta:hover {
  background: rgba(0,212,255,0.1);
  border-color: #00d4ff;
  box-shadow: 0 0 16px rgba(0,212,255,0.2);
}
.svc-card--featured .svc-cta {
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  border-color: transparent;
  color: #000;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,212,255,0.3);
}
.svc-card--featured .svc-cta:hover {
  box-shadow: 0 6px 24px rgba(0,212,255,0.45);
  transform: translateY(-1px);
}

/* Team strip */
.svc-team-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  flex-wrap: wrap;
}
.svc-team-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.svc-team-items {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
}
.svc-team-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.svc-team-item i { color: #00d4ff; font-size: 0.8rem; }
.svc-team-item em { color: rgba(255,255,255,0.35); font-style: normal; }
.svc-team-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card--featured {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto 1fr auto;
  }
  .svc-card--featured .svc-list {
    grid-column: 1 / 3;
    grid-row: 4;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
  }
  .svc-card--featured .svc-cta { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--featured {
    display: flex;
    flex-direction: column;
  }
  .svc-team-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .svc-team-divider { display: none; }
}

/* Section Header */
.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-services);
  border-radius: 50%;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 153, 204, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 2rem;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary-blue);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ============================================================================
   WEBSITES SECTION - Warum eine Website wichtig ist
   ============================================================================ */

.websites-section {
  background: var(--bg-black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.websites-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(52, 168, 83, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 153, 204, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.websites-container {
  position: relative;
  z-index: 1;
}

/* Website Hero Content */
.website-hero {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out;
  position: relative;
}

.website-hero::before {
  content: '🌐 WEBSITES';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-websites);
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 
    0 4px 12px rgba(0, 212, 255, 0.3),
    0 0 20px rgba(52, 168, 83, 0.2);
  animation: fadeInUp 1s ease-out backwards;
}

.website-hero h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--spacing-md);
  background: var(--gradient-websites);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.website-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 850px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.website-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Websites Section Stats - Larger, more prominent */
.website-hero-stats .stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--border-radius-xl);
  transition: all 0.3s ease;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}

.website-hero-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 212, 255, 0.1), 
    transparent
  );
  transition: left 0.6s ease;
}

.website-hero-stats .stat-item:hover::before {
  left: 100%;
}

.website-hero-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(52, 168, 83, 0.5);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 212, 255, 0.4);
}

/* Default stat-item for other sections */
.stat-item {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  min-width: 200px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 168, 83, 0.4);
  transform: translateY(-4px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-websites);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* Website Benefits Grid */
.website-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

@media (max-width: 1024px) {
  .website-benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-websites);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 212, 255, 0.03) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

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

.benefit-card:hover::after {
  left: 100%;
  opacity: 1;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(52, 168, 83, 0.5);
  transform: translateY(-12px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Websites Section Icons - Larger and Squared */
.website-benefits .benefit-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.25), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(52, 168, 83, 0.25), transparent 70%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(52, 168, 83, 0.15));
  border: 3px solid rgba(0, 212, 255, 0.4);
  border-radius: var(--border-radius-lg);
  font-size: 2.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
  position: relative;
}

.website-benefits .benefit-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--border-radius-lg);
  padding: 3px;
  background: var(--gradient-websites);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.website-benefits .benefit-card:hover .benefit-icon::after {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

.website-benefits .benefit-card:hover .benefit-icon {
  background: var(--gradient-websites);
  border-color: rgba(52, 168, 83, 0.7);
  transform: scale(1.2) rotate(8deg);
  box-shadow: 
    0 16px 40px rgba(0, 212, 255, 0.5),
    0 0 40px rgba(52, 168, 83, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Default benefit-icon (fallback for other sections) */
.benefit-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.2), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(52, 168, 83, 0.2), transparent 70%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(52, 168, 83, 0.1));
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--border-radius-lg);
  font-size: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-websites);
  border-color: rgba(52, 168, 83, 0.6);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 
    0 12px 32px rgba(0, 212, 255, 0.4),
    0 0 30px rgba(52, 168, 83, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-content h3 {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.benefit-points {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0 0 0;
}

.benefit-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.benefit-points li i {
  color: var(--primary-blue);
  font-size: 1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-points li i {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
  transform: scale(1.1);
}

/* Website CTA Section */
.website-cta {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--border-radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.website-cta:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.website-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 0, 110, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.website-cta-content {
  position: relative;
  z-index: 1;
}

.website-cta h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.website-cta p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
}

.website-cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.website-cta-buttons .btn {
  position: relative;
  overflow: hidden;
}

.website-cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.website-cta-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .website-hero-stats {
    gap: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .benefit-icon {
    margin-bottom: var(--spacing-sm);
  }
  
  .website-cta {
    padding: var(--spacing-lg);
  }
  
  .website-cta-buttons {
    flex-direction: column;
  }
  
  .website-cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================================================
   GOOGLE ADS SECTION - PREMIUM REDESIGN
   GOOGLE ADS SECTION - ULTIMATE DASHBOARD REDESIGN
   ============================================================================ */

.google-ads-section {
  background-color: #020202;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Dark Vignette Overlay */
.google-ads-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #020202 90%);
  pointer-events: none;
  z-index: 1;
}

/* Glowing Accent Lines */
.google-ads-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, 
    transparent, 
    rgba(66, 133, 244, 0.5), 
    rgba(234, 67, 53, 0.5), 
    rgba(251, 188, 4, 0.5), 
    rgba(52, 168, 83, 0.5), 
    transparent
  );
  opacity: 0.1;
  z-index: 0;
}

.google-ads-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================================
   LEFT COLUMN - STICKY HERO & STATS
   ============================================================================ */

.google-ads-hero {
  position: sticky;
  top: 120px;
  text-align: left;
  padding-right: 20px;
  margin-bottom: 0;
  animation: slideInLeft 0.8s ease-out;
}

/* Massive Typography */
.google-ads-hero h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.google-ads-hero h2 .google-text {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(66, 133, 244, 0.3));
}

.google-ads-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 50px;
  border-left: 3px solid #4285F4;
  padding-left: 20px;
  max-width: 500px;
}

/* Vertical Stats Stack */
.google-ads-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.ads-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ads-stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.ads-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.ads-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
}

/* Color coding stats */
.ads-stat-item:nth-child(1) .ads-stat-number { color: #4285F4; text-shadow: 0 0 20px rgba(66, 133, 244, 0.4); }
.ads-stat-item:nth-child(2) .ads-stat-number { color: #EA4335; text-shadow: 0 0 20px rgba(234, 67, 53, 0.4); }
.ads-stat-item:nth-child(3) .ads-stat-number { color: #34A853; text-shadow: 0 0 20px rgba(52, 168, 83, 0.4); }

/* ============================================================================
   RIGHT COLUMN - BENEFITS AS "SYSTEM MODULES"
   ============================================================================ */

.google-ads-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  animation: slideInRight 0.8s ease-out;
}

.google-ads-benefits::before { display: none; } /* Remove old timeline line */

.google-ads-benefits .benefit-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 30px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  align-items: start;
}

/* Hover State - Expand & Glow */
.google-ads-benefits .benefit-card:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Active Indicator Line */
.google-ads-benefits .benefit-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #333;
  transition: all 0.3s ease;
  display: block !important;
}

/* Color Coding Rows */
.google-ads-benefits .benefit-card:nth-child(1)::before { background: #4285F4; }
.google-ads-benefits .benefit-card:nth-child(2)::before { background: #EA4335; }
.google-ads-benefits .benefit-card:nth-child(3)::before { background: #FBBC04; }
.google-ads-benefits .benefit-card:nth-child(4)::before { background: #34A853; }
.google-ads-benefits .benefit-card:nth-child(5)::before { background: #4285F4; }
.google-ads-benefits .benefit-card:nth-child(6)::before { background: #EA4335; }

.google-ads-benefits .benefit-card:hover::before {
  width: 6px;
  box-shadow: 0 0 20px currentColor;
}

/* Icon Styling */
.google-ads-benefits .benefit-icon {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 12px !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  color: rgba(255, 255, 255, 0.8);
  position: static !important; /* Reset absolute positioning */
  box-shadow: none !important;
}

.google-ads-benefits .benefit-card:hover .benefit-icon {
  background: #fff !important;
  color: #000 !important;
  transform: none !important;
}

/* Content Styling */
.google-ads-benefits .benefit-content {
  padding: 0 !important;
  border: none !important;
}

.google-ads-benefits .benefit-content h3 {
  font-size: 1.4rem !important;
  color: #fff;
  margin-bottom: 10px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  font-weight: 700 !important;
}

.google-ads-benefits .benefit-content p {
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* List Styling - Horizontal Tags */
.google-ads-benefits .benefit-points {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 10px !important;
}

.google-ads-benefits .benefit-points li {
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px !important;
  border-radius: 100px;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.google-ads-benefits .benefit-points li i {
  display: none !important; /* Hide check icons for cleaner look */
}

.google-ads-benefits .benefit-points li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: none !important;
}

/* Status Indicator (Fake UI Element) */
.google-ads-benefits .benefit-card::after {
  content: 'ACTIVE';
  font-family: monospace;
  font-size: 0.7rem;
  color: #34A853;
  background: rgba(52, 168, 83, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(52, 168, 83, 0.2);
  align-self: start;
  display: block !important;
}

/* CTA at bottom */
.google-ads-section .website-cta {
  grid-column: 1 / -1;
  margin-top: 60px;
  background: linear-gradient(90deg, #111, #050505);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
  .google-ads-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .google-ads-hero {
    position: static;
    padding-right: 0;
    text-align: center;
  }

  .google-ads-hero h2 {
    font-size: 3.5rem;
  }

  .google-ads-subtitle {
    margin: 0 auto 40px;
    border-left: none;
    border-bottom: 3px solid #4285F4;
    padding-left: 0;
    padding-bottom: 20px;
  }

  .google-ads-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ads-stat-item {
    flex: 1;
    min-width: 200px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ads-stat-label {
    text-align: center;
  }

  .google-ads-benefits .benefit-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 20px;
  }

  .google-ads-benefits .benefit-card::before {
    width: 100%;
    height: 4px;
    bottom: auto;
  }
  
  .google-ads-benefits .benefit-card:hover::before {
    width: 100%;
    height: 6px;
  }

  .google-ads-benefits .benefit-points {
    justify-content: center;
  }

  .google-ads-benefits .benefit-card::after {
    display: none !important;
  }
}  

/* ============================================================================
   PRICING SECTION - SPOTLIGHT COMPACT
   ============================================================================ */

.pricing-section {
  background: #0a0a0a;
  padding: 80px 0; /* Reduced padding */
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Tighter gap */
  max-width: 1100px; /* Constrained width */
  margin: 40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Spotlight Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px 25px; /* Compact padding */
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* The Spotlight Effect Layer */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

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

/* Border Glow */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.4),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

/* Content Styling */
.pricing-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.package-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 3;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.package-features li i {
  color: #4285F4;
  font-size: 1rem;
}

/* Buttons */
.package-buttons {
  margin-top: auto;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between buttons */
}

.package-buttons .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.package-buttons .btn:hover {
  background: #fff;
  color: #000;
}

/* Popular Card Special Styling */
.pricing-card-popular {
  background: rgba(20, 20, 20, 0.6);
}

.pricing-card-popular .package-features li i {
  color: #8338ec;
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #8338ec;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 4;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 600px;
  }
}

/* ============================================================================
   CONTACT SECTION - Kontaktformular & Info
   ============================================================================ */

.contact-section {
  padding: 70px 0;
  background: linear-gradient(180deg, 
    var(--bg-black) 0%, 
    #0a0a0f 50%,
    var(--bg-black) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.form-header-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin: 0;
}

/* Legacy h3 fallback */
.form-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Optional label hint */
.label-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-left: 0.3rem;
}

/* Trust row above button */
.form-trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
}
.form-trust-row span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.form-trust-row span i {
  color: #00d4ff;
  font-size: 0.75rem;
}

/* Privacy note below button */
.form-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  text-align: center;
}
.form-privacy-note i {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary-blue);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #0a0a0f;
  color: var(--text-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
}

/* Checkbox Group */
.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

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

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--gradient-hero);
  border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.checkbox-text {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-text a:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  padding: 1.125rem 2rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

/* Form Messages */
.form-success,
.form-error {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  animation: slideDown 0.4s ease;
}

.form-success {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #34A853;
}

.form-error {
  background: rgba(234, 67, 53, 0.1);
  border: 1px solid rgba(234, 67, 53, 0.3);
  color: #EA4335;
}

.form-success.show,
.form-error.show {
  display: flex;
}

.form-success i,
.form-error i {
  font-size: 1.5rem;
}

.form-success p,
.form-error p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   CONTACT INFO CARDS
   ============================================================================ */

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
  background: var(--gradient-hero);
  transform: scale(1.1);
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.contact-info-card:hover .info-icon i {
  color: white;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
}

.whatsapp-icon i {
  color: #25D366;
}

.contact-info-card:hover .whatsapp-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-card:hover .whatsapp-icon i {
  color: white;
}

.contact-info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.contact-info-card p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.95rem;
}

.info-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: var(--primary-pink);
  transform: translateX(4px);
}

.info-detail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

/* Social Links in Contact */
.contact-social {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.contact-social .social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social .social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-gray);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social .social-link:hover {
  background: var(--gradient-hero);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* ============================================================================
   FAQ SECTION - Häufig gestellte Fragen
   ============================================================================ */

.faq-section {
  padding: 70px 0;
  background: linear-gradient(180deg, 
    #0a0a0f 0%,
    var(--bg-black) 50%,
    #0a0a0f 100%
  );
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-white);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
  opacity: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-icon i {
  color: var(--primary-blue);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--gradient-hero);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon i {
  color: white;
}

.faq-question:hover .faq-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.faq-text {
  flex: 1;
  line-height: 1.4;
}

/* FAQ Answer */
.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer-content {
  padding: 0 1.75rem 1.75rem 4.75rem;
  color: var(--text-gray);
  line-height: 1.8;
  animation: fadeInAnswer 0.5s ease;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-answer-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.faq-answer-content ul li::before {
  content: '•';
  color: var(--primary-blue);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: -2px;
}

.faq-answer-content strong {
  color: var(--text-white);
  font-weight: 600;
}

/* FAQ CTA */
.faq-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
}

.faq-cta h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-cta p {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================================
   FAQ RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem 1.5rem 3.75rem;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .faq-cta {
    padding: 2rem 1.5rem;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
  }

  .faq-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 1rem 1.25rem 3.25rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .faq-icon i {
    font-size: 0.75rem;
  }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background: linear-gradient(180deg, var(--bg-black) 0%, #000000 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- footer.php Klassen ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.footer-contact-list li i {
  color: var(--primary-blue);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
  color: var(--primary-blue);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 212, 255, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--primary-blue);
  transition: transform 0.2s ease;
}

.footer-links li a:hover {
  color: var(--primary-blue);
}

.footer-links li a:hover i {
  transform: translateX(4px);
}

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

.footer-bottom span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-blue);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* ---- Alte Klassen (Rückwärtskompatibilität) ---- */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,212,255,0.2));
  transition: filter 0.3s ease;
}
.footer-logo:hover .footer-logo-img {
  filter: drop-shadow(0 4px 16px rgba(0,212,255,0.38));
}

.footer-description {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location i {
  color: var(--primary-blue);
}

/* ============================================================================
   RESPONSIVE - Contact & Footer
   ============================================================================ */

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }
}

/* ============================================================================
   IMPRESSUM MODAL - Premium Popup Design
   ============================================================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 0, 110, 0.2);
  border-color: #ff006e;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

/* Modal Content */
.modal-content {
  padding: 50px 40px 40px;
  overflow-y: auto;
  max-height: 85vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.5) rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.7);
}

/* Modal Title */
.modal-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 15px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.modal-title i {
  font-size: 2rem;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LEGAL PAGES — Impressum, Datenschutz, AGB
   ============================================================ */

/* Shared: back button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.back-button:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-blue);
  transform: translateX(-4px);
}

/* Shared: contact-info box */
.contact-info {
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 3px solid var(--primary-blue);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.contact-info p:last-child { margin-bottom: 0; }
.contact-info a {
  color: var(--primary-blue);
  text-decoration: none;
}
.contact-info a:hover { color: #fff; }

/* ---- IMPRESSUM ---- */
.impressum-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.impressum-header {
  margin-bottom: 2.5rem;
}
.impressum-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.impressum-header p {
  color: var(--text-gray);
  font-size: 1rem;
}
.impressum-content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
.impressum-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}
.impressum-content p {
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.impressum-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.impressum-content a:hover { color: #fff; }

/* ---- DATENSCHUTZ ---- */
.datenschutz-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.datenschutz-header {
  margin-bottom: 2.5rem;
}
.datenschutz-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.datenschutz-header p {
  color: var(--text-gray);
  font-size: 1rem;
}
.datenschutz-content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
.datenschutz-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}
.datenschutz-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 1.5rem 0 0.5rem;
}
.datenschutz-content p {
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.datenschutz-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.datenschutz-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.datenschutz-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.datenschutz-content a:hover { color: #fff; }

/* ---- AGB ---- */
.agb-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.agb-header {
  margin-bottom: 2.5rem;
}
.agb-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.agb-header p {
  color: var(--text-gray);
  font-size: 1rem;
}
.agb-content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
.agb-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}
.agb-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 1.5rem 0 0.5rem;
}
.agb-content p {
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.agb-content ul, .agb-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.agb-content ul li, .agb-content ol li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.agb-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.agb-content a:hover { color: #fff; }

/* Page-level section wrappers */
.impressum-section,
.datenschutz-section,
.agb-section {
  min-height: 100vh;
  background: var(--bg-primary, #0a0a0f);
  padding-top: 80px; /* offset for sticky nav */
}

/* Inner content sub-sections (used inside impressum-content) */
.impressum-content .impressum-section,
.datenschutz-content .datenschutz-section,
.agb-content .agb-section {
  min-height: unset;
  padding-top: 0;
  background: transparent;
}

/* Legacy: generic .impressum-section sub-block */
.impressum-section {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.6s ease-out backwards;
}

.impressum-section:nth-child(1) { animation-delay: 0.1s; }
.impressum-section:nth-child(2) { animation-delay: 0.2s; }
.impressum-section:nth-child(3) { animation-delay: 0.3s; }
.impressum-section:nth-child(4) { animation-delay: 0.4s; }

.impressum-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.impressum-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.impressum-section h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #00d4ff, #0099cc);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.impressum-section p {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.impressum-section p strong {
  color: #fff;
  font-weight: 600;
}

.impressum-section p i {
  color: #00d4ff;
  margin-right: 8px;
  width: 20px;
}

.impressum-section a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.impressum-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  transition: width 0.3s ease;
}

.impressum-section a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.impressum-section a:hover::after {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-container {
    border-radius: 20px;
    max-height: 90vh;
  }
  
  .modal-content {
    padding: 40px 25px 25px;
  }
  
  .modal-title {
    font-size: 2rem;
    gap: 12px;
  }
  
  .modal-title i {
    font-size: 1.6rem;
  }
  
  .impressum-section h3 {
    font-size: 1.2rem;
  }
  
  .impressum-section p {
    font-size: 1rem;
  }
  
  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 10px;
  }
  
  .modal-container {
    border-radius: 16px;
  }
  
  .modal-content {
    padding: 35px 20px 20px;
  }
  
  .modal-title {
    font-size: 1.6rem;
  }
  
  .impressum-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}

/* ============================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================================================ */

/* ============================================================================
   TABLET & SMALLER DESKTOPS (max-width: 1024px)
   ============================================================================ */
@media (max-width: 1024px) {
  /* Container & Spacing */
  .container {
    padding: 0 30px;
  }
  
  /* Hero Section */
  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  /* Navigation */
  .nav-left, .nav-right {
    gap: 12px;
  }
  
  /* Google Ads Section */
  .google-ads-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Pricing Cards */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer */
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ============================================================================
   MOBILE LANDSCAPE & SMALL TABLETS (max-width: 768px)
   ============================================================================ */
@media (max-width: 768px) {
  /* Global */
  :root {
    --spacing-section: 60px;
    --spacing-large: 40px;
    --spacing-medium: 25px;
    --spacing-small: 15px;
  }
  
  /* Container */
  .container {
    padding: 0 20px;
  }
  
  /* Typography */
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Top Bar */
  .top-bar {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }
  
  .top-bar-right {
    display: none; /* Hide social links on mobile */
  }
  
  /* Navigation */
  nav {
    padding: 15px 0;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .nav-left, .nav-right {
    display: none; /* Use mobile menu instead */
  }
  
  .nav-cta {
    display: none;
  }
  
  /* Hero Section */
  .hero {
    min-height: 70vh;
    padding: 80px 0 60px;
  }
  
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-title .gradient-text {
    display: block;
    margin-top: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin: 20px 0 30px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  
  .trust-item {
    flex: 1;
    min-width: 100%;
  }
  
  /* Global Particles - Reduce on mobile */
  .particle {
    opacity: 0.2 !important;
  }
  
  /* Reviews Section */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 25px;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-text {
    width: 100%;
  }
  
  .about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  /* Websites Section */
  .websites-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .websites-text {
    width: 100%;
  }
  
  .websites-features {
    width: 100%;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  /* Google Ads Section */
  .google-ads-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .google-ads-left {
    width: 100%;
  }
  
  .google-ads-right {
    width: 100%;
  }
  
  .google-ads-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .floating-watermark {
    font-size: 8rem;
    opacity: 0.02;
  }
  
  /* Pricing Section */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pricing-card {
    padding: 30px 25px;
  }
  
  .package-price {
    font-size: 2.5rem;
  }
  
  /* Contact Section */
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-info {
    width: 100%;
  }
  
  .contact-form-wrapper {
    width: 100%;
  }
  
  .contact-info-item {
    padding: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  /* FAQ Section */
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1.1rem;
    padding-right: 40px;
  }
  
  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-column ul {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  /* WhatsApp Float Button */
  .whatsapp-float-wrapper {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float-button {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-chat-preview {
    width: 280px;
    bottom: 80px;
    right: 20px;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .btn i {
    font-size: 1rem;
  }
}

/* ============================================================================
   MOBILE PORTRAIT (max-width: 480px)
   ============================================================================ */
@media (max-width: 480px) {
  /* Global */
  :root {
    --spacing-section: 50px;
    --spacing-large: 30px;
    --spacing-medium: 20px;
    --spacing-small: 12px;
  }
  
  /* Container */
  .container {
    padding: 0 15px;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  /* Top Bar */
  .top-bar {
    font-size: 0.8rem;
    padding: 6px 0;
  }
  
  /* Logo */
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    font-size: 1.3rem;
  }
  
  /* Hero */
  .hero {
    min-height: 60vh;
    padding: 60px 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin: 15px 0 25px;
  }
  
  .hero-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .trust-item strong {
    font-size: 1.8rem;
  }
  
  .trust-item span {
    font-size: 0.85rem;
  }
  
  /* Section Badges */
  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  /* Cards */
  .review-card,
  .service-card,
  .pricing-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Google Ads Stats */
  .stat-card {
    padding: 18px;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Pricing */
  .package-name {
    font-size: 1.3rem;
  }
  
  .package-price {
    font-size: 2.2rem;
  }
  
  .package-features li {
    font-size: 0.9rem;
    padding: 10px 0;
  }
  
  /* Contact */
  .contact-info-item {
    padding: 18px;
  }
  
  .contact-info-item i {
    font-size: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
  
  /* FAQ */
  .faq-item {
    padding: 18px;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-top {
    padding: 40px 0;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-column li {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
    font-size: 0.85rem;
  }
  
  /* WhatsApp */
  .whatsapp-float-button {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float-button i {
    font-size: 1.6rem;
  }
  
  .whatsapp-chat-preview {
    width: 260px;
    bottom: 75px;
  }
  
  .whatsapp-header {
    padding: 12px;
  }
  
  .whatsapp-avatar {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-name {
    font-size: 0.95rem;
  }
  
  .whatsapp-status {
    font-size: 0.75rem;
  }
  
  .whatsapp-body {
    padding: 15px;
  }
  
  .whatsapp-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .whatsapp-actions {
    padding: 12px;
    gap: 8px;
  }
  
  .whatsapp-quick-reply {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  /* Hide particles completely on very small screens */
  .particle {
    display: none;
  }
  
  /* Reduce animations on mobile for better performance */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.2s !important;
  }
}

/* ============================================================================
   EXTRA SMALL MOBILE (max-width: 360px)
   ============================================================================ */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .package-price {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .whatsapp-chat-preview {
    width: calc(100vw - 30px);
    right: 15px;
  }
  
  .modal-content {
    padding: 30px 15px 15px;
  }
}

/* ============================================================================
   LANDSCAPE MOBILE OPTIMIZATION
   ============================================================================ */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin: 15px 0 20px;
  }
  
  .trust-indicators {
    margin-top: 30px;
  }
  
  .modal-container {
    max-height: 85vh;
  }
}

/* ============================================================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Increase tap targets for better mobile UX */
  .btn,
  .nav-link,
  .footer-column a,
  .faq-question {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Remove hover effects on touch devices */
  .pricing-card:hover,
  .service-card:hover,
  .review-card:hover {
    transform: none;
  }
  
  /* Disable tilt effect on mobile */
  .pricing-card {
    transform: none !important;
  }
}

/* ============================================================================
   PRINT OPTIMIZATION (BONUS)
   ============================================================================ */
@media print {
  .whatsapp-float-wrapper,
  .top-bar,
  nav,
  .hero-cta,
  .modal-overlay,
  .particle,
  .floating-watermark {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* ============================================================================
   SOCIAL PROOF BUTTONS (ABOUT SECTION)
   ============================================================================ */
.about-social-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkedin-btn {
  background: #0077b5;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.5);
  background: #006396;
  color: white;
}

.google-btn {
  background: white;
  color: #4285F4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.google-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
  background: #f8f9fa;
}

/* ============================================================================
   TRUST WALL SLIDER (INFINITE SCROLL)
   ============================================================================ */
.trust-wall-section {
  padding: 40px 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trust-wall-title {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 600;
}

.trust-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

/* Fade effect on sides */
.trust-slider::before,
.trust-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px; /* Adjusted fade width */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-slider::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.trust-slider::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: scroll 80s linear infinite; /* Langsamer für bessere Lesbarkeit */
  gap: 6rem;
  will-change: transform;
}

.trust-track:hover {
  animation-play-state: paused;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  flex-shrink: 0; /* Prevent shrinking */
}

.trust-logo {
  max-width: 180px; /* Slightly larger logos */
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Schwarz/Weiß Look - Heller und sichtbarer */
  filter: grayscale(100%) brightness(2) contrast(1); 
  /* Weniger Transparenz */
  opacity: 0.8; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Größere Logos für bestimmte Kunden */
.trust-logo.logo-larger {
  max-width: 240px;
  max-height: 100px;
}

.trust-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move by half the width (since we duplicated content) */
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trust-slider::before,
  .trust-slider::after {
    width: 50px;
  }
  
  .trust-track {
    gap: 3rem;
    animation-duration: 120s !important; /* Extremely slow on mobile */
  }
  
  .slide {
    width: 120px;
  }
  
  .trust-logo {
    max-width: 100px;
    max-height: 50px;
  }
  
  /* Mehr Abstand zwischen Trust Wall und Google Bewertungen auf Mobile */
  .trust-wall-section {
    padding-bottom: 60px;
    margin-bottom: 40px;
  }
}

/* ============================================================================
   WEBSITE ERSTELLUNG PAGE STYLES
   ============================================================================ */

/* Hero Section Styles */
.website-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits li {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-benefits i {
  color: #00d4ff;
  font-size: 1.3rem;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Target Audience Section */
.target-audience-section {
  margin: 80px 0;
  text-align: center;
}

.target-audience-section h2 {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 40px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: #00d4ff;
  transform: translateY(-5px);
}

.audience-item i {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 15px;
  display: block;
}

.audience-item span {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

/* Services Types Section */
.services-types-section {
  margin: 80px 0;
  text-align: center;
}

.services-types-section h2 {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 40px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-type {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.service-type:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: #00d4ff;
  transform: translateX(10px);
}

.service-type i {
  font-size: 2rem;
  color: #00d4ff;
}

.service-type span {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

/* Process Section */
.process-section {
  margin: 80px 0;
  text-align: center;
}

.process-section h2 {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: #00d4ff;
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
  margin: 80px 0;
  text-align: center;
}

.why-us-section h2 {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: #00d4ff;
  transform: translateY(-5px);
}

.why-item i {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 20px;
  display: block;
}

.why-item h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.why-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Mobile Optimization für neue Sektionen */
@media (max-width: 768px) {
  .website-hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .audience-grid,
  .services-list,
  .process-steps,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .service-type {
    justify-content: center;
  }
}

/* ============================================================================
   GOOGLE REVIEWS FLOAT BUTTON
   ============================================================================ */
.google-reviews-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* Close Button for Google Reviews Float */
.google-review-close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: rgba(234, 67, 53, 0.9);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.google-review-close-btn:hover {
  background: #EA4335;
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.5);
}

.google-review-close-btn i {
  font-size: 10px;
}

.google-review-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  color: #202124;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  position: relative;
}

.google-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.3);
  border-color: #4285F4;
}

.google-review-btn .google-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.google-review-btn .stars {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 2px;
}

.google-review-btn .rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.google-review-btn .rating-text strong {
  color: #202124;
  font-size: 0.9rem;
}

.google-review-btn .rating-text span {
  color: #5f6368;
  font-size: 0.8rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .google-reviews-float {
    bottom: 85px;
    right: 20px;
  }
  
  .google-review-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .google-review-btn .google-icon {
    font-size: 1.3rem;
  }
  
  .google-review-btn .stars {
    font-size: 0.9rem;
  }
  
  .google-review-btn .rating-text strong {
    font-size: 0.85rem;
  }
  
  .google-review-btn .rating-text span {
    font-size: 0.75rem;
  }
}

/* ============================================================================
   SCROLL TO TOP BUTTON
   ============================================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
  background: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%);
}

.scroll-to-top:active {
  transform: scale(0.95);
}

/* ============================================================================
   LIGHT MODE - COMPREHENSIVE THEME ADJUSTMENTS
   ============================================================================ */

/* ============================================
   UNIVERSAL LIGHT MODE TEXT COLOR OVERRIDES
   Override ALL inline white text colors globally
   ============================================ */

/* All elements with inline white colors */

/* Semi-transparent white text (0.9-0.7 opacity) -> dark gray */

/* Light gray text (0.6-0.4 opacity) -> medium gray */

/* Very light text (0.3-0.1 opacity) -> light gray */

/* White backgrounds -> light backgrounds */

/* White borders -> dark borders */

/* Hero Section - Complete Light Mode Overhaul */

/* Light Vignette for Light Mode */

/* Hero Title - Dark Text with Strong Contrast - Override inline styles */

/* Keep gradient text visible */

/* Hero Paragraphs and Text - Override inline white color */

/* Trust Indicators - Override inline colors */

/* Hero Badge */

/* Links in Hero - Keep cyan/blue visible */

/* Hero Stats Cards - Light Background */

/* CTA Buttons in Hero */

/* CTA Buttons in Hero - Override inline styles */

/* Check icons color */

/* Canvas Background Adjustment */

/* Old Hero Classes (Fallback) */

/* Cards & Containers */

/* Specific card text elements */

/* Buttons */

/* Sections Background */

/* Footer */

/* Forms */

/* Navigation */

/* Mobile Menu */

/* Lists & Features */

/* Icons */

/* Pricing Cards */

/* Reviews */

/* FAQ */

/* Gradient Text - Keep visible */

/* Shadows for Light Mode */

/* Trust Logos - Better visibility in light mode */

/* Scroll to Top Button */

/* Borders & Dividers */

/* Tables */

/* Modals */

/* Top Bar Contact Info */

/* Google Ads Section - Light Mode */

/* Google Ads Hero */

/* Google Ads Stats */

/* Override inline white text colors in Google Ads section */

/* Benefit Cards - All text elements dark */

/* Research note box */

/* Additional Sections - Light Mode Fixes */

/* Video/Media Elements */

/* CTA Sections - Complete Light Mode */

/* Website CTA Box - Light Mode */

/* CTA Buttons */

/* Package/Pricing specifics */

/* Badges & Tags */

/* WhatsApp Float Button */

/* Express Float Button */

/* Testimonials */

/* Mobile */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
  }
}

/* ========================================================
   SCROLL ANIMATIONS
   ======================================================== */

.scroll-fade-in,
.scroll-fade-left,
.scroll-fade-right,
.scroll-scale-in {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.scroll-fade-in {
  transform: translateY(30px);
}

.scroll-fade-left {
  transform: translateX(-40px);
}

.scroll-fade-right {
  transform: translateX(40px);
}

.scroll-scale-in {
  transform: scale(0.9);
}

/* Triggered by IntersectionObserver (.animated class) */
.scroll-fade-in.animated,
.scroll-fade-left.animated,
.scroll-fade-right.animated,
.scroll-scale-in.animated {
  opacity: 1;
  transform: none;
}

/* Fallback: wenn JS deaktiviert ist, alles sichtbar */
@media (prefers-reduced-motion: reduce) {
  .scroll-fade-in,
  .scroll-fade-left,
  .scroll-fade-right,
  .scroll-scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   SCROLL TO TOP BUTTON
   ============================================================================ */

#scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.35);
  transition: all 0.3s ease;
  z-index: 999;
}

#scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
}

#scroll-top.visible {
  display: flex;
}

/* ============================================================
   KONTAKT PAGE — Hero + Grid + Cards
   ============================================================ */

/* ---- Hero ---- */
.kontakt-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--bg-primary, #0a0a0f);
  overflow: hidden;
  text-align: center;
}
.kontakt-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kontakt-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.kontakt-hero-glow--1 {
  width: 600px; height: 600px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, #00d4ff, transparent 70%);
}
.kontakt-hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
}
.kontakt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.kontakt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.kontakt-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.kontakt-hero > .container > .kontakt-hero-inner > p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.kontakt-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}
.kontakt-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.kontakt-trust-item i {
  color: #00d4ff;
  font-size: 0.85rem;
}

/* ---- Main section ---- */
.kontakt-main {
  padding: 60px 0 100px;
  background: var(--bg-primary, #0a0a0f);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---- Form Card ---- */
.kontakt-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.kontakt-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kontakt-form-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--gradient-primary, linear-gradient(135deg,#00d4ff,#0ea5e9));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #000;
}
.kontakt-form-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.kontakt-form-header p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

/* ---- Info Col ---- */
.kontakt-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.kontakt-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.5rem;
}
.kontakt-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kontakt-info-title i {
  color: #00d4ff;
}

/* Channel rows */
.kontakt-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 0.5rem;
}
.kontakt-channel:last-of-type { margin-bottom: 0; }
.kontakt-channel:hover {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}
.kontakt-channel-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #00d4ff;
  transition: all 0.25s ease;
}
.kontakt-channel-icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.kontakt-channel:hover .kontakt-channel-icon {
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #000;
}
.kontakt-channel:hover .kontakt-channel-icon--wa {
  background: #25d366;
  color: #fff;
}
.kontakt-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.kontakt-channel-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.kontakt-channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}
.kontakt-channel-note {
  font-size: 0.78rem;
  color: var(--text-gray);
}
.kontakt-channel-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  transition: color 0.25s, transform 0.25s;
}
.kontakt-channel:hover .kontakt-channel-arrow {
  color: #00d4ff;
  transform: translateX(3px);
}

/* Location card */
.kontakt-location-card {
  border-color: rgba(0,212,255,0.12);
}
.kontakt-location-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.kontakt-location-text strong { color: var(--text-white); }
.kontakt-location-text span { font-size: 0.85rem; opacity: 0.75; }
.kontakt-location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.kontakt-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  color: #00d4ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Calendly card */
.kontakt-calendly-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 1.5rem;
}
.kontakt-calendly-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.kontakt-calendly-top > i {
  font-size: 1.8rem;
  color: #00d4ff;
}
.kontakt-calendly-top h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}
.kontakt-calendly-top p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
}
.kontakt-calendly-btn {
  width: 100%;
  justify-content: center;
}

/* Social card */
.kontakt-social-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kontakt-social-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}
.kontakt-social-links {
  display: flex;
  gap: 0.6rem;
}
.kontakt-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.kontakt-social-link--linkedin {
  background: rgba(10,102,194,0.15);
  color: #0a66c2;
  border: 1px solid rgba(10,102,194,0.3);
}
.kontakt-social-link--linkedin:hover {
  background: #0a66c2;
  color: #fff;
  transform: translateY(-3px);
}
.kontakt-social-link--instagram {
  background: rgba(225,48,108,0.12);
  color: #e1306c;
  border: 1px solid rgba(225,48,108,0.25);
}
.kontakt-social-link--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ---- Responsive Kontakt ---- */
@media (max-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .kontakt-hero { padding: 112px 1rem 50px; }
}
@media (max-width: 640px) {
  .kontakt-hero { padding: 104px 1rem 50px; }
  .kontakt-hero-trust { gap: 0.5rem 1rem; }
  .kontakt-trust-item { font-size: 0.82rem; }
  .kontakt-form-card { padding: 1.5rem; }
  .kontakt-form-header { flex-direction: column; align-items: flex-start; }
  .kontakt-social-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .kontakt-hero { padding: 96px 0.875rem 45px; }
}

/* ============================================================
   DIAGNOSE-FUNNEL  (oh-haustechnik Stil – dark adapted)
   ============================================================ */

/* ---- Section ---- */
.funnel-section {
  padding: 60px 0 80px;
  background: var(--bg-primary, #0a0a0f);
}

/* ---- Wrapper card ---- */
.funnel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,0.5);
}

/* ---- HEADER – Blue gradient (oh-haustechnik Stil) ---- */
.funnel-header {
  background: linear-gradient(135deg, rgba(0,15,35,0.98) 0%, rgba(0,45,80,0.95) 100%);
  border-bottom: 1px solid rgba(0,212,255,0.18);
  padding: 1.75rem 2.25rem 1.5rem;
}
.funnel-header.hidden { display: none; }
.funnel-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.funnel-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.funnel-header-sub {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.5);
}
.funnel-progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.funnel-progress-bar-wrap {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
}
.funnel-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0ea5e9);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.funnel-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ---- Steps body ---- */
.funnel-body {
  position: relative;
  min-height: 380px;
}
.funnel-body.hidden { display: none; }

/* ---- Individual step ---- */
.funnel-step {
  display: none;
  padding: 2.25rem 2.25rem 2rem;
  animation: funnelStepIn 0.3s ease;
}
.funnel-step.active { display: block; }
.funnel-step.leaving {
  animation: funnelStepOut 0.26s ease forwards;
}
@keyframes funnelStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes funnelStepOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* ---- Step title + desc ---- */
.funnel-step-title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.funnel-step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

/* ---- Option grid ---- */
.funnel-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.funnel-option-grid.cols-1 { grid-template-columns: 1fr; }
.funnel-option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Option wrapper (radio + label) ---- */
.funnel-option {
  position: relative;
}
.funnel-option input[type="radio"],
.funnel-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}

/* ---- Option card label ---- */
.funnel-option-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  user-select: none;
  position: relative;
}
.funnel-option-label:hover {
  border-color: #00d4ff;
  background: rgba(0,212,255,0.06);
  color: #fff;
  transform: translateY(-1px);
}

/* Checked state – pure CSS, no JS needed */
.funnel-option input:checked + .funnel-option-label {
  border-color: #00d4ff;
  background: rgba(0,212,255,0.10);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
  color: #fff;
}

/* Checkmark badge top-right */
.funnel-option input:checked + .funnel-option-label::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  position: absolute;
  top: 7px; right: 8px;
  background: #00d4ff;
  color: #000;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
}

/* ---- Option icon badge ---- */
.funnel-option-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: linear-gradient(135deg, rgba(0,212,255,0.13), rgba(14,165,233,0.08));
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #00d4ff;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.funnel-option input:checked + .funnel-option-label .funnel-option-icon {
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #000;
  transform: scale(1.08);
}

/* ---- Option text ---- */
.funnel-option-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
.funnel-option-text small {
  display: block;
  font-weight: 400;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.18rem;
}
.funnel-option input:checked + .funnel-option-label .funnel-option-text small {
  color: rgba(255,255,255,0.6);
}

/* ---- Sub-options (animated appear) ---- */
.funnel-suboptions {
  display: none;
  margin-top: 1.25rem;
  padding: 1.25rem 1.25rem 1rem;
  background: rgba(0,212,255,0.03);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 14px;
  animation: funnelSubIn 0.25s ease;
}
.funnel-suboptions.visible { display: block; }
@keyframes funnelSubIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.funnel-suboptions-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,212,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Individuelles Feedback-Banner ---- */
.funnel-feedback {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.18);
  border-left: 3px solid #00d4ff;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  animation: funnelFeedbackIn 0.28s ease;
}
.funnel-feedback.visible { display: flex; }
.funnel-feedback i {
  color: #00d4ff;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
@keyframes funnelFeedbackIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Textarea ---- */
.funnel-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.25s;
  box-sizing: border-box;
}
.funnel-textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.funnel-textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ---- Navigation row ---- */
.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.funnel-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.38);
  background: none;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.funnel-back:hover { color: rgba(255,255,255,0.72); }

.funnel-next,
.funnel-btn-step0,
.funnel-submit {
  min-width: 155px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.funnel-next:disabled,
.funnel-btn-step0:disabled,
.funnel-submit:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ---- Step 8: contact fields ---- */
.funnel-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.funnel-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.funnel-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.funnel-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.funnel-label span { color: #00d4ff; }
.funnel-label .opt { color: rgba(255,255,255,0.3); font-weight: 400; }
.funnel-input {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 11px;
  color: #fff;
  font-size: 0.93rem;
  font-family: inherit;
  transition: border-color 0.25s;
  box-sizing: border-box;
  width: 100%;
}
.funnel-input:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.funnel-input::placeholder { color: rgba(255,255,255,0.25); }
.funnel-privacy-field { margin-top: 0.25rem; }

/* Checkbox custom */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-custom {
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.checkbox-label input:checked ~ .checkbox-custom {
  background: #00d4ff;
  border-color: #00d4ff;
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: #000;
}
.checkbox-text a { color: rgba(0,212,255,0.8); }

.funnel-privacy-note {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.funnel-privacy-note i { color: rgba(0,212,255,0.45); }

/* ---- Result screen ---- */
.funnel-result {
  padding: 3rem 2.25rem;
}
.funnel-result.hidden { display: none; }
.funnel-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 50px;
  margin-bottom: 1rem;
}
.funnel-result-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}
.funnel-result-body { margin-bottom: 2.5rem; }

/* ---- Analyse content ---- */
.analyse-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.analyse-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: ac;
}
.analyse-list li {
  display: flex;
  gap: 1rem;
  counter-increment: ac;
}
.analyse-list li::before {
  content: counter(ac);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}
.analyse-list li strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.analyse-list li p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
.analyse-context {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(0,212,255,0.35);
  border-radius: 0 8px 8px 0;
}
.analyse-closing {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.analyse-closing strong { color: #fff; }

/* ---- Signature ---- */
.funnel-result-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 14px;
  margin-bottom: 2rem;
}
.funnel-signature-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #000;
}
.funnel-result-signature strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.funnel-result-signature span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ---- Result CTA ---- */
.funnel-result-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.funnel-result-cta .btn {
  flex: 1;
  min-width: 155px;
  justify-content: center;
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline-dark:hover {
  border-color: rgba(0,212,255,0.4);
  color: #fff;
  background: rgba(0,212,255,0.07);
}

/* ---- Error note in result ---- */
.funnel-error-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(234,67,53,0.08);
  border: 1px solid rgba(234,67,53,0.25);
  color: #ea4335;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.funnel-error-note.hidden { display: none; }
.funnel-error-note a { color: #ea4335; font-weight: 600; }

/* ---- Kontakt bottom row ---- */
.kontakt-bottom {
  padding: 0 0 80px;
  background: var(--bg-primary, #0a0a0f);
}
.kontakt-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .funnel-step { padding: 1.75rem 1.5rem 1.5rem; }
  .funnel-header { padding: 1.4rem 1.5rem 1.25rem; }
  .funnel-result { padding: 2rem 1.5rem; }
}
@media (max-width: 640px) {
  .funnel-wrapper { border-radius: 20px; }
  .funnel-option-grid { grid-template-columns: 1fr; }
  .funnel-option-grid.cols-3 { grid-template-columns: 1fr; }
  .funnel-field-row { grid-template-columns: 1fr; }
  .funnel-result-cta { flex-direction: column; }
  .kontakt-bottom-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   DIAGNOSE-FUNNEL MODAL OVERLAY
   ============================================================================ */

.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.funnel-overlay.open {
  display: flex;
  animation: fmOverlayIn 0.22s ease;
}
@keyframes fmOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.funnel-modal {
  position: relative;
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  background: linear-gradient(160deg, #0f1929 0%, #0a0f1e 100%);
  border: 1px solid rgba(0, 212, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 212, 255, 0.06);
  animation: fmModalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.3) transparent;
}
.funnel-modal::-webkit-scrollbar { width: 4px; }
.funnel-modal::-webkit-scrollbar-thumb { background: rgba(0, 212, 255, 0.3); border-radius: 2px; }
@keyframes fmModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close button */
.funnel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.funnel-close:hover {
  background: rgba(234, 67, 53, 0.22);
  border-color: rgba(234, 67, 53, 0.4);
  color: #fff;
  transform: scale(1.08);
}

/* Modal body uses existing .funnel-* styles — only overrides needed: */
.funnel-modal .funnel-header {
  border-radius: 28px 28px 0 0;
}
.funnel-modal .funnel-modal-body,
.funnel-modal .funnel-result {
  padding: 2rem 2.5rem 2.5rem;
}

/* "hidden" helper */
.hidden { display: none !important; }

/* ============================================================================
   FUNNEL MODAL — COMPACT OVERRIDES
   Alles innerhalb .funnel-modal wird kompakter damit kein Scrollen nötig ist
   ============================================================================ */

/* Header kompakter */
.funnel-modal .funnel-header {
  padding: 1rem 1.5rem 0.9rem;
  border-radius: 28px 28px 0 0;
}
.funnel-modal .funnel-header-title { font-size: 0.9rem; margin-bottom: 0.1rem; }
.funnel-modal .funnel-header-sub   { font-size: 0.75rem; }
.funnel-modal .funnel-header-top   { margin-bottom: 0.75rem; }
.funnel-modal .funnel-progress-bar-wrap { height: 4px; }

/* Steps body padding */
.funnel-modal .funnel-modal-body { padding: 0; }

/* Step padding & titel */
.funnel-modal .funnel-step        { padding: 1.25rem 1.75rem 1rem; }
.funnel-modal .funnel-step-title  { font-size: 1.05rem; margin-bottom: 0.25rem; }
.funnel-modal .funnel-step-desc   { font-size: 0.8rem; margin-bottom: 0.9rem; }

/* Option grid — enger */
.funnel-modal .funnel-option-grid { gap: 0.5rem; }
/* cols-1 im Modal → 2-spaltig (spart Höhe) */
.funnel-modal .funnel-option-grid.cols-1 { grid-template-columns: 1fr 1fr; }
.funnel-modal .funnel-option-label {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  gap: 0.65rem;
}
.funnel-modal .funnel-option-icon {
  width: 32px; height: 32px; min-width: 32px;
  font-size: 0.85rem;
  border-radius: 8px;
}
.funnel-modal .funnel-option-text       { font-size: 0.82rem; }
.funnel-modal .funnel-option-text small { font-size: 0.7rem; margin-top: 0.1rem; }

/* Sub-options */
.funnel-modal .funnel-suboptions {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem 0.7rem;
  border-radius: 10px;
}
.funnel-modal .funnel-suboptions-title { font-size: 0.72rem; margin-bottom: 0.6rem; }

/* Feedback banner */
.funnel-modal .funnel-feedback {
  margin-top: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.79rem;
  border-radius: 8px;
}

/* Nav row */
.funnel-modal .funnel-nav {
  margin-top: 1rem;
  padding-top: 0.9rem;
}

/* Contact fields (Step 8) */
.funnel-modal .funnel-contact-fields { gap: 0.65rem; margin-top: 0.25rem; }
.funnel-modal .funnel-field-row      { gap: 0.6rem; }
.funnel-modal .funnel-input          { padding: 0.65rem 0.85rem; font-size: 0.87rem; }
.funnel-modal .funnel-label          { font-size: 0.76rem; }
.funnel-modal .funnel-privacy-note   { margin-top: 0.55rem; font-size: 0.71rem; }

/* Textarea (Step 4) */
.funnel-modal .funnel-textarea { padding: 0.65rem 0.85rem; font-size: 0.85rem; }

/* Result */
.funnel-modal .funnel-result { padding: 2rem 1.75rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .funnel-modal { max-width: 98vw; border-radius: 20px; }
  .funnel-modal .funnel-step { padding: 1rem 1.25rem 0.9rem; }
}
@media (max-width: 540px) {
  .funnel-modal { border-radius: 16px 16px 0 0; align-self: flex-end; max-height: 96vh; }
  .funnel-overlay { align-items: flex-end; padding: 0; }
  .funnel-modal .funnel-step { padding: 0.9rem 1rem 0.8rem; }
  .funnel-modal .funnel-option-grid { gap: 0.4rem; }
  .funnel-modal .funnel-option-label { padding: 0.55rem 0.7rem; }
  .funnel-modal .funnel-option-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ==========================================================================
   KONTAKT PAGE v2 — kp-* namespace
   ========================================================================== */

/* ── HERO ── */
.kp-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}
.kp-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.kp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.kp-hero-glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -160px; left: 50%;
  transform: translateX(-50%);
}
.kp-hero-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.kp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.kp-hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.kp-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  color: #4ade80;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 1rem; border-radius: 999px;
}
.kp-badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: navPing 2s ease-in-out infinite;
}
.kp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin: 0;
}
.kp-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; max-width: 500px; margin: 0;
}
.kp-trust-row {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; margin-top: 0.5rem;
}
.kp-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.kp-trust-item i { color: #00d4ff; font-size: 0.8rem; }

/* ── CARDS SECTION ── */
.kp-cards-section {
  padding: 0 0 80px;
}
.kp-section-label {
  text-align: center;
  margin-bottom: 2rem;
}
.kp-section-label span {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.kp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── CARD BASE ── */
.kp-card {
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.75rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  background-clip: padding-box;
}
.kp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.kp-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 1.25rem;
}
.kp-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.kp-card-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.kp-card-body { flex: 1; }
.kp-card-title {
  font-size: 1.3rem; font-weight: 800;
  margin: 0 0 0.6rem; color: #fff;
}
.kp-card-desc {
  font-size: 0.9rem; line-height: 1.6;
  color: rgba(255,255,255,0.55); margin: 0 0 1rem;
}
.kp-card-info {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: 'Courier New', monospace;
  margin-bottom: 1.25rem;
}
.kp-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem; margin-top: auto;
}
.kp-card-cta {
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.kp-card-avail {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 0.35rem;
}
.kp-avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: navPing 2s ease-in-out infinite;
}
.kp-avail-dot--email { background: #00d4ff; }
.kp-avail-dot--funnel { background: #a78bfa; }

/* WhatsApp Card */
.kp-card--wa {
  border-color: rgba(37,211,102,0.2);
}
.kp-card--wa:hover {
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 20px 50px rgba(37,211,102,0.12);
}
.kp-card-icon--wa {
  background: rgba(37,211,102,0.15);
  color: #25d366;
}
.kp-card--wa .kp-card-badge { background: rgba(37,211,102,0.12); color: #4ade80; }
.kp-card--wa .kp-card-cta { color: #4ade80; }

/* Email Card */
.kp-card--email {
  border-color: rgba(0,212,255,0.15);
}
.kp-card--email:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 20px 50px rgba(0,212,255,0.1);
}
.kp-card-icon--email {
  background: rgba(0,212,255,0.12);
  color: #00d4ff;
}
.kp-card-badge--email { background: rgba(0,212,255,0.1); color: #7dd3fc; }
.kp-card--email .kp-card-cta { color: #7dd3fc; }

/* Funnel Card (Highlight) */
.kp-card--funnel {
  border-color: rgba(139,92,246,0.35);
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(99,102,241,0.08) 100%);
  box-shadow: 0 0 40px rgba(139,92,246,0.12);
}
.kp-card--funnel:hover {
  border-color: rgba(139,92,246,0.65);
  box-shadow: 0 20px 60px rgba(139,92,246,0.25);
}
.kp-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.kp-card-icon--funnel {
  background: rgba(139,92,246,0.2);
  color: #a78bfa;
}
.kp-card-badge--funnel {
  background: rgba(139,92,246,0.2);
  color: #c4b5fd;
  display: flex; align-items: center; gap: 0.3rem;
}
.kp-card-steps {
  display: flex; flex-direction: column; gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.kp-card-steps span {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 0.4rem;
}
.kp-card-steps span i { color: #a78bfa; font-size: 0.7rem; }
.kp-card-cta--funnel { color: #c4b5fd; }

/* ── STRIP ── */
.kp-strip {
  padding: 0 0 60px;
}
.kp-strip-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.kp-strip-text {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.kp-strip-text strong {
  font-size: 0.95rem; color: #fff; font-weight: 700;
}
.kp-strip-text span {
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
}
.kp-strip-tel {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00d4ff;
  font-size: 1rem; font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.kp-strip-tel:hover {
  background: rgba(0,212,255,0.18);
  border-color: rgba(0,212,255,0.5);
  transform: scale(1.03);
}
.kp-strip-tel i { font-size: 0.9rem; }

/* ── FAQ ── */
.kp-faq {
  padding: 0 0 100px;
}
.kp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.kp-faq-title {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; margin: 0 0 1.75rem;
}
.kp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kp-faq-q {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  width: 100%; background: none; border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem; font-weight: 600;
  padding: 1.1rem 0; cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.kp-faq-q:hover { color: #fff; }
.kp-faq-q i {
  font-size: 0.75rem; flex-shrink: 0;
  color: rgba(255,255,255,0.35);
  transition: transform 0.25s ease;
}
.kp-faq-item.open .kp-faq-q { color: #00d4ff; }
.kp-faq-item.open .kp-faq-q i { transform: rotate(180deg); color: #00d4ff; }
.kp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.kp-faq-item.open .kp-faq-a { max-height: 200px; padding-bottom: 1rem; }
.kp-faq-a p {
  font-size: 0.88rem; line-height: 1.65;
  color: rgba(255,255,255,0.5); margin: 0;
}

/* Trust Col */
.kp-trust-col { display: flex; flex-direction: column; gap: 1.25rem; }
.kp-person-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1rem 1.25rem;
}
.kp-person-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.kp-person-text { display: flex; flex-direction: column; gap: 0.15rem; }
.kp-person-text strong { font-size: 0.95rem; color: #fff; font-weight: 700; }
.kp-person-text span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.kp-quote {
  background: rgba(0,212,255,0.06);
  border-left: 3px solid rgba(0,212,255,0.4);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.88rem; font-style: italic;
  line-height: 1.6; color: rgba(255,255,255,0.6);
}
.kp-trust-badges {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.kp-trust-badge {
  display: flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 0.4rem 0.75rem;
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
}
.kp-trust-badge i { color: #00d4ff; font-size: 0.7rem; }
.kp-cta-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #fff; font-size: 0.95rem; font-weight: 700;
  padding: 1rem 1.5rem; border-radius: 12px;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}
.kp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(124,58,237,0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .kp-cards-grid { grid-template-columns: 1fr 1fr; }
  .kp-card--funnel { grid-column: span 2; }
  .kp-faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kp-faq-col { order: 2; }
  .kp-trust-col { order: 1; }
}
@media (max-width: 768px) {
  /* Top-Bar 36px + Header 60px (kein Gap, volle Breite) ≈ 96px + buffer */
  .kp-hero { padding: 112px 1rem 50px; }
}
@media (max-width: 640px) {
  /* Top-Bar 36px + Header 60px ≈ 104px */
  .kp-hero { padding: 104px 1rem 50px; }
  .kp-cards-grid { grid-template-columns: 1fr; }
  .kp-card--funnel { grid-column: span 1; }
  .kp-strip-inner { flex-direction: column; text-align: center; align-items: center; }
  .kp-trust-row { gap: 0.8rem; }
  .kp-cards-section { padding: 0 0 50px; }
}
@media (max-width: 480px) {
  /* Top-Bar 32px + Header 56px ≈ 88px + buffer */
  .kp-hero { padding: 96px 0.875rem 45px; }
}

/* =============================================================
   AR DIAGNOSE-FUNNEL  (neu aufgebaut)
   ============================================================= */

/* ── Overlay ── */
.ar-funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.ar-funnel-overlay.open {
  display: flex;
  animation: arFunnelFadeIn 0.22s ease;
}
@keyframes arFunnelFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Modal ── */
.ar-funnel-modal {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: auto;
  max-height: 94vh;
}

/* ── Header ── */
.ar-funnel-header {
  padding: 1rem 1.75rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0f172a;
  flex-shrink: 0;
  z-index: 2;
}
.ar-funnel-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.ar-funnel-header-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.ar-funnel-header-title i {
  color: #00d4ff;
  margin-right: 0.3rem;
}
.ar-funnel-header-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  margin-top: 0.2rem;
}
.ar-funnel-close {
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.ar-funnel-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Progress ── */
.ar-funnel-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ar-funnel-progress-wrap {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.ar-funnel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0ea5e9);
  border-radius: 99px;
  transition: width 0.4s ease;
}
.ar-funnel-progress-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

/* ── Body / Steps ── */
.ar-funnel-body {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 0;
}
.ar-funnel-step {
  display: none;
  padding: 1.4rem 1.75rem 1.1rem;
  animation: arStepIn 0.28s ease;
}
.ar-funnel-step.active {
  display: block;
}
@keyframes arStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ar-funnel-step-title {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.ar-funnel-step-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

/* ── Option Grid ── */
.ar-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ar-option-grid.cols-1 { grid-template-columns: 1fr; }
.ar-option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ar-option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Option ── */
.ar-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ar-option-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.ar-option-label:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.05);
}
.ar-option input:checked + .ar-option-label {
  border-color: #00d4ff;
  background: rgba(0,212,255,0.08);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.ar-option-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(0,212,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.ar-option input:checked + .ar-option-label .ar-option-icon {
  background: rgba(0,212,255,0.2);
}
.ar-option-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}
.ar-option-text small {
  font-size: 0.71rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
}
.ar-option input:checked + .ar-option-label .ar-option-text { color: #fff; }
.ar-option input:checked + .ar-option-label .ar-option-text small { color: rgba(255,255,255,0.55); }

/* ── Suboptions ── */
.ar-suboptions {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: arStepIn 0.25s ease;
}
.ar-suboptions.visible { display: block; }

.ar-feedback-box {
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ar-feedback-box i { color: #00d4ff; flex-shrink: 0; margin-top: 0.1rem; }

.ar-sub-question {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
}

/* ── Kontaktfelder (Step 8) ── */
.ar-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ar-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.ar-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ar-field-label {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.ar-required { color: #f87171; }
.ar-optional { font-size: 0.72rem; font-weight: 400; opacity: 0.45; }

.ar-funnel-input {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.58rem 0.9rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.ar-funnel-input::placeholder { color: rgba(255,255,255,0.22); }
.ar-funnel-input:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.ar-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin-top: 0.25rem;
}
.ar-privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: #00d4ff;
}
.ar-privacy-check a { color: #00d4ff; text-decoration: none; }
.ar-privacy-check a:hover { text-decoration: underline; }

/* ── Error ── */
.ar-funnel-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  color: #fca5a5;
  margin-top: 0.75rem;
}
.ar-funnel-error.hidden { display: none; }
.ar-funnel-error i { flex-shrink: 0; }

/* ── Footer Nav ── */
.ar-funnel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #0f172a;
  flex-shrink: 0;
  z-index: 2;
}
.ar-funnel-prev {
  background: none;
  border: none;
  color: rgba(255,255,255,0.38);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.ar-funnel-prev:hover { color: rgba(255,255,255,0.72); }

.ar-funnel-next,
.ar-funnel-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.72rem 1.75rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,212,255,0.28);
}
.ar-funnel-next:hover,
.ar-funnel-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,212,255,0.35);
}
.ar-funnel-next:disabled,
.ar-funnel-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  filter: grayscale(0.6);
  pointer-events: none;
}
.ar-funnel-footer.hidden { display: none; }

/* ── Result Screen ── */
.ar-funnel-result {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}
.ar-funnel-result.hidden { display: none; }

.ar-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ar-result-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem;
}
.ar-result-body {
  text-align: left;
  margin-bottom: 1.5rem;
}
.ar-analyse-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.ar-analyse-hebel {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ar-analyse-list {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ar-analyse-list li { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.ar-analyse-list li strong { color: #fff; display: block; margin-bottom: 0.2rem; }
.ar-analyse-list li p { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.82rem; }
.ar-analyse-phase {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.ar-analyse-closing {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}
.ar-analyse-closing strong { color: #fff; }

.ar-result-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  text-align: left;
}
.ar-strategy-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.ar-strategy-item i { color: #00d4ff; width: 16px; text-align: center; }

.ar-result-signature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.ar-signature-avatar {
  width: 44px;
  height: 44px;
  background: rgba(0,212,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ar-result-signature strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}
.ar-result-signature span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.ar-result-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .ar-funnel-modal {
    border-radius: 20px 20px 0 0;
    max-height: 100dvh;
    align-self: flex-end;
  }
  .ar-funnel-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .ar-funnel-step { padding: 1.1rem 1.1rem 0.9rem; }
  .ar-funnel-footer { padding: 0.75rem 1.1rem 1rem; }
  .ar-funnel-header { padding: 0.9rem 1.1rem 0.75rem; }
  .ar-option-grid { grid-template-columns: 1fr; }
  .ar-option-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .ar-option-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .ar-field-row { grid-template-columns: 1fr; }
  .ar-result-cta { flex-direction: column; }
  .ar-funnel-result { padding: 1.25rem 1.1rem 1.1rem; }
}

/* ── AR-FUNNEL DOTS ── */
.ar-funnel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.ar-funnel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.25s;
    flex-shrink: 0;
}
.ar-funnel-dot.active {
    background: #00d4ff;
    width: 20px;
    border-radius: 4px;
}
.ar-funnel-dot.done {
    background: rgba(0,212,255,0.4);
}

/* ── AR MIKRO-FEEDBACK / MIKRO-TEXT ── */
.ar-micro-feedback {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    padding: 0.65rem 0.9rem;
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: 8px;
    margin-top: 0.8rem;
    min-height: 1.2rem;
    transition: opacity 0.2s;
}
.ar-micro-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.ar-micro-text i {
    color: #00d4ff;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.ar-sub-q {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.65rem;
}

/* ── AR ANALYSE-HEBEL ── */
.ar-analyse-hebel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #00d4ff;
    margin: 0.75rem 0 1rem;
}
.ar-analyse-hebel i {
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   ZUSAMMENARBEIT SECTION  (.collab-*)  — Timeline Layout
   ═══════════════════════════════════════════════════════════ */
.collab-section {
  padding: 4rem 0 3.5rem;
  background: #080e1a;
  position: relative;
  overflow: hidden;
}
.collab-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Split Header ── */
.collab-split-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 99px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.collab-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.collab-split-right {
  padding-bottom: 0.25rem;
}
.collab-split-right p {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  margin: 0;
}

/* ── Timeline ── */
.collab-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.collab-row {
  display: grid;
  grid-template-columns: 60px 1px 1fr;
  gap: 0 2rem;
  position: relative;
  padding-bottom: 3.5rem;
}
.collab-row:last-child {
  padding-bottom: 0;
}

/* Nummer */
.collab-row-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
  text-align: right;
  opacity: 0.7;
}

/* Vertikale Linie */
.collab-row-line {
  background: rgba(255,255,255,0.07);
  position: relative;
}
.collab-row-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0,212,255,0.6);
  margin-top: -1px;
}
.collab-row:last-child .collab-row-line {
  background: transparent;
}

/* Content rechts */
.collab-row-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 0;
}
.collab-row-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.collab-row-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.collab-row-goal {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(0,212,255,0.8);
  line-height: 1.5;
}
.collab-row-goal i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

/* Tags rechts */
.collab-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: flex-start;
  padding-top: 0.2rem;
}
.collab-row-tags span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 99px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.collab-row:hover .collab-row-tags span {
  border-color: rgba(0,212,255,0.2);
  color: rgba(255,255,255,0.75);
  background: rgba(0,212,255,0.04);
}

/* ── Closing Banner ── */
.collab-closing {
  margin-top: 5rem;
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(14,165,233,0.03) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 24px;
  text-align: center;
}
.collab-closing-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.collab-closing-pillars > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.collab-closing-pillars > div i {
  font-size: 1.4rem;
  color: #00d4ff;
}
.collab-closing-pillars > div span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.collab-closing-plus {
  font-size: 1.2rem;
  color: rgba(0,212,255,0.4);
  font-weight: 300;
  padding-bottom: 1.2rem;
}
.collab-closing-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 2rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .collab-split-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
  .collab-row-content { grid-template-columns: 1fr; gap: 1.25rem; }
  .collab-row { grid-template-columns: 44px 1px 1fr; gap: 0 1.25rem; }
}
@media (max-width: 600px) {
  .collab-section { padding: 4.5rem 0 4rem; }
  .collab-row { grid-template-columns: 36px 1px 1fr; gap: 0 1rem; padding-bottom: 2.5rem; }
  .collab-row-num { font-size: 0.65rem; }
  .collab-closing { padding: 2rem 1.5rem; }
  .collab-closing-plus { display: none; }
  .collab-closing-pillars { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   PARALLAX CTA SECTION  (.ar-parallax-cta)
   ═══════════════════════════════════════════════════════════ */
.ar-parallax-cta {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* Parallax-Bild – höher als Section damit Verschiebung sichtbar */
.ar-parallax-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url('../img/ctaanalytics.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Dunkler Overlay */
.ar-parallax-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,12,30,0.78) 0%, rgba(0,60,90,0.62) 100%);
  z-index: 2;
}

/* Content zentriert */
.ar-parallax-cta-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  color: white;
}

/* Label */
.ar-parallax-cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.ar-parallax-cta-label i {
  color: #00d4ff;
}

/* Headline */
.ar-parallax-cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

/* Text */
.ar-parallax-cta-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* Buttons */
.ar-parallax-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.ar-cta-btn--white {
  background: #fff;
  color: #080e1a;
  border: 2px solid #fff;
}
.ar-cta-btn--white:hover {
  background: #e0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.25);
}
.ar-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.ar-cta-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .ar-parallax-cta { height: auto; min-height: 360px; padding: 3.5rem 0; }
  .ar-parallax-cta-headline { font-size: 1.75rem; }
  .ar-parallax-cta-actions { flex-direction: column; align-items: center; }
  .ar-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================================
   MOBILE OPTIMIERUNGEN — Vollständiger Scan & Fix
   ============================================================================ */

/* ─── 1. HERO: Padding & CTA-Buttons ─── */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px !important; /* statt 140px — weniger Leerraum oben */
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Subtitle border-left auf Mobile entfernen — zu viel Platz-Verlust */
  .hero-main-subtitle {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 2px solid #00d4ff;
    padding-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Trust Pills: kleiner und besser wrapping */
  .trust-pill {
    font-size: 0.72rem !important;
    padding: 0.35rem 0.85rem !important;
  }

  /* Scroll-Indicator auf Mobile ausblenden */
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 110px !important;
  }

  /* CTA Buttons auf kleinen Phones vollbreite Spalte */
  .hero-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100%;
  }

  .hero-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
  }

  /* Trust Pills auf 2er-Raster */
  .hero-trust-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  .trust-pill {
    justify-content: center;
    text-align: center;
  }
}

/* ─── 2. NAVBAR: Top-Abstand korrekt ─── */
@media (max-width: 640px) {
  /* ar-header bereits auf calc(40px + 0.4rem) — ok */
  /* Top-Bar auf kleinsten Phones kompakter */
  .top-bar {
    height: 36px;
  }
  .top-bar-inner {
    padding: 0 1rem;
  }
  .ticker-item {
    font-size: 0.72rem;
  }

  /* Hero-Offset anpassen wegen kleinerer Top-Bar */
  .ar-header {
    top: calc(36px + 0.4rem);
  }
}

/* ─── 3. PRICING GRID: Kein echter 1-Spalten-Breakpoint ─── */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    gap: 1rem !important;
  }

  .pricing-card {
    padding: 1.5rem !important;
  }
}

/* ─── 4. REVIEWS CAROUSEL: Padding & Buttons ─── */
@media (max-width: 480px) {
  .reviews-carousel-container {
    padding: 0 44px !important; /* minimal, aber Buttons passen */
  }

  .carousel-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.85rem !important;
  }

  .reviews-carousel .review-card {
    padding: 1.25rem !important;
    min-height: auto !important;
  }
}

/* ─── 5. ABOUT: Profile-Bild auf Mobile kleiner ─── */
@media (max-width: 768px) {
  .profile-wrapper {
    width: 200px !important;
    height: 200px !important;
  }
  .profile-image {
    width: 200px !important;
    height: 200px !important;
  }
}

/* ─── 6. WHATSAPP FLOAT: iPhone Home-Indicator Safe Area ─── */
.whatsapp-float-wrapper {
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .whatsapp-float-wrapper {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .whatsapp-float-wrapper {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
}

/* ─── 7. SERVICES GRID: Card-Padding auf Mobile ─── */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem !important; /* statt 4rem (--spacing-lg) */
  }

  .service-card .service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

/* ─── 8. CONTACT FORM: Inputs besser bedienbar ─── */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0 !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important; /* verhindert Auto-Zoom auf iOS */
  }
}


/* ─── 9. FOOTER: Bottom-Links wrapping ─── */
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* ─── 10. GLOBAL: Horizontal-Scroll verhindern ─── */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Alle Sections: kein Overflow-X */
section, header, footer, nav {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Touch-Targets: min. 44px für alle interaktiven Elemente */
@media (max-width: 768px) {
  a, button, [role="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Ausnahmen: kleine Icons in Text */
  p a, li a, .footer-links a, .footer-contact-list a {
    min-height: unset;
    min-width: unset;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
  }
}

/* ============================================================================
   MOBILE COMPLETE FIX — Navigation, Top-Bar, Dropdown
   ============================================================================ */

/* ── Dropdown auf Mobile nie anzeigen (nur im Mobile-Menü) ── */
@media (max-width: 1024px) {
  .ar-dropdown-menu {
    display: none !important;
  }
  .ar-nav {
    display: none !important;
  }
}

/* ── Mobile-Nav: volle Bildschirmhöhe, scrollbar ── */
@media (max-width: 768px) {
  .ar-mobile-nav {
    width: 100% !important;
    border-left: none !important;
    border-radius: 0;
  }
  .ar-mobile-inner {
    padding: 1.25rem 1rem;
  }
  .ar-mobile-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }
  .ar-mobile-list li > a {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
    min-height: 48px;
  }
  .ar-mobile-submenu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
  }
  .ar-mobile-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  .ar-btn-full,
  .ar-btn-outline-full {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
    min-height: 50px;
  }
}
/* Tablet: 769–1024px → schmalere Sidebar OK */
@media (min-width: 769px) and (max-width: 1024px) {
  .ar-mobile-nav {
    width: 320px !important;
    border-left: 1px solid rgba(255,255,255,0.07) !important;
  }
}

/* ── Ticker: kein Hover-Pause auf Touch-Geräten ── */
@media (hover: none) {
  .ticker-track:hover {
    animation-play-state: running;
  }
}

/* ── Safe-Area für iPhone-Notch ── */
@supports (padding-top: env(safe-area-inset-top)) {
  .top-bar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .ar-mobile-nav {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── Globaler Hero-Padding-Fix für alle Inline-Style-Seiten auf Mobile ── */
@media (max-width: 768px) {
  /* Leistungen, Referenzen, Über uns etc. mit Inline-Padding */
  section[style*="padding:130px"],
  section[style*="padding: 130px"],
  section[style*="padding:120px"],
  section[style*="padding: 120px"],
  section[style*="padding:140px"],
  section[style*="padding: 140px"],
  section[style*="padding:160px"],
  section[style*="padding: 160px"],
  section[style*="padding:100px"],
  section[style*="padding: 100px"] {
    padding-top: 112px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 480px) {
  section[style*="padding:130px"],
  section[style*="padding: 130px"],
  section[style*="padding:120px"],
  section[style*="padding: 120px"],
  section[style*="padding:140px"],
  section[style*="padding: 140px"],
  section[style*="padding:160px"],
  section[style*="padding: 160px"],
  section[style*="padding:100px"],
  section[style*="padding: 100px"] {
    padding-top: 96px !important;
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
}

/* ── Top-Bar: Höhe auf Mobile reduzieren ── */
@media (max-width: 768px) {
  .top-bar {
    height: 36px;
  }
  .top-bar-inner {
    padding: 0 0.875rem;
  }
  .ticker-item {
    font-size: 0.72rem;
    padding: 0 1.5rem;
  }
  .ticker-track {
    animation-duration: 25s; /* etwas langsamer als auf Desktop */
  }
}
@media (max-width: 480px) {
  .top-bar {
    height: 32px;
  }
  .ticker-item {
    font-size: 0.68rem;
    padding: 0 1.25rem;
  }
  .ticker-track {
    animation-duration: 20s;
  }
  .ticker-item::after {
    right: 0.25rem;
    font-size: 0.8rem;
  }
}

/* ============================================================================
   MOBILE COMPLETE FIX PHASE 2 — Calculator, Containers, Interactive Elements
   ============================================================================ */

/* ── Container: horizontale Paddings auf kleinen Screens ── */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ── WhatsApp Float: nicht über Scroll-to-Top ── */
@media (max-width: 768px) {
  #whatsappFloat {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  #scroll-top {
    bottom: 4.5rem;
    right: 1.25rem;
  }
  #expressFloatWrapper {
    bottom: 7.5rem;
    right: 1.25rem;
  }
}

/* ── Online-Shop Hero: 100px Padding korrigieren ── */
@media (max-width: 768px) {
  section[style*="min-height:calc(100vh - 70px)"],
  section[style*="min-height: calc(100vh - 70px)"] {
    min-height: auto !important;
    padding-top: 112px !important;
  }
}
@media (max-width: 480px) {
  section[style*="min-height:calc(100vh - 70px)"],
  section[style*="min-height: calc(100vh - 70px)"] {
    padding-top: 96px !important;
  }
}

/* ── Funnel-Modal: Schaltflächen groß genug ── */
@media (max-width: 480px) {
  .ar-option-label {
    min-height: 52px;
    padding: 0.65rem 0.85rem !important;
  }
  .ar-funnel-footer .ar-btn {
    min-height: 50px;
    font-size: 0.92rem;
  }
  .sc-btn-next,
  .sc-btn-back {
    min-height: 48px;
  }
  .wc-btn-next,
  .wc-btn-back {
    min-height: 48px;
  }
}

/* ── Inputs: font-size 16px verhindert Auto-Zoom auf iOS ── */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* ── Clamp-Hero-Pages: automatisierung, app-entwicklung, social-media etc. ── */
@media (max-width: 768px) {
  section[style*="padding:clamp(80px"],
  section[style*="padding: clamp(80px"] {
    padding-top: 112px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 480px) {
  section[style*="padding:clamp(80px"],
  section[style*="padding: clamp(80px"] {
    padding-top: 96px !important;
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }
}

/* ── Scroll-Offset fix: Header-Anker korrekt ── */
html {
  scroll-padding-top: 100px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 96px;
  }
}
