/* ============================================================
   ProCars Oldenburg — DARK variant stylesheet
   Near-black editorial look, neon red/teal duotone accents,
   glass surfaces, glow, grid + grain texture. Motion-first.
   Same markup/classes as main.css — visual layer only.
   ============================================================ */

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

:root {
  --cream:      #14171B;   /* stands in for "paper" tone, kept dark here */
  --cream-2:    #101317;
  --cream-3:    #0C0E11;
  --ink:        #F4F1EA;
  --ink-soft:   #ACA69C;
  --muted:      #6E685F;
  --red:        #FF5A3C;
  --red-deep:   #FF3D1F;
  --red-dark:   #C22A15;
  --teal:       #35E0C0;
  --teal-deep:  #1FBFA2;
  --white:      #FFFFFF;
  --bg:         #08090B;
  --bg-2:       #0D0F12;
  --card:       rgba(255, 255, 255, 0.035);
  --card-solid: #121417;
  --line:       rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red-glow:   rgba(255, 90, 60, 0.45);
  --teal-glow:  rgba(53, 224, 192, 0.35);
  --shadow-lg:  0 40px 80px -24px rgba(0, 0, 0, 0.75);
  --shadow-md:  0 18px 44px -18px rgba(0, 0, 0, 0.65);
  --radius:     18px;
  --font-body:  'Archivo', system-ui, sans-serif;
  --font-disp:  'Archivo Black', 'Archivo', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; background: var(--bg); }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- ambient background fx (fixed, behind everything) ---------- */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.bg-fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.6;
  animation: drift 22s ease-in-out infinite alternate;
}
.bg-fx .blob-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(255,90,60,0.65) 0%, rgba(255,90,60,0.32) 35%, rgba(255,90,60,0.08) 60%, transparent 82%); top: -260px; left: -220px; }
.bg-fx .blob-2 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(53,224,192,0.45) 0%, rgba(53,224,192,0.2) 35%, rgba(53,224,192,0.05) 60%, transparent 82%); top: 40%; right: -300px; animation-delay: -8s; }
.bg-fx .blob-3 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(255,90,60,0.32) 0%, rgba(255,90,60,0.14) 35%, rgba(255,90,60,0.03) 60%, transparent 82%); bottom: -300px; left: 15%; animation-delay: -14s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}
.bg-fx .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-fx .grain {
  position: absolute; inset: -10%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- display typography ---------- */
.disp {
  font-family: var(--font-disp);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
}
.disp-italic { transform: skewX(-7deg); display: inline-block; }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker::before {
  content: '';
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.section { padding: 110px 0; position: relative; z-index: 1; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  margin: 14px 0 18px;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--red) 20%, #FF9166 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 560px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-back), box-shadow 0.35s ease, background 0.25s ease, color 0.25s ease;
  isolation: isolate;
}
.btn svg { transition: transform 0.35s var(--ease-back); flex: none; }
.btn:hover svg { transform: translateX(4px); }
.btn-red {
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  box-shadow: 0 10px 30px -8px var(--red-glow), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-red::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
  transform: translateY(101%);
  transition: transform 0.35s var(--ease-out);
  border-radius: inherit;
}
.btn-red:hover::after { transform: translateY(0); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -10px var(--red-glow); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--teal); color: var(--white); transform: translateY(-2px); box-shadow: 0 0 0 1px var(--teal-glow), 0 14px 30px -14px var(--teal-glow); }
.btn-light { background: var(--white); color: var(--red-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.55); }

