/* ===========================================
   SOSHEY - Main Stylesheet
   Modern, Light & Effect-Rich Design
   =========================================== */

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ───────────────────────────────────────── */
:root {
  /* Primärfarben */
  --soshey-gold: #E8A820;
  --soshey-gold-light: #F2C14E;
  --soshey-gold-dark: #C4891A;
  --soshey-black: #1A1A1A;
  --soshey-white: #FAFAFA;
  --soshey-gray: #4A4A4A;
  --soshey-gray-light: #E8E8E8;
  
  /* Typography */
  --font-primary: 'ff-din-web', 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.12);
  --shadow-gold: 0 8px 30px rgba(232, 168, 32, 0.3);
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1400px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);
}

/* ─────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Verhindert horizontales Scrollen */
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--soshey-black);
  background-color: var(--soshey-white);
  min-height: 100vh;
  /* Padding für fixierten Header inkl. iOS Safe Area */
  padding-top: var(--header-height);
  padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
}

/* Selection */
::selection {
  background-color: var(--soshey-gold);
  color: var(--soshey-black);
}

/* Smooth scroll for anchor links */
html:focus-within {
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────
   LOADING SCREEN - CNC FRÄS-ANIMATION
   ───────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--soshey-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 9999;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* CNC Fräs-Animation Container */
.loading-cnc {
  position: relative;
  width: 140px;
  height: 150px;
  margin-top: -30px;
}

/* Das SVG Logo mit Stroke-Animation */
.loading-logo-svg {
  width: 100%;
  height: 100%;
}

/* Äußeres Dreieck - wird gezeichnet */
.loading-logo-svg .outer-triangle {
  fill: none;
  stroke: var(--soshey-black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: drawTriangle 1.5s linear forwards;
}

/* Text "soshey" - erscheint am Ende */
.loading-logo-svg .text-path {
  fill: var(--soshey-black);
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1.6s forwards;
}

/* Inneres goldenes Dreieck - Fade-In nach Außendreieck */
.loading-logo-svg .inner-triangle {
  fill: var(--soshey-gold);
  stroke: none;
  opacity: 0;
  animation: fadeIn 0.4s ease-out 1.5s forwards;
}

/* Detail-Linien im inneren Bereich */
.loading-logo-svg .detail-lines {
  fill: none;
  stroke: var(--soshey-black);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawLine 0.3s linear forwards;
}

.loading-logo-svg .detail-line-1 { animation-delay: 1.55s; }
.loading-logo-svg .detail-line-2 { animation-delay: 1.65s; }
.loading-logo-svg .detail-line-3 { animation-delay: 1.75s; }
.loading-logo-svg .detail-line-4 { animation-delay: 1.85s; }

/* Äußeres Dreieck zeichnen */
@keyframes drawTriangle {
  to { stroke-dashoffset: 0; }
}

/* Linien zeichnen */
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Fade-In */
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Fräskopf-Indikator - folgt EXAKT dem äußeren Dreieck */
.cnc-head {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--soshey-gold);
  border-radius: 50%;
  box-shadow: 
    0 0 12px var(--soshey-gold), 
    0 0 24px rgba(232, 168, 32, 0.6),
    0 0 36px rgba(232, 168, 32, 0.3);
  animation: cncHeadPath 1.5s linear forwards;
  z-index: 10;
}

/* Fräskopf folgt dem Dreieck: oben links → oben rechts → unten Mitte → zurück */
@keyframes cncHeadPath {
  0% {
    top: 17%;
    left: 4%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  /* Obere Kante: links nach rechts (ca. 1/3 der Strecke) */
  30% {
    top: 17%;
    left: 96%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  /* Rechte Kante: nach unten Mitte (ca. 1/3 der Strecke) */
  65% {
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  /* Linke Kante: zurück nach oben links (ca. 1/3 der Strecke) */
  100% {
    top: 17%;
    left: 4%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}

/* Ladestatus-Text */
.loading-status {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soshey-gray);
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.3s forwards;
}

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

/* Fallback für einfaches Logo-Bild */
.loading-logo {
  width: 120px;
  animation: logoReveal 2s var(--ease-out-expo) forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  50% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

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

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

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--soshey-gray);
}

.text-large {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-gold {
  color: var(--soshey-gold);
}

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

/* ─────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

/* ─────────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  /* iOS Safe Area */
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--soshey-white);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* Desktop: backdrop-filter nur auf größeren Bildschirmen */
@media (min-width: 769px) {
  .header {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

.header.scrolled {
  background: rgba(250, 250, 250, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s var(--ease-out-expo);
}

.logo:hover img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--soshey-black);
  text-decoration: none;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soshey-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--soshey-gold-dark);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--soshey-black);
  transition: transform 0.3s var(--ease-out-expo), 
              opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--soshey-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), 
              visibility 0.4s;
  z-index: 999;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 1.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, 
              transform 0.4s var(--ease-out-expo),
              color 0.3s ease;
}

.mobile-nav.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .nav-link:nth-child(4) { transition-delay: 0.25s; }

/* ─────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 120px; /* Platz für Scroll-Indicator */
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: var(--space-2xl) var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(150px, 25vw, 280px);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--soshey-gray);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.9s forwards;
}

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

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

