/* ============================================
   WORDPRESS OVERRIDES (Frontend only)
   ============================================ */
.wp-site-blocks,
.wp-block-group,
.wp-block-post-content,
.entry-content {
  padding: 0;
  margin: 0;
  max-width: none;
}

.wp-site-blocks > *,
.wp-block-post-content > *,
.entry-content > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

body.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

/* ============================================
   EDITOR OVERRIDES
   ============================================ */
.editor-styles-wrapper .reveal,
.editor-styles-wrapper .reveal-scale,
.editor-styles-wrapper .reveal-left,
.editor-styles-wrapper .reveal-right {
  opacity: 1 !important;
  transform: none !important;
}

.editor-styles-wrapper .hero {
  height: 500px;
  min-height: 400px;
}

.editor-styles-wrapper .section {
  padding: 3rem 0;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --bg-elevated: #1E1E1E;

  --accent: #B8956A;
  --accent-light: #D4AA7D;
  --accent-dark: #96774F;
  --accent-glow: rgba(184, 149, 106, 0.15);
  --accent-border: rgba(184, 149, 106, 0.25);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.35);

  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 99rem;

  --font: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 8px rgba(255,255,255,0.4), 0 0 20px var(--accent-glow);
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Hover state on interactive elements */
.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
  box-shadow: none;
}

.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

/* Hide on touch / mobile */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Hide default cursor when custom is active */
@media (hover: hover) {
  * { cursor: none !important; }
}

/* ============================================
   SCROLL ANIMATIONS (IntersectionObserver)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.heading-xl {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.heading-lg {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.heading-md {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.heading-sm {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-sm {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}

.section-dark { background: var(--bg-secondary); }

.section-leistungen {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,149,106,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(184,149,106,0.04) 0%, transparent 50%),
    var(--bg-secondary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1rem 0.85rem 1.75rem;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-primary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.btn-icon svg { width: 14px; height: 14px; }

.btn:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.btn:hover .btn-icon {
  background: var(--accent);
  color: white;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A0A0A;
}
.btn-primary .btn-icon {
  background: rgba(0,0,0,0.2);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 5rem;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 4vw, 5rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo overlaps header — bigger, negative margin pushes below nav */
.logo {
  position: relative;
  z-index: 1001;
}

.logo img {
  height: 11rem;
  width: auto;
  margin-top: 100px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform var(--transition);
}

.header.scrolled .logo img {
  height: 4.5rem;
  margin-top: 0.25rem;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav .btn { padding: 0.6rem 0.75rem 0.6rem 1.25rem; font-size: 0.7rem; }
.nav .btn-icon { width: 1.8rem; height: 1.8rem; }

/* ============================================
   HERO — Image-based with strong overlay for readability
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

/* Subtle vignette + bottom fade */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.25) 0%,
      transparent 15%,
      transparent 60%,
      rgba(10,10,10,0.6) 80%,
      rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at center,
      transparent 50%,
      rgba(10,10,10,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 5rem) 3.5rem;
}

.hero-glass {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  max-width: 620px;
}

.hero-claim {
  margin-bottom: 0.75rem;
}

.hero-title {
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-subtitle {
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ============================================
   HERSTELLER MARQUEE
   ============================================ */
.marquee-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-primary);
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
}

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

.marquee-item {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: color var(--transition);
}

.marquee-item:hover { color: var(--accent-light); }

.marquee-item::after {
  content: '·';
  color: var(--accent-dark);
  font-size: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BENTO GRID — FEATURES / USPs
   ============================================ */
/* ============================================
   ACCORDION LEISTUNGEN
   ============================================ */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.4s ease;
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}

.accordion-item.active {
  background: var(--bg-card);
}

/* Header bar — always visible */
.accordion-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: rgba(255,255,255,0.02);
}

.accordion-item.active .accordion-header:hover {
  background: transparent;
}

.accordion-number {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 200;
  color: var(--text-muted);
  min-width: 2.5rem;
  transition: color 0.4s ease;
}

.accordion-item.active .accordion-number {
  color: var(--accent);
}

.accordion-title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  flex: 1;
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
  color: var(--text-primary);
}

.accordion-item:not(.active) .accordion-title {
  color: var(--text-secondary);
}

.accordion-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.accordion-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-toggle {
  border-color: var(--accent-border);
  background: var(--accent-glow);
}

.accordion-item.active .accordion-toggle svg {
  stroke: var(--accent-light);
  transform: rotate(45deg);
}

/* Expandable body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  opacity: 0;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  opacity: 1;
}

.accordion-body-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  padding: 0 2rem 2.5rem 6.5rem;
  align-items: center;
}

.accordion-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.accordion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-image img {
  transform: scale(1.02);
}

.accordion-text {
  max-width: 420px;
}

.accordion-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.accordion-text .btn {
  margin-top: 0.5rem;
}

/* Stats bar below accordion */
.accordion-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.accordion-stat-item {
  text-align: center;
}

