/* ============================================================
   Emin Abi Transporte — style.css
   Senior Frontend Design — Clean, Modern, Professional
   ============================================================ */

/* ---------- Color-Shift: typed CSS custom properties for smooth transitions ---------- */
@property --color-primary    { syntax: '<color>'; initial-value: #1a2332; inherits: true; }
@property --color-primary-dk { syntax: '<color>'; initial-value: #0f1620; inherits: true; }
@property --color-surface    { syntax: '<color>'; initial-value: #f7f8fa; inherits: true; }
@property --color-accent     { syntax: '<color>'; initial-value: #e5613b; inherits: true; }

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary:    #1a2332;
  --color-primary-dk: #0f1620;
  --color-accent:     #e5613b;
  --color-accent-dk:  #c94e2a;
  --color-surface:    #f7f8fa;
  --color-white:      #ffffff;
  --color-text:       #2c3544;
  --color-muted:      #6b7585;
  --color-border:     #e2e6ec;
  --color-overlay:    rgba(15, 22, 32, 0.68);

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);

  --container:  1200px;
  --section-py: clamp(64px, 8vw, 112px);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* verhindert horizontales Scrollen auf html-Ebene ohne position:fixed zu brechen */
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section { padding-block: var(--section-py); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(229,97,59,.35);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,97,59,.4);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.65);
  color: var(--color-white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--color-white);
}

.btn-ghost {
  color: var(--color-primary);
  border: 2px solid var(--color-border);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================================
   macOS Dock Navbar
   ============================================================ */

/* Outer header — transparent, full-width, pointer-events off
   so the page behind the dock remains clickable              */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  /* no background — only the dock itself has one */
}

/* ---- The Dock pill ---- */
.nav-dock {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  /* Frosted glass */
  background: rgba(16, 22, 34, 0.68);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  /* Pill shape */
  border-radius: 24px;
  /* Subtle border + inner highlight */
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .55),
    0 3px 10px  rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  pointer-events: auto;
  max-width: calc(100vw - 40px);
  transition: box-shadow .3s ease, background .3s ease;
}

.nav-dock:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, .6),
    0 4px 14px  rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

/* ---- Vertical divider ---- */
.dock-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .12);
  margin-inline: 6px;
  flex-shrink: 0;
  border-radius: 1px;
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border-radius: 18px;
  flex-shrink: 0;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  transform-origin: center bottom;
}
.nav-logo:hover {
  background: rgba(255, 255, 255, .08);
  transform: scale(1.04) translateY(-1px);
}

.nav-logo img {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: -.01em;
}

/* ---- Nav links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 16px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, transform .18s ease;
  transform-origin: center bottom;
}
.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, .11);
  transform: scale(1.1) translateY(-2px);
}
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, .1);
}

/* ---- CTA area ---- */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
  transform-origin: center bottom;
}
.nav-phone:hover {
  background: rgba(229, 97, 59, .12);
  transform: scale(1.08) translateY(-1px);
}

/* CTA button inside dock — slightly smaller + rounded */
.nav-cta .btn {
  padding: 8px 16px;
  font-size: .8rem;
  border-radius: 14px;
  transition: background var(--transition), transform .18s ease, box-shadow var(--transition);
}
.nav-cta .btn:hover {
  transform: scale(1.06) translateY(-2px);
}

/* ---- Hamburger (mobile only) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  border-radius: 12px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile dropdown — floats below the dock ---- */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
  margin-top: 10px;
  pointer-events: auto;
  /* Match dock glass style */
  background: rgba(14, 20, 30, 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  min-width: 240px;
  max-width: calc(100vw - 40px);
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.nav-mobile a:hover {
  background: rgba(255,255,255,.08);
  color: var(--color-white);
}
.nav-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border-radius: 12px;
}

/* ---------- Hero ---------- */
/* FOUC-Schutz: Elemente verstecken bis GSAP bereit ist */
.js-loaded .hero-badge,
.js-loaded .hero-title,
.js-loaded .hero-sub,
.js-loaded .hero-actions,
.js-loaded .hero-stats {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(4,8,20,.85) 0%, rgba(4,8,20,.55) 38%, rgba(4,8,20,.15) 62%, transparent 78%),
    linear-gradient(to top,    rgba(4,8,20,.88) 0%,  transparent 42%),
    linear-gradient(to bottom, rgba(4,8,20,.55) 0%,  transparent 26%),
    radial-gradient(ellipse 130% 100% at 50% 50%, transparent 20%, rgba(0,0,0,.40) 100%),
    linear-gradient(135deg, rgba(229,97,59,.10) 0%, transparent 50%);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--color-white);
  padding: clamp(90px, 13vh, 150px) clamp(20px, 5vw, 40px) clamp(32px, 5vh, 56px) clamp(48px, 8vw, 140px);
  max-width: 680px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px 7px 12px;
  background: rgba(229,97,59,.12);
  border: 1px solid rgba(229,97,59,.42);
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f8b49a;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(229,97,59,.12),
    0 4px 20px rgba(229,97,59,.14),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-badge svg {
  opacity: .8;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(1.75rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45), 0 1px 4px rgba(0,0,0,.3);
}

.hero-title .accent {
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 520px;
  margin-inline: 0;
  margin-bottom: clamp(24px, 4vh, 36px);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-label-mobile    { display: none; }
.hero-sub--mobile    { display: none; }

.hero-cta-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .73rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  text-align: center;
  max-width: 320px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: flex-start;
  margin-left: clamp(48px, 8vw, 140px);
  margin-bottom: clamp(28px, 5vh, 48px);

  /* glassmorphism card */
  background: rgba(6, 11, 20, 0.6);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 12px 48px rgba(0,0,0,.4),
    0 0 0 1px rgba(229,97,59,.1),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.hero-stat {
  text-align: center;
  color: var(--color-white);
  padding: 20px 36px;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--color-accent);
}