/* ============================================================
   Preloader
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s var(--ease-out);
}
#loader.done { transform: translateY(-100%); }
#loader .loader-logo {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--ink);
  transform: skewX(-7deg);
  animation: loaderPulse 1.1s ease infinite alternate;
}
#loader .loader-logo b { color: var(--red); font-weight: inherit; }
@keyframes loaderPulse { from { opacity: 0.55; } to { opacity: 1; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: padding 0.3s ease;
  padding: 18px 0;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled::before {
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -24px rgba(0,0,0,0.6);
}
.site-header.scrolled {
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-badge {
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 7px 14px 6px;
  transform: skewX(-7deg);
  border-radius: 4px;
  box-shadow: 0 4px 18px -4px var(--red-glow);
  transition: transform 0.3s var(--ease-back);
}
.logo:hover .logo-badge { transform: skewX(-7deg) translateY(-2px); }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none; color: var(--ink);
  transition: color 0.2s ease;
}
.header-phone:hover { color: var(--teal); }
.header-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

/* burger */
.burger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  position: relative; z-index: 1001;
}
.burger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: min(100svh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-top: 130px;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-word {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%) skewX(-7deg);
  font-family: var(--font-disp);
  font-size: clamp(6rem, 22vw, 19rem);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal-glow);
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-title {
  font-family: var(--font-disp);
  text-transform: uppercase;
  line-height: 0.88;
  position: relative;
  margin-bottom: 8px;
}
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; transform: skewX(-7deg); }
.hero-title .l1 {
  font-size: clamp(3.4rem, 12vw, 10.5rem);
  background: linear-gradient(100deg, #FF9166 0%, var(--red) 45%, var(--red-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8), 0 0 60px var(--red-glow);
  position: relative; z-index: 3;
}
.hero-title .l2 {
  font-size: clamp(2.2rem, 8vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.6);
  margin-top: -0.04em;
  position: relative;
  z-index: 1;
}
.hero-sub {
  max-width: 620px;
  margin: 22px auto 34px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* hero visual */
.hero-visual {
  position: relative;
  max-width: 900px;
  margin: 56px auto 0;
  z-index: 2;
  padding: 0 28px;
}
.hero-photo {
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line-strong);
  position: relative;
  transform: translateZ(0);
}
.hero-photo img {
  width: 100%;
  height: clamp(260px, 42vw, 430px);
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.2s linear;
  will-change: transform;
  filter: grayscale(0.15) brightness(0.82) contrast(1.12);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,0) 45%, rgba(8,9,11,0.75)),
    linear-gradient(100deg, rgba(255,90,60,0.28), rgba(53,224,192,0.16) 70%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}

/* floating chips */
.hero-chip {
  position: absolute;
  background: rgba(18, 20, 23, 0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  z-index: 4;
  animation: floaty 5s ease-in-out infinite;
}
.hero-chip small { display: block; font-weight: 600; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-chip .big { font-family: var(--font-disp); font-size: 1.15rem; line-height: 1; }
.chip-rating { top: -26px; left: -8px; animation-delay: 0s; }
.chip-years  { top: 34%; right: -14px; animation-delay: 1.4s; }
.chip-open   { bottom: 36px; left: -20px; animation-delay: 2.6s; }
.chip-star { color: #FFC24B; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* rotating badge */
.spin-badge {
  position: absolute;
  right: 34px;
  top: -58px;
  width: 116px; height: 116px;
  z-index: 5;
  text-decoration: none;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.6));
  transition: transform 0.4s var(--ease-back);
}
.spin-badge:hover { transform: scale(1.08); }
.spin-badge svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.spin-badge svg.ring text { fill: var(--ink) !important; }
.spin-badge .core {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(8,9,11,0.9), 0 0 26px var(--red-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* hero price bar */
.hero-pricebar {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-pricebar-inner {
  background: rgba(18, 20, 23, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-top: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  border-radius: 0 0 26px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.priceslot {
  padding: 26px 34px;
  display: flex; align-items: center; gap: 18px;
  position: relative;
}
.priceslot + .priceslot::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.priceslot .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.priceslot .amount {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--red);
  transform: skewX(-7deg);
  filter: brightness(1.3);
  text-shadow: 0 0 24px var(--red-glow);
}
.priceslot .desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.45; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--red-deep), var(--red-dark));
  color: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.3deg) scale(1.02);
  margin: 70px 0 0;
  box-shadow: 0 20px 44px -20px var(--red-glow);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.15rem;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee .sep { width: 9px; height: 9px; background: var(--teal); border-radius: 50%; flex: none; box-shadow: 0 0 8px var(--teal-glow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: var(--shadow-lg), 0 0 40px -12px var(--red-glow); }
.service-media { position: relative; overflow: hidden; aspect-ratio: 16 / 8.2; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.8) contrast(1.1);
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}
.service-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255,90,60,0.22), rgba(8,9,11,0.35) 60%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}
.service-card:hover .service-media img { transform: scale(1.07); filter: grayscale(0) brightness(0.9) contrast(1.1); }
.service-price {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(8,9,11,0.85);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.88rem;
  z-index: 1;
}
.service-price b { color: #FF8A6E; }
.service-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-body h3 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.35rem;
}
.service-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: 6px;
}
.service-link .arr {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease-back);
}
.service-card:hover .service-link .arr { transform: rotate(-45deg); }