.hero-shape {
  position: absolute;
  opacity: 0.03;
}

.hero-shape-1 {
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 2px solid var(--soshey-gold);
  transform: rotate(45deg);
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--soshey-gold) 0%, transparent 60%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-30px) rotate(50deg); }
}

/* Scroll Indicator - Animiertes Dreieck mit WOW-Effekt */
/* Nur auf mobilen Geräten sichtbar */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex; /* Sichtbar auf allen Geräten */
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1.2s forwards;
  z-index: 10;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soshey-gray);
  transition: color 0.3s ease;
}

.scroll-indicator:hover span {
  color: var(--soshey-gold);
}

/* Gestaffelte Dreiecke */
.scroll-triangles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--soshey-gold);
  opacity: 0.2;
  animation: trianglePulse 2s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-triangle:nth-child(1) {
  animation-delay: 0s;
}

.scroll-triangle:nth-child(2) {
  animation-delay: 0.15s;
}

.scroll-triangle:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes trianglePulse {
  0%, 100% {
    opacity: 0.15;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

/* Hover-Effekt */
.scroll-indicator:hover .scroll-triangle {
  animation-play-state: paused;
  opacity: 1;
}

.scroll-indicator:hover .scroll-triangle:nth-child(1) {
  transform: translateY(0);
}

.scroll-indicator:hover .scroll-triangle:nth-child(2) {
  transform: translateY(2px);
}

.scroll-indicator:hover .scroll-triangle:nth-child(3) {
  transform: translateY(4px);
}

/* Glow-Effekt beim Hover */
.scroll-indicator:hover .scroll-triangle {
  filter: drop-shadow(0 0 8px rgba(232, 168, 32, 0.6));
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--soshey-gold);
  color: var(--soshey-black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--soshey-gold-dark);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

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

.btn-secondary {
  background: transparent;
  color: var(--soshey-black);
  border: 2px solid var(--soshey-black);
}

.btn-secondary:hover {
  background: var(--soshey-black);
  color: var(--soshey-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--soshey-black);
  padding: 0.75rem 0;
  border-bottom: 2px solid transparent;
}

.btn-ghost:hover {
  border-color: var(--soshey-gold);
  color: var(--soshey-gold-dark);
}

/* Button Icon */
.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.stagger.active > *:nth-child(1) { transition-delay: 0s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.active > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.active > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   SECTION HEADER
   ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soshey-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   PRODUCT CARDS
   ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: white;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--soshey-gray-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-action {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.4s ease;
}

.product-card:hover .product-action {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  padding: var(--space-md);
}

.product-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--soshey-gray);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--soshey-gold-dark);
}

/* ─────────────────────────────────────────
   ABOUT / PHILOSOPHY SECTION
   ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-image::after {
  content: '';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  right: calc(-1 * var(--space-lg));
  bottom: calc(-1 * var(--space-lg));
  border: 2px solid var(--soshey-gold);
  z-index: -1;
  opacity: 0.3;
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────
   FEATURES / VALUES
   ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--soshey-gold);
  opacity: 0.1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--soshey-gold);
  position: relative;
  top: 12px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--soshey-gray);
}

/* ─────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────── */
.cta-section {
  background: var(--soshey-black);
  color: var(--soshey-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 168, 32, 0.1) 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--soshey-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

/* ─────────────────────────────────────────
   CONTACT SECTION (Footer Contact)
   ───────────────────────────────────────── */
.contact-section {
  background: var(--soshey-white);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info > p {
  margin-bottom: var(--space-xl);
}

.contact-methods {
  margin-bottom: var(--space-xl);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--soshey-gray-light);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 168, 32, 0.1);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--soshey-gold);
}