.hero-stat span {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  margin-top: 7px;
  display: block;
  white-space: nowrap;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.16) 25%,
    rgba(255,255,255,.16) 75%,
    transparent
  );
}

/* ── Hero CTA: Premium shimmer hover ── */
.hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
  padding: 15px 32px;
  font-size: 1rem;
  letter-spacing: .01em;
  box-shadow:
    0 6px 28px rgba(229,97,59,.52),
    0 2px 8px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition:
    transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.30s ease,
    background 0.20s ease;
}

.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,.22) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-actions .btn-primary:hover::before {
  transform: translateX(130%);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow:
    0 18px 44px rgba(229,97,59,.60),
    0 6px 16px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-actions .btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.10s;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-hint-wheel {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.scroll-hint-wheel::after {
  content: '';
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ---------- Leistungen ---------- */
.services { background: var(--color-surface); }

/* Mobile-first: single column */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

/* Tablet 640 px+: 2 cards per row (4 virtual columns), last card centred */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
  .service-card { grid-column: span 2; }
  .service-card:nth-child(5) { grid-column: 2 / 4; }
}

/* Desktop 1024 px+: 3 + 2 layout */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin-top: 56px;
  }
  .service-card           { grid-column: span 2; }
  .service-card:nth-child(4) { grid-column: 2 / 4; }
  .service-card:nth-child(5) { grid-column: 4 / 6; }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #f0956e);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.13), 0 0 0 1px rgba(229,97,59,.18);
  border-color: rgba(229,97,59,.2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(229,97,59,.08);
  border: 1px solid rgba(229,97,59,.16);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-accent);
  transition: background 0.3s ease;
}
.service-card:hover .service-icon {
  background: rgba(229,97,59,.14);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
  line-height: 1.3;
}

.service-card p {
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.68;
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card::after,
  .service-icon { transition: none; }
}

/* ---------- Über uns ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.about-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.about-badge-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.about-badge-text span {
  font-size: .75rem;
  color: var(--color-muted);
  font-weight: 500;
}

.about-text .section-subtitle { max-width: 100%; }

.about-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-body p {
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.about-note {
  font-size: .8125rem;
  color: var(--color-muted);
  opacity: .72;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-style: italic;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--color-text);
  font-weight: 500;
}

.about-highlight::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA-Buttons unter dem About-Text */
.about-cta-wrap {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Mobil-only Bild mit Badge (Desktop unsichtbar) */
.about-visual-mobile { display: none; }

/* ---------- Warum wir ---------- */
.why { background: var(--color-primary); }
.why .section-title    { color: var(--color-white); }
.why .section-label    { color: var(--color-accent); }
.why .section-subtitle { color: rgba(255,255,255,.62); }

/* Mobile-first: 1 column */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

/* Tablet 640px+: 2×2 */
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
}

/* Desktop 1024px+: 4 in a row */
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(229,97,59,.28);
  box-shadow: 0 10px 36px rgba(0,0,0,.35), 0 0 0 1px rgba(229,97,59,.12);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229,97,59,.12);
  border: 1px solid rgba(229,97,59,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: rgba(229,97,59,.2);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.68;
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card-icon { transition: none; }
}

/* ---------- Galerie ---------- */

/* Filter Tabs */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 36px;
}

.gallery-filter-btn {
  padding: 9px 20px;
  border-radius: 40px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.gallery-filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.gallery-filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(229,97,59,.3);
}

@media (max-width: 768px) {
  .gallery-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    /* hide scrollbar while keeping scroll functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter-btn { scroll-snap-align: start; }
}

/* Uniform Grid — alle Kacheln gleich groß */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--color-surface);
  aspect-ratio: 4 / 3;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,22,32,.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}
.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Hidden items (filter / load-more) */
.gal-item.hidden { display: none; }

@keyframes galFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.gal-item:not(.hidden) {
  animation: galFadeIn 0.32s cubic-bezier(.4,0,.2,1) both;
}
@media (prefers-reduced-motion: reduce) {
  .gal-item:not(.hidden) { animation: none; }
}

/* Load more button */
.gallery-load-more {
  text-align: center;
  margin-top: 36px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 12, 20, .94);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-content {
  max-width: min(90vw, 1100px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.lightbox-caption {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--color-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1001;
}
.lightbox-close:hover { background: rgba(229,97,59,.5); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--color-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1001;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.2); }

/* Responsive gallery */
@media (max-width: 1024px) { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- Ablauf ---------- */
.process { background: var(--color-surface); }

/* Mobile-first: 1 column */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
  position: relative;
}

/* Tablet 640px+: 2×2 */
@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 52px;
  }
}

/* Desktop 1024px+: 4-column timeline */
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 30px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 1px;
    background: linear-gradient(90deg,
      rgba(229,97,59,.06),
      rgba(229,97,59,.28) 20%,
      rgba(229,97,59,.28) 80%,
      rgba(229,97,59,.06)
    );
    pointer-events: none;
  }
}