/* highlight card (Bremsen) */
.service-card.highlight {
  background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: 0 0 60px -20px var(--red-glow);
}
.service-card.highlight:hover { box-shadow: var(--shadow-lg), 0 0 70px -14px var(--red-glow); }
.service-card.highlight .service-body h3 { color: var(--white); }
.service-card.highlight .service-body p { color: rgba(255, 255, 255, 0.85); }
.service-card.highlight .service-link { color: var(--white); }
.service-card.highlight .service-link .arr { background: rgba(255,255,255,0.16); color: var(--white); }
.highlight-free {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
  transform: skewX(-7deg);
  padding: 34px 28px 0;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}
.highlight-disc {
  position: absolute;
  right: -46px; top: -46px;
  width: 190px; height: 190px;
  opacity: 0.18;
  animation: spin 22s linear infinite;
}

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
  background: var(--bg-2);
  color: var(--ink);
  padding: 90px 0;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  color: var(--red);
  filter: brightness(1.3);
  transform: skewX(-7deg);
  display: inline-block;
  line-height: 1;
  text-shadow: 0 0 30px var(--red-glow);
}
.stat:nth-child(2n) .num { color: var(--teal); text-shadow: 0 0 30px var(--teal-glow); }
.stat .num sup { font-size: 0.5em; }
.stat .lbl {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   Why us
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative; z-index: 1;
}
.why-photo { position: relative; }
.why-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  position: relative;
}
.why-photo .frame img { width: 100%; height: 460px; object-fit: cover; filter: grayscale(0.15) brightness(0.82) contrast(1.1); }
.why-photo .frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(53,224,192,0.2), rgba(8,9,11,0.35) 65%);
  mix-blend-mode: hard-light;
}
.why-photo .accent-box {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  z-index: -1;
  transform: rotate(1.5deg);
  box-shadow: 0 0 40px -10px var(--teal-glow);
}
.why-stamp {
  position: absolute;
  bottom: -30px;
  right: -12px;
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-md), 0 0 30px -8px var(--red-glow);
  transform: rotate(3deg);
  font-weight: 700;
}
.why-stamp .big { font-family: var(--font-disp); font-size: 1.7rem; display: block; line-height: 1; }
.why-stamp small { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

.checklist { list-style: none; display: grid; gap: 18px; margin-top: 34px; }
.checklist li {
  display: flex; gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.3s ease;
}
.checklist li:hover { transform: translateX(8px); border-color: var(--teal); box-shadow: var(--shadow-md), 0 0 30px -14px var(--teal-glow); }
.checklist .check {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  display: grid; place-items: center;
}
.checklist b { display: block; font-size: 1.02rem; }
.checklist span.sub { color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================================
   FAQ (tabs + accordion)
   ============================================================ */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.faq-tab {
  border: 2px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-back);
}
.faq-tab:hover { transform: translateY(-2px); border-color: var(--teal); }
.faq-tab.active { background: linear-gradient(135deg, #FF6B4A, var(--red-deep)); border-color: transparent; color: var(--white); }

.faq-panel { display: none; }
.faq-panel.active { display: grid; gap: 14px; animation: fadeUp 0.45s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--red); border-left-color: var(--red); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 26px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid; place-items: center;
  font-weight: 800;
  transition: transform 0.35s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--red); border-color: var(--red); color: var(--white);
}
.faq-item .faq-body { padding: 0 26px 22px; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.reviews { background: var(--bg-2); position: relative; z-index: 1; border-top: 1px solid var(--line); }
.review-slider { position: relative; max-width: 820px; margin: 0 auto; }
.review-track { position: relative; min-height: 320px; }
.review-card {
  position: absolute; inset: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 54px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateX(60px) scale(0.97);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.review-card.active { opacity: 1; transform: none; pointer-events: auto; }
.review-stars { color: #FFC24B; letter-spacing: 4px; font-size: 1.15rem; }
.review-text { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; line-height: 1.55; }
.review-who { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.94rem; }
.review-who .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-disp);
}
.review-who small { display: block; color: var(--muted); font-weight: 600; }
.review-quote {
  position: absolute;
  top: 26px; right: 40px;
  font-family: var(--font-disp);
  font-size: 6rem;
  line-height: 1;
  color: rgba(53, 224, 192, 0.14);
  user-select: none;
}
.review-nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 32px; }
.review-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  display: grid; place-items: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-back);
  color: var(--ink);
}
.review-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--bg); transform: scale(1.08); }
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.3s var(--ease-out), background 0.3s ease;
  padding: 0;
}
.review-dot.active { width: 30px; background: var(--red); box-shadow: 0 0 12px var(--red-glow); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark) 70%);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
}
.cta-band::before { width: 420px; height: 420px; top: -220px; left: -140px; }
.cta-band::after { width: 520px; height: 520px; bottom: -260px; right: -120px; border-color: rgba(53,224,192,0.28); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  margin-bottom: 18px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}
.cta-inner p { color: rgba(255, 255, 255, 0.88); font-size: 1.08rem; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact + form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
  position: relative; z-index: 1;
}
.contact-info { display: grid; gap: 16px; margin-top: 34px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.info-card:hover { transform: translateX(6px); border-color: var(--teal); }
.info-card .ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(53, 224, 192, 0.12);
  color: var(--teal);
  display: grid; place-items: center;
}
.info-card b { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.92rem; text-decoration: none; }
.info-card a:hover { color: var(--teal); }
.hours-row { display: flex; justify-content: space-between; gap: 20px; font-size: 0.92rem; color: var(--ink-soft); }
.hours-row b { color: var(--ink); font-weight: 700; }
.hours-row .closed { color: var(--red); font-weight: 700; }
.maps-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-weight: 700; font-size: 0.88rem;
  color: var(--teal) !important;
}

