/* ============================================
   GLANZWERK – Köln-Pesch
   Hauptstylesheet
   ============================================ */

:root {
  --teal: #3ECFCF;
  --teal-dark: #27a8a8;
  --teal-glow: rgba(62, 207, 207, 0.18);
  --bg: #1e2730;
  --bg2: #232f3a;
  --bg3: #1a2128;
  --text: #f0f4f7;
  --muted: #8fa3b1;
  --muted2: #000a0f;
  --white: #ffffff;
  --accent-line: rgba(62, 207, 207, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(26, 33, 40, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--accent-line);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--teal);
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

/*.nav-cta {
  background: var(--teal);
  color: #1a2128 !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--teal-dark);
}*/

/* Burger Menü (für mobile Ansicht, siehe unten @media) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 6% 80px;
  overflow: hidden;
}

/* Hero-Hintergrundbild – lege dein Foto unter assets/images/hero.jpg ab */
.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/Sportwagen_Clean_Background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dunkler Overlay damit Text lesbar bleibt */
.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(26, 33, 40, 0.55) 0%,
      rgba(26, 33, 40, 0.20) 50%,
      rgba(26, 33, 40, 0.05) 100%),
    liner-gradient(180deg,
      rgba(26, 33, 40, 0.3) 0%,
      transparent 30%,
      transparent 70%,
      rgba(26, 33, 40, 0.05) 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(62, 207, 207, 0.03) 80px, rgba(62, 207, 207, 0.03) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(62, 207, 207, 0.03) 80px, rgba(62, 207, 207, 0.03) 81px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(62, 207, 207, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  /* Glas-Effekt */
  color: var(--white);
  background: rgba(19, 19, 19, 0.1);
  backdrop-filter: blur(13px);
  padding: 44px 40px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 207, 207, 0.1);
  border: 1px solid var(--accent-line);
  color: var(--teal);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .teal {
  color: var(--teal);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--bg);
  font-weight: 350;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-sub-short { display: none; }
.hero-sub-full  { display: inline; }

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg3);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(62, 207, 207, 0.25);
  display: inline-flex;
  align-items: center;
  text-align: center;
  min-width: 220px;
  box-sizing: border-box;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(62, 207, 207, 0.4);
}

.btn-outline {
  background: var(--bg);
  border: 2px solid var(--teal);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  text-align: center;
  min-width: 220px;
  box-sizing: border-box;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn1 {
  position: relative;
  z-index: 1;
  animation: glowPulse1 1.8s ease-in-out infinite;
}

.btn2 {
  position: relative;
  z-index: 1;
  animation: glowPulse2 1.8s ease-in-out infinite;
}

@keyframes glowPulse1 {
  0% {
    box-shadow: 0 0 0px rgba(62, 207, 207, 0.0);
  }

  50% {
    box-shadow: 0 0 15px rgba(62, 207, 207, 0.9);
  }

  100% {
    box-shadow: 0 0 0px rgba(62, 207, 207, 0.0);
  }
}

@keyframes glowPulse2 {
  0% {
    box-shadow: 0 0 0px rgba(62, 207, 207, 0.0);
  }

  50% {
    box-shadow: 0 0 15px rgba(199, 255, 255, 0.9);
  }

  100% {
    box-shadow: 0 0 0px rgba(62, 207, 207, 0.0);
  }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(62, 207, 207);
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 50px;
  animation: fadeUp 0.8s ease both;
}

.hero-visual {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 52%;
  max-width: 680px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  animation: fadeUp 1s 0.5s ease both;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg3);
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-icon {
  color: var(--teal);
  font-size: 1.1rem;
}

/* ── RABATT BANNER ── */
.rabatt-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #0d1a20 0%,
      #1a2f35 40%,
      #0d2a2a 100%);
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  padding: 40px 6%;
  text-align: center;
}

/* Glitzer/Partikel Effekt */
.rabatt-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(62, 207, 207, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(62, 207, 207, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(62, 207, 207, 0.20) 0%, transparent 40%);
  pointer-events: none;
}

/* Glitzer-Punkte */
.rabatt-banner::after {
  content: '✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.6rem;
  color: rgba(62, 207, 207, 0.25);
  letter-spacing: 24px;
  pointer-events: none;
}