.step {
  text-align: center;
  padding: 0 16px 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid rgba(229,97,59,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--color-surface), 0 4px 16px rgba(229,97,59,.16);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.step:hover .step-number {
  background: rgba(229,97,59,.04);
  box-shadow: 0 0 0 5px var(--color-surface), 0 4px 22px rgba(229,97,59,.28);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step p {
  font-size: .875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .step-number { transition: none; }
}

/* ---------- Vertrauen / Trust ---------- */
.trust { background: var(--color-primary); }
.trust .section-label    { color: var(--color-accent); }
.trust .section-title    { color: var(--color-white); }
.trust .section-subtitle { color: rgba(255,255,255,.62); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 44px 24px 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.trust-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(229,97,59,.25);
}

/* ---------- Odometer (Orivis-Pattern) ---------- */
.odo-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
  font-size: clamp(3rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.odo-counter {
  display: inline;
}

.odo-suffix {
  display: inline;
  font-size: .85em;
  letter-spacing: 0;
}

.trust-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.trust-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .odo-strip  { transition: none; }
  .trust-item { transition: none; }
}

/* ---------- Google Bewertungen ---------- */
.reviews-section { background: var(--color-surface); }

/* Rating Summary Bar */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin: 44px 0 36px;
  box-shadow: var(--shadow-sm);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -.03em;
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}
.reviews-stars svg {
  width: 24px;
  height: 24px;
  color: #FBBC05;
}

.reviews-count {
  font-size: .875rem;
  color: var(--color-muted);
  font-weight: 500;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.reviews-google-link:hover {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,.15);
}

/* ---- Reviews Carousel ---- */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.reviews-viewport {
  overflow: hidden;
  flex: 1;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Nav arrows */
.reviews-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(16,22,34,.55);
  backdrop-filter: blur(12px);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 2;
}
.reviews-nav:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}
.reviews-nav:disabled {
  opacity: .25;
  cursor: not-allowed;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,35,50,.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s, width .25s;
}
.reviews-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

/* Review card in carousel */
.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1023px) {
  .review-card { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 639px) {
  /* Karte füllt den Viewport exakt — JS-Offset stimmt dann 1:1 */
  .review-card { flex: 0 0 100%; }

  /* Wrapper: kein seitlicher Gap; Platz unten für die Pfeil-Zeile */
  .reviews-carousel-wrapper {
    gap: 0;
    padding-bottom: 58px;
  }

  /* Pfeile: absolut am Boden des Wrappers, links/rechts von der Mitte */
  .reviews-nav {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 8px;
    transform: none;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border: none;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
  }
  .reviews-nav:hover:not(:disabled),
  .reviews-nav:active:not(:disabled) {
    transform: none;
    background: var(--color-accent);
    border-color: transparent;
    color: #fff;
  }

  /* ◀ links von der Mitte, ▶ rechts davon — symmetrisch */
  .reviews-prev { right: calc(50% + 6px); left: auto; }
  .reviews-next { left: calc(50% + 6px); right: auto; }

  /* Maske entfernen */
  .reviews-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #2c4a6e);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}
.reviewer-name {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.review-date {
  font-size: .75rem;
  color: var(--color-muted);
  font-weight: 400;
}

.review-google-icon {
  flex-shrink: 0;
  opacity: .7;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.rev-star {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.review-text {
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.review-card--negative {
  border-color: rgba(220, 38, 38, .25);
  background: rgba(220, 38, 38, .04);
}

.owner-reply {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  font-size: .875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.owner-reply-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: .8125rem;
  color: var(--color-accent);
}

.owner-reply-header strong {
  color: var(--color-primary);
  font-weight: 600;
}

.owner-reply--dispute {
  border-left-color: #dc2626;
}

.owner-reply--dispute .owner-reply-header {
  color: #dc2626;
}

/* ---------- CTA Banner ---------- */
/* ─── Premium CTA ──────────────────────────────────────────────────────────── */
.cta-premium {
  position: relative;
  padding: 130px 0 120px;
  background: var(--color-primary-dk);
  overflow: hidden;
  text-align: center;
}

.cta-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-premium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.cta-premium-glow--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(229,97,59,.28) 0%, transparent 70%);
  top: -160px; left: -120px;
}

.cta-premium-glow--2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(229,97,59,.18) 0%, transparent 70%);
  bottom: -120px; right: -80px;
}

.cta-premium-glow--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,160,122,.12) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-premium-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(229,97,59,.1);
  border: 1px solid rgba(229,97,59,.3);
  color: #f4a07a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.cta-premium-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.cta-premium-title span {
  background: linear-gradient(120deg, var(--color-accent) 0%, #f4a07a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-premium-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,.48);
  max-width: 500px;
  margin: 0 auto 44px;
}

.cta-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c9431f 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -.01em;
  box-shadow: 0 6px 28px rgba(229,97,59,.4), 0 1px 6px rgba(0,0,0,.5);
  transition: transform .22s ease, box-shadow .22s ease;
  margin-bottom: 40px;
}

.cta-premium-btn:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 12px 44px rgba(229,97,59,.6), 0 2px 10px rgba(0,0,0,.5);
}

.cta-premium-btn svg {
  transition: transform .22s ease;
  flex-shrink: 0;
}

.cta-premium-btn:hover svg {
  transform: translateX(5px);
}

.cta-premium-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.cta-premium-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}

.cta-premium-trust li svg {
  color: var(--color-accent);
  opacity: .8;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dk);
  color: rgba(255,255,255,.6);
  padding-block: 60px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  max-width: 260px;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  display: block;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--color-white); }
.footer-col ul a::before {
  content: '›';
  color: var(--color-accent);
  font-weight: 700;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item + .footer-contact-item { margin-top: 12px; }

.footer-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--color-accent);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--color-accent); }

.footer-credit {
  text-align: center;
  padding: 12px 0 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--color-accent); }