.accordion-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.accordion-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   PARALLAX QUOTE BREAK — hard edges, no fades
   ============================================ */
.parallax-break {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  margin: 0;
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
}

.parallax-break img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.parallax-break .parallax-overlay {
  display: none;
}

.parallax-break .parallax-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-quote {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 700px;
  padding: 2rem 3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.7), 0 4px 80px rgba(0,0,0,0.5);
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ============================================
   PROCESS — Sticky stacking cards
   ============================================ */
.process-section {
  background: var(--bg-secondary);
  padding: clamp(5rem, 10vw, 8rem) 0 0;
}

.process-header {
  text-align: center;
  padding-bottom: 3rem;
}

.process-cards {
  position: relative;
}

.process-card {
  position: sticky;
  min-height: 70vh;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
  box-shadow: 0 -10px 60px rgba(0,0,0,0.4);
}

.process-card:last-child {
  margin-bottom: 0;
}

/* Each card stacks with slight offset, creating peek effect */
.process-card:nth-child(1) { top: 5.5rem; z-index: 1; }
.process-card:nth-child(2) { top: 6.5rem; z-index: 2; }
.process-card:nth-child(3) { top: 7.5rem; z-index: 3; }
.process-card:nth-child(4) { top: 8.5rem; z-index: 4; }
.process-card:nth-child(5) { top: 9.5rem; z-index: 5; }

.process-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.process-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* No fade between image and text */
.process-card-visual::after {
  display: none;
}

.process-card-content {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}