.contact-method-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method-content a {
  color: var(--soshey-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method-content a:hover {
  color: var(--soshey-gold);
}

.contact-method-content p {
  margin: 0;
  font-size: 0.9375rem;
}

.vcard-download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: white;
  border: 2px solid var(--soshey-gray-light);
  text-decoration: none;
  color: var(--soshey-black);
  font-weight: 500;
  transition: all 0.3s var(--ease-out-expo);
}

.vcard-download:hover {
  border-color: var(--soshey-gold);
  background: rgba(232, 168, 32, 0.05);
}

.vcard-download svg {
  width: 20px;
  height: 20px;
  color: var(--soshey-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--soshey-black);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--soshey-gray-light);
  background: var(--soshey-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--soshey-gold);
  box-shadow: 0 0 0 4px rgba(232, 168, 32, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--soshey-gold);
}

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

.form-checkbox a {
  color: var(--soshey-gold-dark);
}

.form-submit {
  margin-top: var(--space-sm);
}

/* Form Messages */
.form-message {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(232, 168, 32, 0.1);
  border-left: 3px solid var(--soshey-gold);
  color: var(--soshey-black);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #DC2626;
  color: var(--soshey-black);
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  background: var(--soshey-black);
  color: var(--soshey-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

.footer-logo {
  height: 48px;
  margin-bottom: var(--space-md);
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soshey-gold);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--soshey-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--soshey-gold);
}

/* ─────────────────────────────────────────
   PARALLAX ELEMENTS
   ───────────────────────────────────────── */
.parallax-element {
  will-change: transform;
}

/* ─────────────────────────────────────────
   MAGNETIC BUTTONS
   ───────────────────────────────────────── */
.magnetic {
  transition: transform 0.3s var(--ease-out-expo);
}

/* ─────────────────────────────────────────
   PAGE TRANSITIONS
   ───────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--soshey-gold);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.page-transition.active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   PAGE HERO (Unterseiten)
   ───────────────────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.3s forwards;
}

.page-hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.5s forwards;
}

/* ─────────────────────────────────────────
   LEGAL PAGES STYLES
   ───────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  min-height: 100vh;
}

.legal-header {
  margin-bottom: var(--space-2xl);
}

.legal-header h1 {
  margin-bottom: var(--space-sm);
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--soshey-gray);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--soshey-gold);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
  color: var(--soshey-gray);
}

.legal-content a {
  color: var(--soshey-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.legal-content a:hover {
  border-color: var(--soshey-gold);
}

.legal-highlight {
  background: rgba(232, 168, 32, 0.1);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-left: 3px solid var(--soshey-gold);
}

/* ─────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-image {
    order: -1;
  }
  
  .about-content {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .logo img {
    height: 40px;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .hero {
    min-height: calc(100vh - 100px);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  
  .hero-content {
    padding: var(--space-lg);
  }
  
  .product-card {
    margin: 0 calc(-1 * var(--space-sm));
  }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Verhindert Scrollen (nur für mobile Menü) */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--soshey-gold);
  margin: var(--space-md) 0;
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────
   COOKIE BANNER - Dynamic Island Style
   ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + var(--space-xl)));
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--soshey-white);
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.4s ease,
              visibility 0.4s;
  max-width: calc(100vw - 2rem);
}

.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.cookie-icon {
  width: 18px;
  height: 18px;
  color: var(--soshey-gold);
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.cookie-text a {
  color: var(--soshey-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-text a:hover {
  color: var(--soshey-gold-light);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.cookie-btn-accept {
  background: var(--soshey-gold);
  color: var(--soshey-black);
}

.cookie-btn-accept:hover {
  background: var(--soshey-gold-light);
  transform: scale(1.05);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: none;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--soshey-white);
}

/* Responsive Cookie Banner */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: var(--space-md);
    padding: 0.75rem 1rem;
    border-radius: 24px;
    left: var(--space-sm);
    right: var(--space-sm);
    transform: translateX(0) translateY(calc(100% + var(--space-xl)));
    max-width: none;
  }
  
  .cookie-banner.active {
    transform: translateX(0) translateY(0);
  }
  
  .cookie-banner-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cookie-content {
    justify-content: center;
  }
  
  .cookie-text {
    white-space: normal;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 140px;
  }
}
