/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  /* Farben: Premium Dark Mode Palette mit Tiefe */
  --bg-color: #050505;
  --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
  --surface-1: #0a0a0a;
  --surface-2: #121212;
  --surface-3: #1c1c1c;
  --surface-transparent: rgba(18, 18, 18, 0.8);
 
  --text-main: #f2f2f2;
  --text-muted: #a0a0a0;
 
  /* Akzentfarbe & Effekte */
  --accent-color: #21e6c1;
  --accent-hover: #19cfae;
  --accent-glow: rgba(33, 230, 193, 0.3);
  --accent-gradient: linear-gradient(45deg, var(--accent-color), #00c6ff);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 130px; /* Deutlich vergrössert für das neue, riesige Logo */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --section-spacing: 120px;
 
  /* Fonts */
  --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Cursor */
  --cursor-size: 32px;
}

*, *::before, *::after {
  box-sizing: border-box;
  /* Wichtig für Custom Cursor: Standard-Cursor verstecken */
  cursor: none !important; 
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Verhindert horizontales Scrollen durch Animationen */
  overflow-x: hidden; 
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Wichtig für den Custom Cursor */
  position: relative; 
}

/* Typografie Defaults */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem 0;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================================
   2. CUSTOM CURSOR
   ========================================= */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference; /* Cooler Effekt auf Bildern/Text */
}

.cursor--small {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
}

.cursor--large {
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1px solid var(--accent-color);
  transition-delay: 0.05s; /* Leichte Verzögerung für den "Nachzieh"-Effekt */
}

/* Hover-Zustand für magnetische Links */
.cursor.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: transparent;
  border-color: var(--accent-color);
  border-width: 2px;
}
.cursor--small.hovered {
  background-color: var(--accent-color);
  transform: translate(-50%, -50%) scale(0.5);
}


/* =========================================
   3. UTILITIES & ANIMATIONS
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-spacing) 20px; 
  position: relative;
  /* Für Parallax-Effekte */
  overflow: hidden; 
}

.section-intro {
  max-width: 700px;
  margin: 1rem auto 3.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 1.5rem;
  /* Subtiler Text-Schatten für mehr Tiefe */
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- MAGISCHE SCROLL ANIMATIONEN (ERWEITERT) --- */

/* Basis-Reveal für Container */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Spezieller Reveal für Text (fließt ein) */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1),
              transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  /* Leichter Blur-Effekt beim Erscheinen */
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.reveal-text.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Parallax-Container (wird per JS gesteuert) */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Buttons: Noch dynamischer */
.cta-button, .btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px; 
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
}

.cta-button, .btn-primary {
  background: var(--accent-gradient);
  color: #050505;
  box-shadow: 0 10px 30px var(--accent-glow);
}

/* Cooler "Füll"-Effekt beim Hover */
.cta-button::before, .btn-primary::before, .btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.2);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: inherit;
}

.cta-button:hover::before, .btn-primary:hover::before, .btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-button:hover, .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(33, 230, 193, 0.4);
}

.btn-outline {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #050505;
  box-shadow: 0 10px 30px var(--accent-glow);
  transform: translateY(-5px);
}