/* ---------- Form elements (Kontakt) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--color-primary-dk);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,97,59,.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,97,59,.13) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-label {
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  padding-block: var(--section-py);
}

.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--color-white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-white);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(229,97,59,.18);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 3px;
}

.contact-info-item span {
  font-size: .9375rem;
  color: var(--color-white);
  font-weight: 500;
}

.contact-info-card a {
  color: inherit;
  transition: opacity var(--transition);
}
.contact-info-card a:hover { opacity: .7; }

.contact-info-divider {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-info-divider p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-group label .req {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229,97,59,.12);
}

.form-control.error-field {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

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

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7585' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  display: none;
  font-size: .8rem;
  color: #e53e3e;
  margin-top: 5px;
}
.form-error.visible { display: block; }

.form-notice {
  background: rgba(229,97,59,.07);
  border: 1px solid rgba(229,97,59,.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--color-text);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.form-notice-icon { flex-shrink: 0; }

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.01em;
  margin-bottom: 28px;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  gap: 10px;
  margin-top: 4px;
}
.btn-label-short { display: none; }
@media (max-width: 520px) {
  .btn-label-long  { display: none; }
  .btn-label-short { display: inline; }
}

.form-privacy-note {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--color-muted);
  line-height: 1.6;
  text-align: center;
}
.form-privacy-note a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-banner {
  display: none;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .875rem;
  color: #c53030;
  margin-bottom: 20px;
  font-weight: 500;
}
.error-banner.visible { display: block; }

/* ============================================================
   Lead-Konfigurator (Kontaktformular, mehrstufig)
   ============================================================ */

/* ---------- Container ---------- */
.lead-configurator {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ---------- Fortschrittsanzeige ---------- */
.lead-progress {
  position: relative;
  display: flex;
}

.lead-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.lead-progress::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 6%;
  height: 2px;
  width: var(--progress-fill, 0%);
  background: var(--color-accent);
  z-index: 0;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}

.lead-progress-step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-muted);
  line-height: 1.3;
}

.lead-progress-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-muted);
  font-size: .8125rem;
  font-weight: 700;
  transition: var(--transition);
}

.lead-progress-step[aria-current="step"],
.lead-progress-step.is-active {
  color: var(--color-primary);
}
.lead-progress-step[aria-current="step"] span,
.lead-progress-step.is-active span {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(229,97,59,.32);
}

.lead-progress-step.is-complete { color: var(--color-primary); }
.lead-progress-step.is-complete span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ---------- Steps ---------- */
.lead-step {
  display: flex;
  flex-direction: column;
}

.lead-step[hidden],
.lead-step.is-hidden {
  display: none;
}

.lead-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

.lead-step h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* ---------- Fieldsets, Legends, Radio- & Checkbox-Gruppen ---------- */
.lead-configurator fieldset {
  border: none;
  padding: 0;
  margin: 0 0 22px;
}
.lead-configurator fieldset:last-child { margin-bottom: 0; }

.lead-configurator legend {
  display: block;
  width: 100%;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: .02em;
  margin-bottom: 10px;
  padding: 0;
}

.lead-configurator legend .req {
  color: var(--color-accent);
  margin-left: 2px;
}

.lead-configurator label:has(> input[type="radio"]):not(.service-card),
.lead-configurator label:has(> input[type="checkbox"]):not(.service-card) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 0;
  margin: 0 20px 8px 0;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.lead-configurator input[type="radio"],
.lead-configurator input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- Service-Karten (Schritt: Art der Leistung) ---------- */
.lead-configurator fieldset:has(.service-card) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.lead-configurator fieldset:has(.service-card) legend,
.lead-configurator fieldset:has(.service-card) .form-error {
  grid-column: 1 / -1;
}

.lead-configurator .service-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 20px 22px;
  margin: 0;
  cursor: pointer;
}

/* Reset: die .service-card-Spalten-Regeln aus dem Leistungen-Grid (index.html)
   sind unskopiert und würden sonst per :nth-child() in dieses Auto-Fit-Grid
   durchschlagen. Höhere Spezifität via "fieldset" stellt automatisches
   Spaltenverhalten zuverlässig wieder her, unabhängig vom Viewport. */
.lead-configurator fieldset .service-card,
.lead-configurator fieldset .service-card:nth-child(n) {
  grid-column: auto;
}

.lead-configurator .service-card input[type="radio"] {
  grid-column: 1;
  grid-row: 1 / 3;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}
.lead-configurator .service-card input[type="radio"]::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: scale(0);
  transition: transform .2s ease;
}
.lead-configurator .service-card input[type="radio"]:checked::after {
  transform: scale(1);
}
.lead-configurator .service-card input[type="radio"]:checked {
  border-color: var(--color-accent);
}

.lead-configurator .service-card strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.lead-configurator .service-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.lead-configurator .service-card:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229,97,59,.15);
}

.lead-configurator .service-card:has(input:checked),
.lead-configurator .service-card.is-selected {
  border-color: var(--color-accent);
  background: rgba(229,97,59,.04);
  box-shadow: 0 8px 28px rgba(229,97,59,.16), 0 0 0 1px rgba(229,97,59,.25);
}

/* ---------- Conditional Fields (Schritt: Leistungsdetails) ---------- */
.conditional-fields {
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}
.conditional-fields[hidden] { display: none; }
.conditional-fields > *:last-child { margin-bottom: 0; }