/* form card */
.form-card {
  background: var(--card-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 46px 46px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.35), transparent 68%);
  pointer-events: none;
}
.form-card::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -100px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 224, 192, 0.22), transparent 68%);
  pointer-events: none;
}
.form-card h3 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.form-card .form-sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 30px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 500; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4F1EA' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: var(--card-solid); color: var(--ink); }
.field textarea { min-height: 110px; resize: vertical; }

/* file dropzone */
.dropzone {
  border: 2px dashed var(--line-strong);
  border-radius: 12px;
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.dropzone:hover, .dropzone.drag { border-color: var(--red); background: rgba(255, 90, 60, 0.06); }
.dropzone input[type='file'] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.dropzone .dz-ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.16);
  color: #FF8A6E;
  display: grid; place-items: center;
}
.dropzone .dz-text b { display: block; font-size: 0.92rem; }
.dropzone .dz-text span { font-size: 0.8rem; color: var(--ink-soft); }
.dropzone.has-file { border-style: solid; border-color: var(--teal); }
.dropzone.has-file .dz-ico { background: rgba(53, 224, 192, 0.18); color: var(--teal); }

/* booking widget inside dark form card */
.booking-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  position: relative; z-index: 1;
}
.booking-wrap .swb {
  --swb-accent: #FF5A3C;
  --swb-bg: transparent;
  --swb-text: var(--ink);
  --swb-muted: var(--ink-soft);
  --swb-line: var(--line);
  box-shadow: none !important;
  border: 0 !important;
}
.booking-wrap .swb-day:hover:not(:disabled) { background: rgba(255, 255, 255, 0.08); }
.booking-wrap .swb-error { color: #FF8A6E; }

.form-submit-row { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.form-submit-row .btn { padding: 16px 38px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--muted); max-width: 320px; line-height: 1.5; }
.form-note a { color: var(--ink-soft); }

/* success message rendered by forms.js */
.swelis-form-success {
  background: rgba(53, 224, 192, 0.12);
  border: 1px solid rgba(53, 224, 192, 0.4);
  color: #B7F3E4;
  border-radius: 14px;
  padding: 34px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  animation: fadeUp 0.5s var(--ease-out);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream-3);
  color: var(--ink-soft);
  padding: 80px 0 0;
  margin-top: 110px;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-badge { font-size: 1.15rem; }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; max-width: 300px; }