.btn-link {
  font-weight: 600;
  padding: 0.7rem 1.5rem !important;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn-link:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 5px 15px var(--accent-glow);
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 40px; /* PADDING EXTREM REDUZIERT */
  /* Mehr Transparenz für den "schwebenden" Look */
  background: rgba(5, 5, 5, 0.2); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
  padding: 5px 40px; /* PADDING BEIM SCROLLEN BLEIBT MINIMAL */
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-img {
  height: 130px; /* LOGO MASSIV VERGRÖSSERT */
  width: auto;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.main-header.scrolled .logo-img {
  height: 90px; /* LOGO BEIM SCROLLEN IMMER NOCH SCHÖN GROSS */
}

.desktop-menu ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.desktop-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

/* Cooler Unterstrich-Effekt beim Hover */
.desktop-menu a:not(.btn-link)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.desktop-menu a:not(.btn-link):hover::after,
.desktop-menu a.is-active::after {
  width: 100%;
}

.desktop-menu a:hover, .desktop-menu a.is-active {
  color: #fff;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Burger-zu-X Animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  /* Cooler "Vorhang"-Effekt */
  clip-path: circle(0% at top right);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Subtiles Hintergrundmuster */
  background-image: radial-gradient(rgba(33, 230, 193, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mobile-nav-menu.open {
  clip-path: circle(150% at top right);
}

.mobile-nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-menu a {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

/* Gestaffeltes Einfliegen der Links */
.mobile-nav-menu.open li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav-menu.open li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-nav-menu.open li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-nav-menu.open li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-nav-menu.open li:nth-child(5) a { transition-delay: 0.5s; }

.mobile-backdrop {
  display: none; /* Nicht mehr nötig mit dem neuen Fullscreen-Menü */
}

/* =========================================
   5. HERO SECTION (ATEMBERAUBEND)
   ========================================= */
.hero-section {
  min-height: 100vh; /* Volle Höhe */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  /* Padding für den Header abziehen */
  padding-top: var(--header-height); 
  overflow: hidden;
}

/* Bewegter Hintergrund */
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 120%; /* Grösser für Parallax */
  z-index: 0;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Subtil */
  /* Leichter Scale-Effekt beim Laden */
  animation: scaleIn 10s ease-out forwards;
}

@keyframes scaleIn {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-content {
  max-width: 1000px;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem); /* Noch grösser */
  line-height: 1.1;
  margin-bottom: 2rem;
  /* Premium Text-Gradient */
  background: linear-gradient(135deg, #ffffff 30%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Text-Shadow für 3D-Effekt */
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-note {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 700;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: 2;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  position: relative;
}

.mouse-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* =========================================
   6. ROTATING SCROLL BADGE
   ========================================= */
.scroll-badge {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 140px;
  height: 140px;
  z-index: 900; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.scroll-badge:hover {
  transform: scale(1.1);
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px var(--accent-glow);
}

.scroll-badge:hover .badge-icon {
  color: #000;
}

.badge-text {
  position: absolute;
  width: 90%;
  height: 90%;
  animation: rotateSlow 20s linear infinite;
}

.badge-text svg {
  fill: #fff;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-badge:hover .badge-text svg {
  fill: #000;
}

.badge-icon {
  position: relative;
  z-index: 2;
  color: var(--accent-color);
  transform: rotate(-45deg); 
  transition: color 0.3s ease;
}

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

/* =========================================
   7. SERVICES GRID (VISUELL & DYNAMISCH)
   ========================================= */
.services-section {
  /* Subtiles Hintergrundmuster */
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 8rem; /* Viel Platz zwischen den Sektionen */
  margin-top: 4rem;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Abwechselnde Anordnung von Bild und Text */
.service-box--reverse {
  flex-direction: row-reverse;
}

.service-img-wrap {
  flex: 1;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  /* Leichter Rahmen */
  border: 1px solid var(--border-light);
}

/* Overlay für den coolen Look */
.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.service-img {
  width: 100%;
  height: 120%; /* Für Parallax */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-box:hover .service-img {
  transform: scale(1.05); /* Leichter Zoom beim Hover */
}

.service-content {
  flex: 1;
  padding: 2rem;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  /* Unterstrich-Akzent */
  position: relative;
  display: inline-block;
}

.service-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* =========================================
   8. PORTFOLIO / PROJECTS (INTERAKTIV)
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.project-item {
  position: relative;
}

.project-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  /* 3D-Effekt-Vorbereitung */
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.project-thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cooler Hover-Effekt */
.project-link:hover .project-thumb {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(5px);
}

.project-link:hover .project-overlay {
  opacity: 1;
}

.view-case {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.project-link:hover .view-case {
  transform: translateY(0);
  background: var(--accent-color);
  color: #000;
}

.project-info {
  padding: 2rem 0;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.project-note {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--surface-2);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-color);
}

.project-note strong {
  color: #fff;
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}
.project-note strong:first-child { margin-top: 0; }

/* =========================================
   9. PRICING SECTION (HOCHWERTIG)
   ========================================= */
.pricing-section {
  background: var(--surface-1);
  /* Schrägstellung für Dynamik */
  transform: skewY(-3deg);
  padding: var(--section-spacing) 0;
  margin: 5rem 0;
  position: relative;
  z-index: 1;
}

/* Inhalt wieder gerade stellen */
.pricing-section .container {
  transform: skewY(3deg);
}

/* Cooler Hintergrund-Effekt */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(33, 230, 193, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0, 198, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center; /* Zentriert die Karten vertikal */
  margin-top: 4rem;
}

.price-card {
  background: var(--surface-transparent);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Featured Card: Hervorgehoben */
.price-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(145deg, rgba(33,230,193,0.05) 0%, var(--surface-2) 100%);
  transform: scale(1.1); /* Deutlich grösser */
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 2px var(--accent-glow);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.3);
}
.price-card.featured:hover {
  transform: scale(1.1) translateY(-10px);
}

.badge-rec {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px var(--accent-glow);
}

.price-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.price-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  text-align: center;
}

.price-card ul {
  margin-bottom: 3rem;
  flex-grow: 1; 
}

.price-card ul li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: #ddd;
  font-size: 1rem;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.maintenance-box {
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed var(--border-hover);
  padding: 3rem;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Cooles Icon für die Wartungsbox */
.maintenance-box::before {
  content: '🛡️';
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.maintenance-box h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* =========================================
   10. ABOUT SECTION (PERSÖNLICH & MODERN)
   ========================================= */
.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5rem;
  justify-content: center;
}

.about-visual {
  flex: 0 0 350px;
  position: relative;
}

/* Cooler Rahmen um das Foto */
.about-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.5;
}

.about-photo-wrap {
  width: 350px;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-photo {
  width: 100%;
  height: 120%; /* Für Parallax */
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about-photo-wrap:hover .about-photo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Hervorhebung des ersten Absatzes */
.about-text p:first-of-type {
  font-size: 1.3rem;
  color: #fff;
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
}

/* =========================================
   11. PROCESS SECTION (VISUELLER FLOW)
   ========================================= */
.process-steps-wrap {
  max-width: 900px;
  margin: 4rem auto 0;
  position: relative;
}

/* Die verbindende Linie */
.process-line-container {
  position: absolute;
  top: 0;
  left: 30px; /* Positioniert durch die Marker */
  width: 4px;
  height: 100%;
  background: var(--border-light);
  z-index: 0;
}

.process-line {
  width: 100%;
  height: 0%; /* Wird per JS gefüllt */
  background: var(--accent-gradient);
  transition: height 0.5s ease;
}

.process-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-steps li {
  display: flex;
  gap: 2rem;
}

/* Der runde Marker */
.step-marker {
  flex: 0 0 64px;
  height: 64px;
  background: var(--surface-2);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Aktiver Zustand (wenn die Linie erreicht ist) */
.process-steps li.is-active .step-marker {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
  box-shadow: 0 0 30px var(--accent-glow);
}

.step-content {
  flex: 1;
  background: var(--surface-2);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.process-steps li:hover .step-content {
  transform: translateX(10px);
  border-color: rgba(255,255,255,0.2);
}

.step-title {
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =========================================
   12. FAQ DETAILS (MODERN)
   ========================================= */
.faq-section details {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-section details:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.faq-section details[open] {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.faq-section summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-section details[open] summary {
  color: var(--accent-color);
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

/* Animiertes Plus/Minus Icon */
.faq-section summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-section details[open] summary::after {
  transform: translateY(-50%) rotate(45deg); /* Plus wird zum Kreuz */
}

.faq-section p {
  padding: 0 2rem 2rem 2rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  /* Animation beim Öffnen */
  animation: slideDown 0.4s ease-out;
}

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

/* =========================================
   13. CONTACT FORM (PREMIUM)
   ========================================= */
.contact-section {
  /* Abschluss mit einem dunklen Verlauf */
  background: linear-gradient(to bottom, var(--bg-color) 0%, #000 100%);
  padding-bottom: 6rem;
}

.contact-form {
  max-width: 800px;
  margin: 4rem auto 0;
  background: var(--surface-transparent);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.form-group {
  margin-bottom: 2rem;
  position: relative; /* Für Fokus-Effekte */
}

.form-group label:not(.custom-radio) {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05); 
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Cooler Fokus-Effekt: Leuchtender Rahmen */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 20px var(--accent-glow);
}

.phone-input {
  display: flex;
}

.country-prefix {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: #aaa;
  font-size: 1rem;
  font-weight: 600;
}

.phone-input input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.interest-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media(min-width: 700px) {
  .interest-options {
    flex-direction: row;
  }
}

.custom-radio {
  flex: 1;
  position: relative;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0; width: 0;
}

.radio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}

.radio-title {
  font-size: 1rem;
}

.custom-radio:hover .radio-content {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

.custom-radio input:checked + .radio-content {
  background: var(--accent-glow);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 5px 15px var(--accent-glow);
}

.form-footer {
  margin-top: 3rem;
  text-align: center;
}

/* Haupt-CTA Button im Formular ist größer */
.main-cta {
  padding: 1.2rem 4rem;
  font-size: 1.2rem;
}

.privacy-note {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  color: #777;
}
.privacy-note a {
  color: #aaa;
  text-decoration: underline;
}
.privacy-note a:hover {
  color: var(--accent-color);
}

.honeypot {
  display: none !important;
}

/* =========================================
   14. FOOTER
   ========================================= */
.main-footer {
  background: #000;
  padding: 6rem 0 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  position: relative;
  /* Subtile Lichtkante oben */
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.footer-logo-img {
  margin: 0 auto 1.5rem;
  opacity: 0.7;
  height: 90px;
  transition: opacity 0.3s ease;
}
.footer-brand:hover .footer-logo-img {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

/* Hover-Effekt wie im Header */
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* =========================================
   15. COOKIE CONSENT
   ========================================= */
#cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 450px;
  background: var(--surface-transparent);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-size: 0.95rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(15px);
  /* Animation beim Erscheinen */
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(100px);
  opacity: 0;
}

@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent--hidden {
  display: none !important;
}

.cookie-consent__content p {
  margin-bottom: 1.5rem;
  color: #ddd;
}
.cookie-consent__content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
}

.btn-consent {
  flex: 1;
  padding: 0.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-decline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: #ccc;
}
.btn-decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-accept {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 5px 15px var(--accent-glow);
}
.btn-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--accent-glow);
}

/* =========================================
   16. MEDIA QUERIES (RESPONSIVE OPTIMIERUNG)
   ========================================= */
/* Touch-Geräte haben keinen Cursor */
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
  *, *::before, *::after {
    cursor: auto !important;
  }
}

@media (max-width: 1200px) {
  .price-card.featured {
    transform: scale(1.05);
  }
  .price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .service-box {
    gap: 3rem;
  }
  .service-img-wrap {
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .scroll-badge {
    display: none; 
  }
  
  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .desktop-menu { display: none; }
  .mobile-menu-toggle { display: flex; }
 
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .service-box, .service-box--reverse {
    flex-direction: column;
    gap: 2rem;
  }
  .service-img-wrap {
    width: 100%;
    height: 300px;
  }
  .service-content {
    padding: 1rem 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    flex-direction: column;
    gap: 1rem;
  }
  .process-line-container {
    left: 32px;
  }
  .step-marker {
    width: 50px; height: 50px;
    font-size: 1.2rem;
    flex: 0 0 50px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 80px;
  }
  
  .main-header {
    padding: 5px 20px; /* ABSTAND EXTREM REDUZIERT FÜR MOBILE */
  }
  .logo-img { height: 120px; /* LOGO MASSIV VERGRÖSSERT FÜR MOBILE */ }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .cta-button, 
  .hero-actions .btn-outline {
    width: 100%;
  }
  
  .pricing-section {
    transform: none;
    margin: 3rem 0;
  }
  .pricing-section .container {
    transform: none;
  }
  .price-card.featured {
    transform: scale(1);
  }
  .price-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }
  .about-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
  }
  .about-photo-wrap {
    width: 100%;
    height: 400px;
  }
 
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 2rem;
  }
  
  .main-cta {
    width: 100%;
  }
 
  #cookie-consent-banner {
    left: 10px; right: 10px; bottom: 10px;
    max-width: none;
    padding: 1.5rem;
  }
  .cookie-consent__actions {
    flex-direction: column;
  }
}