.rabatt-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rabatt-label {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.rabatt-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.rabatt-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 9rem);
  line-height: 1;
  color: var(--teal);
  text-shadow:
    0 0 30px rgba(62, 207, 207, 0.6),
    0 0 60px rgba(62, 207, 207, 0.3),
    0 0 100px rgba(62, 207, 207, 0.15);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.rabatt-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 3px;
  text-align: left;
}

@keyframes glowPulse {

  0%,
  100% {
    text-shadow:
      0 0 30px rgba(62, 207, 207, 0.6),
      0 0 60px rgba(62, 207, 207, 0.3);
  }

  50% {
    text-shadow:
      0 0 50px rgba(62, 207, 207, 0.9),
      0 0 100px rgba(62, 207, 207, 0.5),
      0 0 150px rgba(62, 207, 207, 0.2);
  }
}

.rabatt-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 1px;
}

.rabatt-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--teal);
  color: #1a2128;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(62, 207, 207, 0.35);
}

.rabatt-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(62, 207, 207, 0.55);
}

/* ── SECTION BASE ── */
section {
  padding: 100px 6%;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── PRIVATKUNDEN ── */
.privat {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.privat-glow {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(62, 207, 207, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.privat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.privat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.privat-card-icon img {
  width: auto;
  height: 36px;
  max-width: 48px;
  object-fit: contain;
  display: block;
}

.privat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid rgba(62, 207, 207, 0.08);
  border-radius: 10px;
  padding: 24px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.privat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.privat-card:hover::after {
  transform: scaleX(1);
}

.privat-card:hover {
  background: rgba(62, 207, 207, 0.05);
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.privat-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.privat-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
}

.privat-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* Emotional quote */
.privat-quote {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
  padding: 0 4%;
}

.quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}

.privat-quote blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  color: var(--teal);
  letter-spacing: 1.5px;
  text-align: center;
  white-space: normal;
  opacity: 0.85;
}

/* ── B2B SECTION ── */
.b2b-target-icon img {
  width: auto;
  height: 32px;
  max-width: 44px;
  object-fit: contain;
  display: block;
}

.b2b {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.b2b-glow {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(62, 207, 207, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.b2b-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.b2b-targets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2b-target {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(62, 207, 207, 0.05);
  border: 1px solid rgba(62, 207, 207, 0.12);
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  border-radius: 4px;
  transition: all 0.25s;
}

.b2b-target:hover {
  background: rgba(62, 207, 207, 0.1);
  transform: translateX(6px);
}

.b2b-target-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.b2b-target h4 {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.b2b-target p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.why-item {
  position: relative;
  padding: 32px 28px;
  background: var(--bg2);
  border: 1px solid rgba(62, 207, 207, 0.08);
  border-radius: 6px;
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(62, 207, 207, 0.08);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 20px;
}

.why-item h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 8px;
}

.why-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.why-check {
  color: var(--teal);
  font-size: 1.3rem;
}

/* ── PROCESS ── */
.process {
  background: var(--bg2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 24px 40px;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent-line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--teal);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── GALERIE SECTION ── */
.galerie {
  padding: 100px 5vw;
  position: relative;
}

/* Filter Buttons */
.galerie-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gal-filter-btn {
  background: transparent;
  border: 1px solid rgba(62, 207, 207, 0.25);
  color: var(--text-muted, #8aa3a3);
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}

.gal-filter-btn:hover {
  border-color: var(--teal, #3ECFCF);
  color: var(--teal, #3ECFCF);
}

.gal-filter-btn.active {
  background: var(--teal, #3ECFCF);
  border-color: var(--teal, #3ECFCF);
  color: #0d1f1f;
}

/* Grid */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Card */
.gal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(62, 207, 207, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gal-card:hover {
  border-color: rgba(62, 207, 207, 0.35);
  transform: translateY(-4px);
}

.gal-card.hidden {
  display: none;
}

.gal-label-top {
  padding: 14px 16px 0;
}

.gal-badge {
  display: inline-block;
  background: rgba(62, 207, 207, 0.12);
  color: var(--teal, #3ECFCF);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.gal-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  margin-top: 14px;
  user-select: none;
  touch-action: pan-y;
}

/* After (rechts / unten) — volle Breite */
.gal-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gal-after img,
.gal-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Before (links) — wird per JS geclippt */
.gal-before {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0s;
}

.gal-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side Labels */
.gal-side-label {
  position: absolute;
  bottom: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

.gal-side-before {
  left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #ccc;
}

.gal-side-after {
  right: 10px;
  background: rgba(62, 207, 207, 0.85);
  color: #0d1f1f;
}

/* Handle */
.gal-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.gal-handle-line {
  flex: 1;
  width: 2px;
  background: var(--teal, #3ECFCF);
}

.gal-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal, #3ECFCF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(62, 207, 207, 0.2);
}

/* Platzhalter (wenn kein Bild vorhanden) */
.gal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  pointer-events: none;
  z-index: 1;
}

.gal-placeholder small {
  font-size: 11px;
  opacity: 0.6;
  font-family: monospace;
}

.gal-placeholder-after {
  background: linear-gradient(135deg, #0d2a2a 0%, #0f3535 100%);
  color: var(--teal, #3ECFCF);
}

.gal-placeholder-before {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  color: #666;
}

.gal-ph-icon {
  font-size: 28px;
  opacity: 0.5;
}

/* Wenn echte Bilder geladen → Platzhalter ausblenden */
.gal-after img[src]:not([src=""])~.gal-placeholder-after,
.gal-before img[src]:not([src=""])~.gal-placeholder-before {
  display: none;
}

/* Card Info Footer */
.gal-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid rgba(62, 207, 207, 0.1);
}

.gal-info-title {
  font-size: 13px;
  color: var(--text-muted, #8aa3a3);
  font-family: 'Outfit', sans-serif;
}

.gal-info-time {
  font-size: 12px;
  color: var(--teal, #3ECFCF);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid rgba(62, 207, 207, 0.08);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}

.review-stars {
  color: var(--teal);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 2px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.review-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(62, 207, 207, 0.08) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--accent-line);
  padding: 120px 6%;
}

.cta-section .section-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 20px;
}

.cta-section .section-desc {
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-item strong {
  color: var(--teal);
  font-weight: 600;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(62, 207, 207, 0.1);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.contact-link {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}


/* ── FOOTER ── */
footer {
  background: var(--bg3);
  border-top: 1px solid rgba(62, 207, 207, 0.1);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--teal);
}

.footer-logo span {
  color: var(--muted);
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links {
  display: flex;
  gap: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #0d1f1f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(62, 207, 207, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(62, 207, 207, 0.5);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero-image-bg {
    background-size: 200%;
    background-position: center 20%;
  }
}


@media (max-width: 768px) {

  .hero-image-bg {
    background-size: 180%;
    background-position: center 55%;
  }



  .hero-image-bg::after {
    background: linear-gradient(180deg,
        rgba(26, 33, 40, 0.15) 0%,
        rgba(26, 33, 40, 0.55) 35%,
        rgba(26, 33, 40, 0.85) 65%,
      );
  }

  .hero-content {
    max-width: 100%;
    margin: 0 12px;
    padding: 12px 20px;
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .hero {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-stats {
    gap: 20px;
    margin-top: 28px;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-sub-full  { display: none; }
  .hero-sub-short { display: inline; }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.5rem;
    padding: 4px 8px;
  }

  /* Burger Nav */
  .burger {
    display: flex;
    z-index: 9999;
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(49, 54, 61, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 146px 20px;
    overflow: auto;
    list-style: none;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text);
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    font-size: 0.9rem;
    padding: 12px 36px;
    color: #1a2128 !important;
  }

  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

  .rabatt-main {
    flex-direction: column;
    gap: 8px;
  }

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

  .b2b-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privat-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privat-cards {
    grid-template-columns: 1fr;
  }

  .privat-quote {
    flex-direction: column;
    gap: 16px;
    padding: 0 6%;
    margin-top: 48px;
  }

  .quote-line {
    width: 60px;
    height: 1px;
    flex: none;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .gal-filter-btn {
    font-size: 13px;
    padding: 7px 16px;
  }

  .process-steps::before {
    display: none;
  }


  .contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
    padding: 0 20px;
  }

  .contact-item {
    text-align: left;
  }

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

  .footer-links {
    position: static;
    transform: none;
  }

}