.process-card-number {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 200;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.process-card-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-card-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

/* Alternate layout: image right on even cards */
.process-card:nth-child(even) {
  direction: rtl;
}
.process-card:nth-child(even) > * {
  direction: ltr;
}
.process-card:nth-child(even) .process-card-visual::after {
  display: none;
}

/* Color variations per card */
.process-card:nth-child(1) { background: #141210; }
.process-card:nth-child(1) .process-card-content { background: #141210; }
.process-card:nth-child(2) { background: #161412; }
.process-card:nth-child(2) .process-card-content { background: #161412; }
.process-card:nth-child(3) { background: #181614; }
.process-card:nth-child(3) .process-card-content { background: #181614; }
.process-card:nth-child(4) { background: #1A1816; }
.process-card:nth-child(4) .process-card-content { background: #1A1816; }
.process-card:nth-child(5) { background: #1C1A18; }
.process-card:nth-child(5) .process-card-content { background: #1C1A18; }

.process-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.process-card-icon svg { width: 20px; height: 20px; }

/* ============================================
   HERSTELLER — Feature spotlight slider
   ============================================ */
.hersteller-spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--border);
}

.hersteller-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hersteller-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hersteller-slide-img {
  position: absolute;
  inset: 0;
}

.hersteller-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hersteller-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 50%, transparent 100%),
    linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 40%);
}

.hersteller-slide-content {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 520px;
}

.hersteller-slide-cat {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hersteller-slide-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hersteller-slide-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Thumbnail nav */
.hersteller-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hersteller-nav-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  font-family: var(--font);
}

.hersteller-nav-item:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.hersteller-nav-item.active {
  color: #0A0A0A;
  background: var(--accent);
  border-color: var(--accent);
}

.hersteller-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 0;
}

/* ============================================
   REFERENZEN — horizontal slider
   ============================================ */
.referenzen-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.referenzen-slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.referenzen-slider-wrap::-webkit-scrollbar {
  display: none;
}

.referenzen-slider-wrap:active { cursor: grabbing; }

.referenzen-slider {
  display: flex;
  gap: 1.5rem;
  padding-right: clamp(1.5rem, 4vw, 5rem);
  scroll-snap-type: x mandatory;
}

.referenz-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(320px, 65vw, 750px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  height: clamp(380px, 50vh, 520px);
}

.referenz-img {
  position: absolute;
  inset: 0;
}

.referenz-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.referenz-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.referenz-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.75rem;
}

.referenz-tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.referenz-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  color: var(--accent-light);
  background: rgba(184,149,106,0.08);
}

.referenz-title {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.referenz-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ============================================
   TESTIMONIALS — Marquee Laufband
   ============================================ */
.testimonials-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-marquee-wrap {
  margin-top: 3rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: testimonialMarquee 45s linear infinite;
  width: max-content;
}

.testimonials-marquee-wrap:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

@keyframes testimonialMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 0 0 2px 2px;
  opacity: 0.5;
}

.testimonial-card:hover {
  border-color: var(--accent-border);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-star {
  color: var(--accent);
  font-size: 0.8rem;
}

.testimonial-quote-mark {
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card:hover .testimonial-quote {
  -webkit-line-clamp: unset;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent-light);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.testimonial-author-source {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Google rating summary below marquee */
.testimonial-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.testimonial-summary-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--accent);
  font-size: 0.75rem;
}

.testimonial-summary-score {
  color: var(--accent-light);
  font-weight: 400;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .testimonial-card { width: 320px; }
}

/* ============================================
   ABOUT — Parallax Split-Scroll
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
}

/* Sticky image column */
.about-sticky-col {
  position: relative;
  height: auto;
}

.about-sticky-inner {
  position: sticky;
  top: 5rem;
  height: calc(100vh - 7rem);
  padding: 2rem 2rem 2rem 0;
}

.about-sticky-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Floating stat card overlapping the image */
.about-float-card {
  position: absolute;
  bottom: 3.5rem;
  right: 0.5rem;
  background: rgba(22, 22, 22, 0.85);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(20px);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-float-number {
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--accent-light);
  line-height: 1;
}

.about-float-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Scrolling text column */
.about-scroll-col {
  padding: 6rem 0 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Individual chapters */
.about-chapter {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.about-chapter:first-child {
  min-height: 50vh;
  padding-top: 0;
}

.about-chapter:last-child {
  min-height: 40vh;
}

.about-chapter .heading-sm { margin-bottom: 0.75rem; }
.about-chapter .heading-lg { margin-bottom: 1.5rem; }
.about-chapter .text-body {
  margin-bottom: 1rem;
  max-width: 460px;
}

/* Stats chapter — large animated numbers */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.about-stat-block {
  padding: 2rem 0;
  border-top: 1px solid var(--accent-border);
}

.about-stat-big {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 200;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
}

.about-stat-big::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent);
  filter: blur(20px);
  pointer-events: none;
}

.about-stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 200;
  color: var(--accent);
}

.about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Divider between chapters */
.about-divider {
  width: 3rem;
  height: 1px;
  background: var(--accent-border);
  margin: 1rem 0;
}

/* CTA chapter */
.about-cta-chapter {
  min-height: auto;
  padding-bottom: 4rem;
}

.about-cta-text {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 400px;
  margin-bottom: 2rem;
}

/* ============================================
   CROSS-SELLING — image + text overlap
   ============================================ */
.crosssell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.crosssell-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1715, #0e0c09);
}

.crosssell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.crosssell-layout:hover .crosssell-image img {
  transform: scale(1.04);
}

.crosssell-text {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: clamp(6rem, 14vw, 12rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.07;
  filter: grayscale(30%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 60%),
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%);
}

.cta-section > *:not(.cta-section-bg) { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-details {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.cta-detail { text-align: center; }
.cta-detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem clamp(1.5rem, 4vw, 5rem);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo img {
  height: 3rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a, .footer-links li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-border);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.footer-social svg { width: 15px; height: 15px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.section-header-text { max-width: 550px; }
.section-header .heading-sm { margin-bottom: 0.6rem; }
.section-header .heading-lg { margin-bottom: 0.6rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .accordion-body-inner { grid-template-columns: 1fr; gap: 1.5rem; padding-left: 2rem; }
  .accordion-stats { gap: 2rem; }
  .hersteller-spotlight { min-height: 400px; }
  .hersteller-nav { gap: 0.5rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-sticky-inner {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 4/3;
    padding: 0 0 2rem 0;
  }
  .about-scroll-col { padding: 0 0 4rem 0; }
  .about-chapter { min-height: auto; padding: 1.5rem 0; }
  .about-chapter:first-child { min-height: auto; }
  .about-float-card { bottom: 2.5rem; right: 1rem; }
  .crosssell-layout { grid-template-columns: 1fr; }
  .process-card { grid-template-columns: 1fr; min-height: auto; }
  .process-card-visual { min-height: 250px; }
  .process-card:nth-child(even) { direction: ltr; }
  .process-card-visual::after {
    display: none;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .logo img { height: 5rem; margin-top: 1rem; }
  .hero { min-height: 100svh; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-bottom { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .accordion-body-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .accordion-header { padding: 1.25rem 1.5rem; gap: 1rem; }
  .accordion-number { min-width: 2rem; }
  .accordion-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hersteller-spotlight { min-height: 350px; }
  .hersteller-nav-item { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .referenz-card { flex: 0 0 85vw; height: 350px; }
  .about-float-card { right: 0.75rem; bottom: 2rem; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-card { min-height: auto; }
  .process-card-visual { min-height: 200px; }
  .process-card:nth-child(1) { top: 5rem; }
  .process-card:nth-child(2) { top: 5.5rem; }
  .process-card:nth-child(3) { top: 6rem; }
  .process-card:nth-child(4) { top: 6.5rem; }
  .process-card:nth-child(5) { top: 7rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cta-details { gap: 2rem; }
  .parallax-break { height: 40vh; }
}