.footer-col h4 {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 0.94rem; transition: color 0.2s ease, padding-left 0.25s var(--ease-out); }
.footer-col a:hover { color: var(--teal); padding-left: 6px; }
.footer-col li { font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--ink-soft); text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--ink); }

/* back-to-top */
#toTop {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B4A, var(--red-deep));
  color: var(--white);
  border: 0;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md), 0 0 24px -8px var(--red-glow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-back), box-shadow 0.2s ease;
  z-index: 800;
}
#toTop.show { opacity: 1; transform: none; pointer-events: auto; }
#toTop:hover { box-shadow: var(--shadow-md), 0 0 34px -6px var(--red-glow); }

/* theme toggle (links between light/dark variant pages) */
.theme-toggle {
  position: fixed;
  left: 26px; bottom: 26px;
  z-index: 800;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card-solid);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-back), box-shadow 0.3s ease, border-color 0.2s ease;
}
.theme-toggle svg { flex: none; color: #FFC24B; }
.theme-toggle:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-md), 0 0 30px -10px var(--teal-glow); }
@media (max-width: 520px) { .theme-toggle span { display: none; } .theme-toggle { padding: 12px; } }

/* ============================================================
   Legal pages (impressum / datenschutz) — kept for parity
   ============================================================ */
.legal-main { max-width: 820px; margin: 0 auto; padding: 170px 28px 100px; position: relative; z-index: 1; }
.legal-main h1 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 16px 0 12px;
}
.legal-main h1 em { font-style: normal; color: var(--red); }
.legal-lead { color: var(--ink-soft); margin-bottom: 44px; max-width: 560px; }
.legal-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.legal-block:hover { border-color: rgba(255, 90, 60, 0.5); }
.legal-block h2 {
  font-family: var(--font-disp);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.legal-block h2::before {
  content: '';
  width: 22px; height: 3px;
  background: var(--red);
  flex: none;
}
.legal-block h3 { font-size: 1rem; margin: 20px 0 8px; }
.legal-block p, .legal-block li { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 8px; }
.legal-block ul { padding-left: 20px; }
.legal-block a { color: var(--teal); text-decoration: none; font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-left.in, .reveal-right.in { transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 80px; }
  .why-photo { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .main-nav {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0.5s;
    z-index: 1000;
  }
  .main-nav.open {
    transform: none;
    visibility: visible;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0s;
  }
  .main-nav a.nav-link {
    color: var(--ink);
    font-family: var(--font-disp);
    text-transform: uppercase;
    font-size: 1.6rem;
  }
  .burger { display: block; }
  .header-cta .btn { display: none; }
  .header-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-pricebar-inner { grid-template-columns: 1fr; }
  .priceslot + .priceslot::before { left: 10%; right: 10%; top: 0; bottom: auto; width: auto; height: 1px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 34px 26px 38px; }
  .review-card { padding: 36px 28px; }
  .review-track { min-height: 400px; }
  .chip-years { display: none; }
  .spin-badge { width: 92px; height: 92px; top: -44px; right: 16px; }
  .spin-badge .core { width: 46px; height: 46px; }
  .why-photo .frame img { height: 340px; }
  .legal-block { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-chip { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 9px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .bg-fx .blob { animation: none; }
}