/* Datei-Upload */
.lead-configurator input[type="file"].form-control {
  padding: 10px 14px;
  font-size: .875rem;
  cursor: pointer;
}
.lead-configurator input[type="file"].form-control::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  font-size: .8125rem;
  cursor: pointer;
  transition: var(--transition);
}
.lead-configurator input[type="file"].form-control::file-selector-button:hover {
  background: var(--color-border);
}

.conditional-fields .form-privacy-note,
.lead-step .form-group .form-privacy-note {
  text-align: left;
  margin-top: 8px;
}

/* ---------- Adressblöcke (Schritt: Start- und Zieladresse) ---------- */
.lead-step [data-address] {
  margin-bottom: 28px;
}
.lead-step [data-address]:last-child { margin-bottom: 0; }

.destination-address-group {
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
}

/* Länge / Breite / Höhe — dreispaltige Zeile statt Standard-2-Spalten */
@media (min-width: 769px) {
  .lead-configurator .form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Zusammenfassung (Schritt: Absenden) ---------- */
.form-summary {
  padding: 20px 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  font-size: .9rem;
  color: var(--color-text);
  line-height: 1.7;
}
.form-summary:empty::before {
  content: 'Ihre Angaben werden hier zusammengefasst, bevor Sie die Anfrage absenden.';
  font-style: italic;
  color: var(--color-muted);
}
.form-summary p { margin-bottom: 8px; }
.form-summary p:last-child { margin-bottom: 0; }
.form-summary strong { color: var(--color-primary); }

/* Befüllte Zusammenfassung (Gruppen via JS aus collectFormData()/renderSummary()) */
.form-summary .summary-group { margin-bottom: 20px; }
.form-summary .summary-group:last-child { margin-bottom: 0; }
.form-summary .summary-group h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.form-summary dl { margin: 0; }
.form-summary dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
}
.form-summary dl > div:last-child { border-bottom: none; }
.form-summary dt {
  color: var(--color-muted);
  font-weight: 500;
  flex-shrink: 0;
}
.form-summary dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}
.form-summary-empty {
  font-style: italic;
  color: var(--color-muted);
  margin: 0;
}

/* ---------- Aktionen / Navigation ---------- */
.lead-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.lead-actions .form-submit-btn {
  width: auto;
  flex: 1;
  margin-top: 0;
}

.lead-actions [disabled] {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Accessibility: Focus-Zustände ---------- */
.lead-configurator .btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.lead-configurator input[type="radio"]:focus-visible,
.lead-configurator input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Honeypot (Spam-Schutz): für Menschen unsichtbar, bleibt aber im DOM für
   einfache Bots befüllbar. Eindeutig per .form-group[aria-hidden="true"]
   skopiert — keine andere .form-group nutzt aria-hidden im Markup. */
.lead-configurator .form-group[aria-hidden="true"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   PREMIUM UX — Service Card Icons
   ============================================================ */

.lead-configurator .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px 18px;
  position: relative;
}

.lead-configurator .service-card input[type="radio"] {
  position: absolute;
  top: 18px;
  right: 18px;
  grid-column: unset;
  grid-row: unset;
  margin-top: 0;
}

.lead-configurator .service-card strong {
  grid-column: unset;
  grid-row: unset;
  font-size: .9375rem;
}

.lead-configurator .service-card p {
  grid-column: unset;
  grid-row: unset;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(229,97,59,.08);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.lead-configurator .service-card:hover .service-card-icon {
  background: rgba(229,97,59,.14);
  transform: translateY(-1px);
}

.lead-configurator .service-card:has(input:checked) .service-card-icon,
.lead-configurator .service-card.is-selected .service-card-icon {
  background: rgba(229,97,59,.18);
  color: var(--color-accent);
}

/* ============================================================
   PREMIUM UX — Animierte Step-Transitions
   ============================================================ */

@keyframes stepSlideInRight {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes stepSlideInLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0);     }
}

#contactForm[data-nav-dir="forward"]  .lead-step.active { animation: stepSlideInRight .32s cubic-bezier(.4,0,.2,1) both; }
#contactForm[data-nav-dir="backward"] .lead-step.active { animation: stepSlideInLeft  .32s cubic-bezier(.4,0,.2,1) both; }

/* ============================================================
   PREMIUM UX — Floating Labels
   ============================================================ */

.form-group--float {
  position: relative;
  margin-bottom: 22px;
}

.form-group--float input.form-control {
  padding-top: 22px;
  padding-bottom: 8px;
}

.form-group--float label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  margin: 0;
  font-size: .9375rem;
  font-weight: 400;
  color: var(--color-muted);
  pointer-events: none;
  transition: top .18s ease, font-size .18s ease, font-weight .18s ease, color .18s ease, transform .18s ease;
  line-height: 1;
  white-space: nowrap;
}

.form-group--float input:focus ~ label,
.form-group--float input:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: translateY(0);
  font-size: .73rem;
  font-weight: 600;
  color: var(--color-accent);
}

.form-group--float input.error-field ~ label {
  color: #e53e3e;
}

.form-group--float .form-error {
  margin-top: 4px;
}

/* ============================================================
   PREMIUM UX — Wunschtermin
   ============================================================ */

.wunschtermin-group {
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(229,97,59,.04);
  border: 1.5px dashed rgba(229,97,59,.28);
  border-radius: var(--radius-md);
}

.wunschtermin-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wunschtermin-optional {
  font-weight: 400;
  color: var(--color-muted);
  font-size: .75rem;
}

/* ============================================================
   PREMIUM UX — Trust Strip
   ============================================================ */

.photo-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(230, 126, 34, 0.07);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}
.photo-hint svg { flex-shrink: 0; color: var(--color-accent); }

.form-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.form-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.form-trust-strip svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ============================================================
   PREMIUM UX — Success-Animation
   ============================================================ */

.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px 24px;
  background: #f0faf4;
  border: 1px solid #b7e4c7;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.success-anim { line-height: 0; }

.success-checkmark {
  width: 64px;
  height: 64px;
  display: block;
}

.success-circle {
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
}

.success-check {
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
}

#formSuccessMessage:not([hidden]) .success-circle {
  animation: drawSuccessCircle .55s ease-in-out .1s forwards;
}

#formSuccessMessage:not([hidden]) .success-check {
  animation: drawSuccessCheck .3s ease-in-out .65s forwards;
}

@keyframes drawSuccessCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawSuccessCheck {
  to { stroke-dashoffset: 0; }
}

.success-text {
  font-size: .9rem;
  font-weight: 600;
  color: #1a6b34;
  line-height: 1.6;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-section .section-title    { color: var(--color-white); }
.faq-section .section-label    { color: var(--color-accent); }
.faq-section .section-subtitle { color: rgba(255,255,255,.62); }

.faq-section .faq-question { color: rgba(255,255,255,.9); }
.faq-section .faq-item     { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.faq-section .faq-item[open] { border-color: var(--color-accent); }
.faq-section .faq-answer   { color: rgba(255,255,255,.62); }
.faq-section .faq-answer a { color: var(--color-accent); }
.faq-section .faq-answer strong { color: rgba(255,255,255,.85); }

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--color-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--color-accent); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.faq-answer p { margin: 0 0 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.faq-cities {
  font-size: 0.85rem;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer   { padding: 0 18px 16px; }
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 780px;
  margin-inline: auto;
  padding-block: 80px;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.legal-content .legal-date {
  font-size: .875rem;
  color: var(--color-muted);
  margin-bottom: 48px;
  display: block;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 20px 0 8px;
}

.legal-content p,
.legal-content li {
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.placeholder {
  background: #fffbeb;
  border: 1.5px dashed #f6ad55;
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  font-size: .875rem;
  color: #c05621;
  font-weight: 600;
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ---------- Scroll Progress Indicator ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1000;
  background: rgba(255,255,255,.08);
}

.scroll-progress-bar {
  height: 100%;
  width: 100%;                  /* immer volle Breite */
  transform: scaleX(0);         /* JS setzt scaleX(0–1) */
  transform-origin: left center;
  background: linear-gradient(90deg, var(--color-accent), #f0956e);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(229,97,59,.6);
  /* kein transition — GPU-Update direkt per rAF */
  will-change: transform;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

/* ---------- Floating Action Buttons (FAB) ---------- */
.fab-group {
  position: fixed;
  left: 24px;
  bottom: 32px;
  z-index: 810;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* start hidden, JS adds .fab-visible */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.fab-group.fab-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* When near footer, slide back out */
.fab-group.fab-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

/* Single FAB button — collapsed = perfect circle */
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* collapsed: square → perfectly centered icon */
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  overflow: hidden;
  transition: width .3s ease, border-radius .3s ease, gap .3s ease,
              padding .3s ease, transform .2s ease, box-shadow .2s ease;
}

/* SVG icon — always centered */
.fab svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Label — hidden until hover */
.fab-label {
  font-size: .8125rem;
  font-weight: 600;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .3s ease, opacity .25s ease, margin-left .3s ease;
  margin-left: 0;
}

/* Hover: pill expands, label appears */
.fab:hover {
  width: auto;
  min-width: 60px;
  padding: 0 20px 0 16px;
  border-radius: 40px;
  gap: 10px;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}
.fab:hover .fab-label {
  max-width: 180px;
  opacity: 1;
}

/* Phone FAB */
.fab-phone {
  background: var(--color-primary);
  border: 1.5px solid rgba(255,255,255,.15);
}
.fab-phone:hover {
  background: #253447;
  box-shadow: 0 10px 32px rgba(26,35,50,.5);
}

/* WhatsApp FAB */
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover {
  background: #1db954;
  box-shadow: 0 10px 32px rgba(37,211,102,.4);
}

/* Mobile */
@media (max-width: 600px) {
  .fab-group { left: 16px; bottom: 20px; gap: 8px; }
  .fab { width: 54px; height: 54px; }
  .fab svg { width: 24px; height: 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    gap: 48px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(48px, 10vw, 72px); }

  /* ── Dock: nur Logo + Hamburger ── */
  .nav-links,
  .nav-cta,
  .nav-phone,
  .dock-sep { display: none; }

  .nav-dock {
    padding: 6px 10px;
    border-radius: 30px;
    background: rgba(7, 23, 48, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-toggle { display: flex; }

  /* ── Mobile Nav Dropdown: bessere Touch-Targets ── */
  .nav-mobile a {
    padding: 13px 14px;
    font-size: .95rem;
  }

  /* ── Header Safe-Area oben (iPhone Notch) ── */
  .site-header {
    top: max(16px, env(safe-area-inset-top, 16px));
  }

  /* ════════════════════════════════════════════
     HERO — MOBILE SPLIT LAYOUT
     Badge + H1 oben im dunklen Himmel.
     Van frei und prominent in der Mitte.
     Subtitle + CTA + Trust-Cards unten.
     ════════════════════════════════════════════ */

  .hero {
    min-height: 100svh;
  }

  /* Unten stark dunkel (Text-Zone), Mitte klar (Van frei), oben dezent dunkel (Badge) */
  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(2, 8, 20, 0.98)  0%,
        rgba(2, 8, 20, 0.92) 18%,
        rgba(2, 8, 20, 0.68) 34%,
        rgba(2, 8, 20, 0.20) 52%,
        rgba(2, 8, 20, 0)    65%
      ),
      linear-gradient(
        to bottom,
        rgba(2, 8, 20, 0.72)  0%,
        rgba(2, 8, 20, 0.32) 10%,
        rgba(2, 8, 20, 0.06) 20%,
        rgba(2, 8, 20, 0)    30%
      ),
      radial-gradient(
        ellipse 60% 22% at 50% 50%,
        rgba(255, 110, 55, 0.08)  0%,
        rgba(255, 110, 55, 0)    100%
      );
  }

  /* Van minimal höher — mehr Pflaster unten sichtbar, dunklere Zone für Text */
  .hero-media img,
  .hero-media video {
    object-position: 50% 40%;
  }

  /* ── Content: vollflächig absolut, Flex-Spalte mit Top/Bottom-Split ── */
  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* Oben: unter der Navbar bleiben */
    padding-top: max(88px, calc(env(safe-area-inset-top, 16px) + 68px));
    padding-left: 24px;
    padding-right: 24px;
    /* Unten: Platz für Stats-Leiste lassen */
    padding-bottom: max(108px, calc(env(safe-area-inset-bottom, 0px) + 96px));
    max-width: none;
    width: 100%;
    z-index: 2;
  }

  /* ── Badge: absolut oben links — aus dem Flex-Flow heraus ── */
  .hero-badge {
    position: absolute;
    top: max(110px, calc(env(safe-area-inset-top, 16px) + 90px));
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    max-width: calc(100vw - 48px);
    height: 28px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(255, 103, 48, 0.55);
    background: rgba(6, 14, 28, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 18px rgba(255, 103, 48, 0.10);
    z-index: 3;
  }

  .hero-badge svg {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    opacity: 0.78;
  }

  /* ── H1: dominant, im unteren Drittel verankert via margin-top:auto ── */
  .hero-title {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 0.97;
    font-weight: 900;
    letter-spacing: -.05em;
    color: #fff;
    max-width: 100%;
    margin-top: auto;   /* Kernmechanik: verankert H1 + alles Folgende unten */
    margin-bottom: 10px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.58);
    flex-shrink: 0;
  }

  /* Orange Accent-Zeile "aus einer Hand" */
  .hero-title .accent {
    display: block;
    margin-top: 2px;
    color: #ff6a3d;
    text-shadow: 0 8px 26px rgba(255, 92, 44, 0.24);
  }

  /* ── Desktop-Subtitle auf Mobile verstecken ── */
  .hero-sub:not(.hero-sub--mobile) { display: none; }

  /* ── Mobile-Subtitle: prägnanter Zweizeiler, kein Clamp nötig ── */
  .hero-sub--mobile {
    display: block;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1.50;
    font-weight: 500;
    letter-spacing: -.008em;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.52);
    max-width: 100%;
    margin-inline: 0;
    margin-top: 0;
    margin-bottom: 14px;
  }

  /* ── CTA: klar, konversionsstark ── */
  .hero-actions {
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: none;
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.01em;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(135deg, #ff7a1a 0%, #ff4f17 100%);
    color: #fff;
    box-shadow:
      0 12px 32px rgba(255, 92, 23, 0.28),
      0 3px 10px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .hero-actions .btn-primary svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }

  .btn-label-desktop { display: none; }
  .btn-label-mobile  { display: inline; }

  /* ── Trust-Cards: absolut am unteren Bildrand ── */
  .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 11px 24px max(14px, env(safe-area-inset-bottom, 14px));
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    margin: 0;
  }

  .hero-stat-sep { display: none; }

  .hero-stat {
    background: rgba(3, 8, 20, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 13px;
    padding: 9px 5px 8px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 6px 18px rgba(0, 0, 0, 0.22);
  }

  .hero-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: #ff6a3d;
  }

  .hero-stat span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.60);
    margin-top: 4px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* ── Über uns ── */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .about-text .about-body {
    text-align: left;
  }

  /* Bild oben ausblenden */
  .about-visual { display: none; }

  /* CTA-Buttons und Highlights ausblenden */
  .about-cta-wrap { display: none; }
  .about-highlights { display: none; }

  /* Fahrzeugbild mit Badge einblenden */
  .about-visual-mobile {
    display: block;
    position: relative;
    margin-top: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .about-visual-mobile img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .about-badge-mobile {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
  }

  .about-badge-mobile .about-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }

  .about-badge-mobile .about-badge-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
  }

  .about-badge-mobile .about-badge-text span {
    font-size: .68rem;
    color: var(--color-muted);
    display: block;
    margin-top: 2px;
    white-space: nowrap;
  }

  /* ── Galerie ── */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* ── Premium CTA ── */
  .cta-premium {
    padding: 90px 0 80px;
  }
  .cta-premium-btn {
    width: 100%;
    justify-content: center;
    padding: 17px 28px;
  }
  .cta-premium-trust {
    gap: 6px 18px;
  }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── Kontaktformular ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  /* ── Lead-Konfigurator ── */
  .lead-configurator {
    gap: 28px;
  }

  .form-trust-strip {
    gap: 8px 14px;
  }

  .form-trust-strip span {
    font-size: .73rem;
  }

  .service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .lead-progress-step {
    font-size: .65rem;
    gap: 6px;
  }

  .lead-progress-step span {
    width: 24px;
    height: 24px;
    font-size: .75rem;
  }

  .lead-progress::before {
    top: 12px;
  }

  .conditional-fields {
    padding: 16px;
  }

  .lead-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .lead-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Lange Textarea-Inhalte (z. B. Möbel-Liste) würden rechtsbündig im
     engen 2-Spalten-Layout schlecht lesbar — auf Mobile daher gestapelt. */
  .form-summary dl > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .form-summary dd {
    text-align: left;
  }

  /* ── Ablauf ── */
  .process-steps::before { display: none; }

  /* ── FABs: auf Mobile durch CTA-Bar ersetzt ── */
  .fab-group { display: none !important; }

  /* ── Mobile CTA Bar (default: nur als Platzhalter; display setzt @media unten) ── */
  .mobile-cta-bar {
    display: none;
  }
}

@media (max-width: 640px) {
  /* Ablauf: 1-spaltig auf kleinen Screens */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Trust-Grid: 1-spaltig auf kleinen Screens */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .odo-wrap {
    font-size: clamp(2.4rem, 9vw, 3rem);
  }

  .trust-item {
    padding: 28px 20px 24px;
  }

  /* Reviews Carousel */
  .reviews-carousel-wrapper {
    margin-inline: 0;
  }
}

@media (max-width: 480px) {
  /* ── Hero auf sehr kleinen Phones (≤ 480px) ── */
  .hero-badge {
    top: max(100px, calc(env(safe-area-inset-top, 16px) + 82px));
    left: 18px;
    font-size: 10px;
    height: 26px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: max(96px, calc(env(safe-area-inset-bottom, 0px) + 84px));
  }

  .hero-title {
    font-size: clamp(30px, 8.2vw, 36px);
    margin-bottom: 8px;
  }

  .hero-sub--mobile {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero-actions .btn-primary {
    height: 48px;
    font-size: 14.5px;
    border-radius: 14px;
  }

  .hero-stats {
    gap: 5px;
    padding: 9px 18px max(12px, env(safe-area-inset-bottom, 12px));
  }

  .hero-stat {
    padding: 7px 4px 6px;
    min-height: 54px;
    border-radius: 11px;
  }

  .hero-stat strong { font-size: 18px; }
  .hero-stat span   { font-size: 8.5px; }

  /* ── Sections: engere Abstände ── */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ── Bewertungen: Dots zentriert ── */
  .reviews-dots {
    justify-content: center;
  }

  /* ── Reviews Summary: weniger Padding auf kleinen Screens ── */
  .reviews-summary {
    padding: 20px;
    gap: 16px;
  }

  /* ── Reviews Google-Link: text darf umbrechen ── */
  .reviews-google-link {
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* ── Hero: wirklich fullscreen, kein seitlicher Überlauf ── */
  .hero {
    width: 100%;
    max-width: 100vw;
  }

  /* ── Alle Sektionen: kein horizontaler Überlauf ── */
  .section,
  .hero,
  header,
  footer {
    overflow-x: clip;
  }
}

/* ============================================================
   MOBILE CTA BAR
   Nur auf mobilen Geräten sichtbar (max-width: 768px).
   Ersetzt die FABs auf Mobile. Einblenden via JS.
   ============================================================ */

/* Base: immer versteckt — @media aktiviert es */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 890;
    padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(6, 10, 20, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(229, 97, 59, .18);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, .5);
    gap: .6rem;
    /* Startet außerhalb des Viewports — JS blendet ein */
    transform: translateY(100%);
    transition: transform .42s cubic-bezier(.34, 1.56, .64, 1);
    will-change: transform;
  }

  .mobile-cta-bar.visible {
    transform: translateY(0);
  }

  .mobile-cta-bar.hidden-by-contact {
    transform: translateY(100%);
  }

  /* Primärer CTA-Button */
  .mobile-cta-bar__primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .8rem 1rem;
    border-radius: 10px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    box-shadow:
      0 4px 18px rgba(229, 97, 59, .38),
      inset 0 1px 0 rgba(255, 255, 255, .14);
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
  }

  .mobile-cta-bar__primary:active {
    opacity: .88;
    transform: scale(.98);
  }

  /* Telefon-Icon-Button */
  .mobile-cta-bar__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #ffffff;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
  }

  .mobile-cta-bar__phone:active {
    background: rgba(255, 255, 255, .16);
    transform: scale(.96);
  }

  .mobile-cta-bar__phone svg {
    width: 20px;
    height: 20px;
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-cta-bar {
      transition: none;
    }
  }
}


/* ════════════════════════════════════════════
   COLOR SHIFT — scroll-driven palette transitions
   Smooth background transitions on CSS-var-driven elements.
   @property declarations at top of file enable interpolation.
   ════════════════════════════════════════════ */
body,
.services,
.process,
.reviews-section,
.why,
.trust,
.site-footer {
  transition:
    background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  body,
  .services,
  .process,
  .reviews-section,
  .why,
  .trust,
  .site-footer {
    transition: none;
  }
}

/* ============================================================
   DATENSCHUTZ-HINWEISBALKEN
   ============================================================ */
#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: #111b2a;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  transform: translateY(100%);
  transition: transform .35s ease;
}
#privacyBanner.privacy-banner--visible {
  transform: translateY(0);
}
#privacyBanner p {
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
#privacyBanner strong {
  color: #fff;
  font-weight: 600;
}
#privacyBanner a {
  color: var(--color-accent, #e5613b);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
#privacyBannerClose {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--color-accent, #e5613b);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
#privacyBannerClose:hover { opacity: .85; }

@media (max-width: 520px) {
  #privacyBanner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }
  #privacyBannerClose { width: 100%; text-align: center; }
}
