/* ============================================================
   HagelschadenCentrum Pro v6
   Premium White/Blue Design System
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Blue brand palette */
  --brand: #2A4DB5;
  --brand-dark: #1E3A8A;
  --brand-mid: #3B5FCC;
  --brand-light: #5B7FE6;
  --brand-pale: #EEF2FF;
  --brand-glow: rgba(59, 95, 204, .15);
  --brand-soft: rgba(59, 95, 204, .06);

  /* Warm CTA accent — orange-red for primary actions */
  --cta: #E8521A;
  --cta-dark: #C44210;
  --cta-light: #FF7A45;
  --cta-glow: rgba(232, 82, 26, .28);

  /* Accent for CTAs */
  --accent: #2A4DB5;
  --accent-hover: #1E3A8A;
  --accent-glow: rgba(42, 77, 181, .25);

  /* Neutrals - very clean whites */
  --bg: #FAFBFF;
  --bg-2: #FFFFFF;
  --bg-warm: #F5F7FF;
  --bg-dark: #0F172A;
  --bg-dark-2: #1E293B;
  --text: #0F172A;
  --text-secondary: #475569;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.02);
  --shadow: 0 4px 20px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.08), 0 4px 12px rgba(15,23,42,.04);
  --shadow-blue: 0 8px 32px rgba(42,77,181,.18);
  --shadow-xl: 0 24px 64px rgba(15,23,42,.12);

  /* Radius */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --container: 1200px;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 80px;
  --sp-9: 120px;

  /* Typography */
  --h1: clamp(2.75rem, 5vw, 4.5rem);
  --h2: clamp(1.875rem, 3vw, 3rem);
  --h3: 1.3rem;
  --body: 1.0625rem;
  --small: 0.9375rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--sp-6);
  }
}

@media (min-width: 1200px) {
  .container {
    padding-inline: var(--sp-7);
  }
}

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0;
  position: relative;
  z-index: 200;
  overflow: hidden;
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  pointer-events: none;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0.92;
  transition: opacity 200ms ease;
}

.topbar__item:hover {
  opacity: 1;
}

.topbar__item svg,
.topbar__item i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}

.topbar__badge {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: pulse-ring 2.5s cubic-bezier(.4,0,.6,1) infinite;
}

.topbar__link {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color 200ms ease;
}

.topbar__link:hover {
  color: #fff;
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: padding 300ms cubic-bezier(.16,1,.3,1),
              border-color 300ms ease,
              box-shadow 300ms ease;
}

.header.is-compact {
  padding: 12px 0;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.header__logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header__nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 220ms ease, background 220ms ease;
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.16,1,.3,1);
}

.header__nav-link:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.header__nav-link:hover::after {
  transform: scaleX(1);
}

.header__nav-link.is-active {
  color: var(--brand);
}

.header__nav-link.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--brand-pale);
  transition: background 220ms ease, transform 220ms ease;
}

.header__phone:hover {
  background: var(--brand-glow);
  transform: translateY(-1px);
}

.header__phone svg {
  width: 15px;
  height: 15px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
  flex-shrink: 0;
}

.header__hamburger:hover {
  background: var(--brand-soft);
  border-color: var(--brand-glow);
}

.header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: var(--radius-full);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), opacity 200ms ease;
}

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

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

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

/* Mobile nav drawer */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--bg-2);
  box-shadow: -8px 0 48px rgba(15,23,42,.15);
  z-index: 99;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  flex-direction: column;
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}

.header__mobile-nav.is-open {
  transform: translateX(0);
}

.header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 300ms ease;
}

.header__mobile-overlay.is-open {
  opacity: 1;
}

.header__mobile-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-warm);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: background 200ms ease, color 200ms ease;
}

.header__mobile-close:hover {
  background: var(--brand-pale);
  color: var(--brand);
}

.header__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background 200ms ease, color 200ms ease;
  border: 1px solid transparent;
}

.header__mobile-link:hover {
  background: var(--brand-pale);
  color: var(--brand);
  border-color: var(--brand-glow);
}

.header__mobile-link svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(15, 23, 42, .88) 0%,
    rgba(15, 23, 42, .72) 40%,
    rgba(30, 58, 138, .75) 100%
  );
}

/* Animated background particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(91, 127, 230, .6);
  border-radius: 50%;
  animation: particle-drift linear infinite;
}

@keyframes particle-drift {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-9) 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-7);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(59, 95, 204, .25);
  border: 1px solid rgba(91, 127, 230, .45);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a5b9ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  backdrop-filter: blur(8px);
  animation: pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: #6ee7b7;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--h1);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}

.hero__highlight {
  background: linear-gradient(135deg, #7BA4FF 0%, #A5C4FF 50%, #5B7FE6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: var(--sp-6);
  max-width: 520px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.hero__chip:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.hero__chip svg {
  width: 14px;
  height: 14px;
  color: #93c5fd;
  flex-shrink: 0;
}

.hero__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(110, 231, 183, .3);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__check-icon::before {
  content: '✓';
  font-size: 0.65rem;
  color: #6ee7b7;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Hero Stats sidebar */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero__stat-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.hero__stat-card:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .22);
  transform: translateX(-4px);
}

.hero__stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.hero__stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(91, 127, 230, .3);
  border: 1px solid rgba(91, 127, 230, .4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.hero__stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6ee7b7;
  background: rgba(110, 231, 183, .15);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.hero__stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-wheel {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  animation: bounce 2s ease infinite;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-full);
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: var(--sp-9) 0;
}

.section--alt {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .section__text {
  color: rgba(255,255,255,.65);
}

.section--dark .section__label {
  color: #7BA4FF;
}

.section--tight {
  padding: var(--sp-8) 0;
}

.section--compact {
  padding: var(--sp-7) 0;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--h2);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}

.section__text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

/* ── Schnellcheck Cards ─────────────────────────────────────── */
.schnellcheck {
  background: var(--bg-2);
}

.schnellcheck__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.schnellcheck__card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 380ms cubic-bezier(.16,1,.3,1),
              box-shadow 380ms cubic-bezier(.16,1,.3,1),
              border-color 300ms ease;
  overflow: hidden;
  cursor: pointer;
}

.schnellcheck__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.16,1,.3,1);
}

.schnellcheck__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.schnellcheck__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  border-color: rgba(42, 77, 181, .2);
}

.schnellcheck__card:hover::before {
  transform: scaleX(1);
}

.schnellcheck__card:hover::after {
  opacity: 1;
}

.schnellcheck__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--brand-pale);
  border: 1px solid var(--brand-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
  transition: transform 400ms cubic-bezier(.34,1.56,.64,1), background 300ms ease;
}

.schnellcheck__card:hover .schnellcheck__icon-wrap {
  transform: scale(1.12);
  background: var(--brand);
}

.schnellcheck__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 1;
  transition: color 250ms ease;
}

.schnellcheck__card:hover .schnellcheck__title {
  color: var(--brand-dark);
}

.schnellcheck__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}

.schnellcheck__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.schnellcheck__arrow::after {
  content: '→';
  transition: transform 250ms ease;
}

.schnellcheck__card:hover .schnellcheck__arrow {
  opacity: 1;
  transform: translateX(0);
}

.schnellcheck__card:hover .schnellcheck__arrow::after {
  transform: translateX(4px);
}

/* ── Leistungen / Services ──────────────────────────────────── */
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.leistungen__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 350ms cubic-bezier(.16,1,.3,1),
              box-shadow 350ms ease;
  position: relative;
  overflow: hidden;
}

.leistungen__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.leistungen__card--featured {
  background: var(--brand-pale);
  border-color: rgba(42, 77, 181, .2);
  border-left: 4px solid var(--brand);
}

.leistungen__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(42,77,181,.08), transparent 70%);
  pointer-events: none;
}

.leistungen__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 5px 12px;
  margin-bottom: var(--sp-4);
}

.leistungen__icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-blue);
  transition: transform 350ms cubic-bezier(.34,1.56,.64,1);
}

.leistungen__card:hover .leistungen__icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}

.leistungen__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--h3);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
}

.leistungen__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.leistungen__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.leistungen__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.leistungen__list-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.leistungen__card--featured .leistungen__list-item::before {
  background: var(--brand-dark);
}

/* ── Ablauf / Process Steps ─────────────────────────────────── */
.ablauf__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.ablauf__steps::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
  z-index: 0;
}

.ablauf__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-3);
  position: relative;
  z-index: 1;
}

.ablauf__step-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}

.ablauf__step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-blue);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  transition: transform 400ms cubic-bezier(.34,1.56,.64,1), box-shadow 400ms ease;
  border: 4px solid var(--bg);
}

.ablauf__step:hover .ablauf__step-icon {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(42,77,181,.35);
}

.ablauf__step-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.ablauf__step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Vorteile Pills ─────────────────────────────────────────── */
.vorteile__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.vorteile__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--brand-pale);
  border: 1px solid rgba(42,77,181,.12);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: default;
  transition: background 280ms ease,
              color 280ms ease,
              border-color 280ms ease,
              transform 280ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 280ms ease;
}

.vorteile__pill:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-blue);
}

.vorteile__pill-icon {
  width: 32px;
  height: 32px;
  background: rgba(42,77,181,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 280ms ease;
}

.vorteile__pill:hover .vorteile__pill-icon {
  background: rgba(255,255,255,.2);
}

/* ── Referenzen Gallery ─────────────────────────────────────── */
.referenzen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--sp-4);
}

.referenzen__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.referenzen__tile--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.referenzen__tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.25,.46,.45,.94);
}

.referenzen__tile:hover .referenzen__tile-img {
  transform: scale(1.08);
}

.referenzen__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, .88) 0%,
    rgba(30, 58, 138, .4) 50%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 380ms ease, transform 380ms cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
}

.referenzen__tile:hover .referenzen__tile-overlay {
  opacity: 1;
  transform: translateY(0);
}

.referenzen__tile-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.referenzen__tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.referenzen__tile-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(42,77,181,.6);
  border: 1px solid rgba(91,127,230,.4);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}

/* ── Bewertungen / Testimonials ─────────────────────────────── */
.bewertungen {
  position: relative;
  overflow: hidden;
}

.bewertungen__slider {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.bewertungen__track {
  display: flex;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.bewertungen__card {
  flex: 0 0 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7) var(--sp-8);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bewertungen__card::before {
  content: '"';
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-family: Georgia, serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.bewertungen__card-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-7);
  align-items: center;
}

.bewertungen__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--sp-4);
}

.bewertungen__star {
  width: 20px;
  height: 20px;
  color: var(--brand);
  fill: var(--brand);
}

.bewertungen__stars-label {
  margin-left: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.bewertungen__text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: var(--sp-5);
  position: relative;
}

.bewertungen__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.bewertungen__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.bewertungen__author-info {
  display: flex;
  flex-direction: column;
}

.bewertungen__author-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.bewertungen__author-meta {
  font-size: 0.875rem;
  color: var(--muted);
}

.bewertungen__stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.bewertungen__stat {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: var(--sp-4);
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.bewertungen__stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bewertungen__stat-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.bewertungen__stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Dots & Controls */
.bewertungen__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.bewertungen__btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--bg-2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
  font-size: 1.125rem;
}

.bewertungen__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.1);
}

.bewertungen__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.bewertungen__dot {
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  width: 8px;
  transition: background 280ms ease, width 280ms cubic-bezier(.34,1.56,.64,1);
}

.bewertungen__dot.is-active {
  background: var(--brand);
  width: 24px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.faq__item[open] {
  border-color: rgba(42, 77, 181, .25);
  box-shadow: var(--shadow), 0 0 0 3px var(--brand-glow);
  border-left: 3px solid var(--brand);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color 220ms ease, background 220ms ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
}

.faq__question:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.faq__item[open] .faq__question {
  color: var(--brand-dark);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 300ms cubic-bezier(.34,1.56,.64,1), color 220ms ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: var(--sp-4);
}

.faq__answer p + p {
  margin-top: var(--sp-3);
}

/* ── Kontakt Form ───────────────────────────────────────────── */
.kontakt__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  align-items: start;
}

.kontakt__form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-lg);
}

.kontakt__form-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.kontakt__form-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.kontakt__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.kontakt__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.kontakt__field--full {
  grid-column: 1 / -1;
}

.kontakt__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.kontakt__label span {
  color: var(--brand);
}

.kontakt__input,
.kontakt__select,
.kontakt__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.kontakt__input::placeholder,
.kontakt__textarea::placeholder {
  color: var(--muted);
}

.kontakt__input:focus,
.kontakt__select:focus,
.kontakt__textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: var(--bg-2);
}

.kontakt__input:hover:not(:focus),
.kontakt__select:hover:not(:focus),
.kontakt__textarea:hover:not(:focus) {
  border-color: var(--brand-light);
}

.kontakt__select-wrap {
  position: relative;
}

.kontakt__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232A4DB5' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.kontakt__textarea {
  min-height: 120px;
  resize: vertical;
}

.kontakt__privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.kontakt__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--brand);
  cursor: pointer;
}

.kontakt__privacy a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kontakt__submit {
  width: 100%;
  margin-top: var(--sp-2);
}

/* Sidebar */
.kontakt__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.kontakt__info-card {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.kontakt__info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}

.kontakt__info-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  pointer-events: none;
}

.kontakt__info-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.kontakt__info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.kontakt__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.kontakt__info-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.kontakt__info-text {
  display: flex;
  flex-direction: column;
}

.kontakt__info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.kontakt__info-value {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 600;
}

.kontakt__info-value a {
  color: #fff;
  transition: opacity 200ms ease;
}

.kontakt__info-value a:hover {
  opacity: 0.8;
}

.kontakt__guarantee {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.kontakt__guarantee-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.kontakt__guarantee-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.kontakt__guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.kontakt__guarantee-check {
  width: 20px;
  height: 20px;
  background: rgba(42,77,181,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
}

/* ── Trust Strip ────────────────────────────────────────────── */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-5) 0;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.trust__item:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

.trust__icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
}

.trust__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: var(--sp-9) 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,77,181,.5), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,77,181,.06), transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  text-decoration: none;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  filter: none;
  opacity: 1;
  flex-shrink: 0;
}

.footer__logo-name {
  font-family: 'Lexend', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.footer__logo-name strong {
  color: #fff;
  font-weight: 800;
}

.footer__logo-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  color: rgba(255,255,255,.55);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9375rem;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.footer__social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.footer__heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: color 220ms ease, padding-left 220ms ease;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer__link::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  color: var(--brand-light);
  transition: opacity 220ms ease, transform 220ms ease;
  transform: translateX(-8px);
  flex-shrink: 0;
}

.footer__link:hover {
  color: rgba(255,255,255,.85);
  padding-left: var(--sp-3);
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__address-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer__address-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__address-link {
  color: rgba(255,255,255,.5);
  transition: color 220ms ease;
}

.footer__address-link:hover {
  color: rgba(255,255,255,.85);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--sp-5) 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,.35);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.footer__legal-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.35);
  transition: color 220ms ease;
}

.footer__legal-link:hover {
  color: rgba(255,255,255,.7);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer__badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.04em;
}

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(680px, calc(100vw - var(--sp-6)));
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-5) var(--sp-6);
  animation: slide-up-cookie 500ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes slide-up-cookie {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie[hidden] {
  display: none !important;
}

.cookie__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.cookie__icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}

.cookie__content {
  flex: 1;
  min-width: 200px;
}

.cookie__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cookie__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie__text a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  font-size: 0.9375rem;
  font-weight: 500;
  max-width: 380px;
  animation: toast-in 400ms cubic-bezier(.16,1,.3,1) both;
}

.toast--success {
  background: linear-gradient(135deg, #065f46, #047857);
  color: #fff;
}

.toast--info {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
}

.toast--error {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  color: #fff;
}

.toast__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast__text {
  flex: 1;
  line-height: 1.4;
}

.toast__close {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius);
  cursor: pointer;
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.toast__close:hover {
  background: rgba(255,255,255,.3);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px) scale(.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 220ms ease,
              color 220ms ease,
              border-color 220ms ease,
              box-shadow 220ms ease,
              transform 220ms cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  box-shadow: 0 12px 40px rgba(42,77,181,.35);
  transform: translateY(-2px) scale(1.03);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px) scale(1.03);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px) scale(1.03);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--bg-warm);
  color: var(--text);
  transform: translateY(-1px) scale(1.02);
}

.btn--secondary {
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
}

.btn--secondary:hover {
  background: var(--bg-dark-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.03);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.btn--icon {
  padding: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

/* ── Animations ─────────────────────────────────────────────── */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
}

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

/* Stagger children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger > *:nth-child(8) { transition-delay: 560ms; }

/* Floating */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-1 { animation: float 6s ease-in-out infinite; }
.float-2 { animation: float 6s ease-in-out infinite 1s; }
.float-3 { animation: float 6s ease-in-out infinite 2s; }
.float-4 { animation: float 6s ease-in-out infinite 3s; }

/* Pulse ring */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(59, 95, 204, .4); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.pulse { animation: pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite; }

/* Bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-16px); }
  60% { transform: translateY(-8px); }
}

/* Shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-warm) 0%,
    rgba(255,255,255,.8) 50%,
    var(--bg-warm) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* Gradient shift */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Counter pop */
@keyframes count-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.count-pop {
  animation: count-pop 300ms cubic-bezier(.34,1.56,.64,1);
}

/* 3D Card tilt */
.tilt {
  transition: transform 400ms cubic-bezier(.03,.98,.52,.99);
  transform-style: preserve-3d;
  perspective: 1000px;
}

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

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

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

/* Parallax */
.parallax {
  will-change: transform;
}

/* Spin */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Fade in up variants */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(.88); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Misc Utility ───────────────────────────────────────────── */
.text-brand { color: var(--brand); }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Separator */
.separator {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-full);
  margin-block: var(--sp-4);
}

.separator--center {
  margin-inline: auto;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--border-light) 0%, var(--bg-warm) 50%, var(--border-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

/* ── prefers-reduced-motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-1,
  .float-2,
  .float-3,
  .float-4 {
    animation: none;
  }

  .pulse { animation: none; }
  .hero__badge { animation: none; }
  .topbar__badge { animation: none; }
  .hero__badge-dot { animation: none; }
  .hero__scroll-dot { animation: none; }
  .hero__scroll-wheel { animation: none; }
  .hero__highlight { animation: none; }
  .gradient-text { animation: none; }
  .marquee-track { animation: none; }
  .ablauf__steps::after { animation: none; }
  .shimmer { animation: none; }
}

/* ── Responsive: 1200px ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__chips {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    max-width: 600px;
    margin-inline: auto;
  }

  .hero__stat-card:hover {
    transform: translateY(-4px);
  }

  .schnellcheck__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--sp-5);
  }
}

/* ── Responsive: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --sp-9: 80px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__mobile-nav {
    display: flex;
  }

  .header__mobile-overlay {
    display: block;
  }

  .ablauf__steps {
    flex-wrap: wrap;
    gap: var(--sp-6);
  }

  .ablauf__steps::after {
    display: none;
  }

  .ablauf__step {
    flex: 0 0 calc(50% - var(--sp-3));
  }

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

  .kontakt__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .referenzen__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .referenzen__tile--wide {
    grid-column: span 1;
  }

  .bewertungen__card-inner {
    grid-template-columns: 1fr;
  }

  .bewertungen__stats-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --sp-9: 64px;
    --sp-8: 48px;
  }

  .topbar__right {
    display: none;
  }

  .topbar__left {
    flex-wrap: wrap;
    gap: var(--sp-3);
  }

  .header__actions .btn--outline,
  .header__actions .btn--primary {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .hero__inner {
    padding: var(--sp-8) 0;
  }

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

  .schnellcheck__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

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

  .ablauf__step {
    flex: 0 0 100%;
  }

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

  .bewertungen__card {
    padding: var(--sp-6) var(--sp-5);
  }

  .bewertungen__stats-sidebar {
    grid-template-columns: 1fr 1fr;
  }

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

  .kontakt__field--full {
    grid-column: 1;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }

  .footer__legal {
    gap: var(--sp-4);
    justify-content: center;
  }

  .trust__inner {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-2);
  }

  .trust__divider {
    display: none;
  }

  .cookie {
    bottom: var(--sp-3);
    width: calc(100vw - var(--sp-5));
    padding: var(--sp-4);
  }

  .cookie__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .cookie__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie__actions .btn {
    flex: 1;
  }

  .toast {
    bottom: var(--sp-4);
    right: var(--sp-3);
    left: var(--sp-3);
    max-width: none;
  }

  .section__header {
    margin-bottom: var(--sp-6);
  }
}

/* ── Responsive: 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --sp-9: 48px;
    --sp-8: 40px;
    --sp-7: 32px;
  }

  .container {
    padding-inline: var(--sp-4);
  }

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

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

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .bewertungen__card {
    padding: var(--sp-5) var(--sp-4);
  }

  .bewertungen__stats-sidebar {
    grid-template-columns: 1fr;
  }

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

  .kontakt__form-wrap {
    padding: var(--sp-5) var(--sp-4);
  }

  .kontakt__info-card {
    padding: var(--sp-5);
  }

  .bewertungen__controls {
    gap: var(--sp-3);
  }

  .ablauf__step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .ablauf__step-num {
    font-size: 3.5rem;
  }

  .faq__question {
    padding: var(--sp-4);
    font-size: 1rem;
  }

  .faq__answer {
    padding: 0 var(--sp-4) var(--sp-4);
    padding-top: var(--sp-3);
  }

  .section__title {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
  }

  .trust__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .topbar,
  .header__hamburger,
  .hero__scroll,
  .cookie,
  .toast {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg::after {
    display: none;
  }

  .hero__title,
  .hero__subtitle {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
  }
}

/* ═══════════════════════════════════════════════════════════════
   CLASS NAME ALIASES — bridge HTML classes to CSS selectors
   All aliases added here; no existing selectors removed.
   ═══════════════════════════════════════════════════════════════ */

/* ── A) Skip link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
}

/* ── B) Nav list — horizontal on desktop ──────────────────────── */
.header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

/* ── C & D) Hamburger alias — hidden on desktop, shown on mobile ─ */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
  flex-shrink: 0;
}
.header__burger:hover {
  background: var(--brand-soft);
  border-color: var(--brand-glow);
}
.header__burger svg {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--text);
}
.header__burger.is-open {
  background: var(--brand-soft);
  border-color: var(--brand-glow);
}

/* ── E) Mobile nav — slide-in panel when .is-open on the ul ─────
   The nav list becomes a full-height drawer on mobile (<=1024px). */
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }

  .header__nav-list {
    /* Hidden by default on mobile — drawer mode */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 100vw);
    background: var(--bg-2);
    box-shadow: -8px 0 48px rgba(15, 23, 42, .15);
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2);
    padding: 72px var(--sp-5) var(--sp-5);
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(.16, 1, .3, 1);
    overflow-y: auto;
    /* Override display:flex already set — keep flex, just rearrange */
  }

  .header__nav-list.is-open {
    transform: translateX(0);
  }

  /* Overlay behind drawer */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    backdrop-filter: blur(4px);
    z-index: 98;
  }

  /* Make links full-width on mobile */
  .header__nav-list .header__nav-link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
  }

  .header__nav-list .header__nav-link:hover {
    background: var(--brand-pale);
    color: var(--brand);
    border-color: var(--brand-glow);
  }
}

/* ── F) Cookie banner alias ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(680px, calc(100vw - var(--sp-6)));
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-5) var(--sp-6);
  animation: slide-up-cookie 500ms cubic-bezier(.16, 1, .3, 1) both;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner__text strong {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cookie-banner {
    bottom: var(--sp-3);
    width: calc(100vw - var(--sp-5));
    padding: var(--sp-4);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1;
  }
}

/* ── G) Hero — force visible immediately (no JS-triggered reveal) */
.hero .reveal,
.hero .reveal-left,
.hero .reveal-right,
.hero .reveal-scale {
  opacity: 1;
  transform: none;
}

/* Hero class aliases: HTML uses different names than CSS */
.hero__heading { /* alias for .hero__title */
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--h1);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}
.hero__heading-highlight { /* alias for .hero__highlight */
  background: linear-gradient(135deg, #7BA4FF 0%, #A5C4FF 50%, #5B7FE6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}
.hero__subtext { /* alias for .hero__subtitle */
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  margin-bottom: var(--sp-6);
  max-width: 520px;
}
.hero__ctas { /* alias for .hero__actions */
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
/* .chip — hero chip alias */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}
.chip:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}
.chip svg {
  width: 13px;
  height: 13px;
  color: #93c5fd;
  flex-shrink: 0;
}
/* KPI cards alias (HTML: .kpi-card, .kpi-card__value, .kpi-card__label) */
.kpi-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
  cursor: default;
}
.kpi-card:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .22);
  transform: translateX(-4px);
}
.kpi-card__value {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.kpi-card__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
  display: block;
}
/* Hero KPI sidebar layout */
.hero__kpis {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
/* Bounce alias for hero scroll arrow */
.bounce {
  animation: bounce 2s ease infinite;
}
/* Logo text aliases (HTML uses __logo-title and __logo-sub, CSS uses __logo-name and __logo-tagline) */
.header__logo-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}
.header__logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* pulse-ring element alias */
.pulse-ring {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #6ee7b7;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

/* ── H) Slider card sizing ────────────────────────────────────── */
/* HTML uses .slider, .slider__track, .slider__track-wrapper, .slider__controls, .slider__btn, .slider__dots, .slider__dot, .testimonial-card */
.slider {
  position: relative;
  overflow: hidden;
}
.slider__track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.slider__track {
  display: flex;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.slider__track > .testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.slider__btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--bg-2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}
.slider__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.1);
}
.slider__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.slider__dot {
  height: 8px;
  width: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 280ms ease, width 280ms cubic-bezier(.34, 1.56, .64, 1);
}
.slider__dot.is-active {
  background: var(--brand);
  width: 24px;
}
/* Testimonial card */
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7) var(--sp-7);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--sp-4);
  color: var(--brand);
}
.testimonial-card__stars svg {
  color: var(--brand);
  fill: var(--brand);
}
.testimonial-card__quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: var(--sp-5);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.testimonial-card__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-card__location {
  font-size: 0.875rem;
  color: var(--muted);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: var(--sp-6) var(--sp-5);
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: var(--sp-5) var(--sp-4);
  }
}

/* ── I) Section aliases ───────────────────────────────────────── */

/* Schnellcheck — HTML uses .schnell-card instead of .schnellcheck__card */
.schnell-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 380ms cubic-bezier(.16, 1, .3, 1),
              box-shadow 380ms cubic-bezier(.16, 1, .3, 1),
              border-color 300ms ease;
  overflow: hidden;
  cursor: pointer;
}
.schnell-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.16, 1, .3, 1);
}
.schnell-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  border-color: rgba(42, 77, 181, .2);
}
.schnell-card:hover::before {
  transform: scaleX(1);
}
.schnell-card__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-pale);
  border: 1px solid var(--brand-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
  transition: transform 400ms cubic-bezier(.34, 1.56, .64, 1), background 300ms ease;
  color: var(--brand);
}
.schnell-card:hover .schnell-card__icon {
  transform: scale(1.12);
  background: var(--brand);
  color: #fff;
}
.schnell-card__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 1;
  transition: color 250ms ease;
}
.schnell-card:hover .schnell-card__title {
  color: var(--brand-dark);
}
.schnell-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-4);
}
.schnell-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  position: relative;
  z-index: 1;
  transition: gap 250ms ease;
}
.schnell-card__cta:hover {
  gap: var(--sp-3);
}

/* Leistungen — HTML uses .leistungen__icon (not __icon-wrap), li not .leistungen__list-item */
.leistungen__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-blue);
  transition: transform 350ms cubic-bezier(.34, 1.56, .64, 1);
  color: #fff;
}
.leistungen__card:hover .leistungen__icon {
  transform: scale(1.1) rotate(-4deg);
}
/* List items — HTML uses plain <li> inside .leistungen__list */
.leistungen__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.leistungen__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.leistungen__card--featured .leistungen__list li::before {
  background: var(--brand-dark);
}

/* Ablauf — HTML uses .ablauf__number, .ablauf__icon, .ablauf__content, .ablauf__title, .ablauf__text */
.ablauf__number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}
.ablauf__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  transition: transform 400ms cubic-bezier(.34, 1.56, .64, 1), box-shadow 400ms ease;
  border: 4px solid var(--bg);
  color: #fff;
}
.ablauf__step:hover .ablauf__icon {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(42, 77, 181, .35);
}
.ablauf__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ablauf__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.ablauf__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Vorteile — HTML uses .vorteil-pill (not .vorteile__pill) */
.vorteil-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--brand-pale);
  border: 1px solid rgba(42, 77, 181, .12);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: default;
  transition: background 280ms ease,
              color 280ms ease,
              border-color 280ms ease,
              transform 280ms cubic-bezier(.34, 1.56, .64, 1),
              box-shadow 280ms ease;
}
.vorteil-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand);
}
.vorteil-pill:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-blue);
}
.vorteil-pill:hover svg {
  color: #fff;
}

/* Referenzen — HTML uses .ref-tile instead of .referenzen__tile */
.ref-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.ref-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.25, .46, .45, .94);
}
.ref-tile:hover .ref-tile__img {
  transform: scale(1.08);
}
.ref-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .6) 0%, transparent 60%);
  transition: opacity 380ms ease;
}
.ref-tile__tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(42, 77, 181, .8);
  border: 1px solid rgba(91, 127, 230, .5);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}
.ref-tile__tag--after {
  background: rgba(5, 150, 105, .8);
  border-color: rgba(52, 211, 153, .5);
}
.ref-tile__label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

/* FAQ — HTML uses .faq-item, .faq-item__question, .faq-item__icon, .faq-item__answer */
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 280ms ease, box-shadow 280ms ease;
}
.faq-item[open] {
  border-color: rgba(42, 77, 181, .25);
  box-shadow: var(--shadow), 0 0 0 3px var(--brand-glow);
  border-left: 3px solid var(--brand);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color 220ms ease, background 220ms ease;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::marker {
  display: none;
}
.faq-item__question:hover {
  color: var(--brand);
  background: var(--brand-soft);
}
.faq-item[open] .faq-item__question {
  color: var(--brand-dark);
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 300ms cubic-bezier(.34, 1.56, .64, 1), color 220ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-item__answer {
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}
.faq-item__answer p + p {
  margin-top: var(--sp-3);
}
@media (max-width: 480px) {
  .faq-item__question {
    padding: var(--sp-4);
    font-size: 1rem;
  }
  .faq-item__answer {
    padding: var(--sp-3) var(--sp-4) var(--sp-4);
  }
}

/* Contact form — HTML uses .contact-form, .form-row, .form-group, .form-label, .form-input, .form-select, .form-textarea, .form-checkbox, .form-checkbox-label, .form-required, .form-note */
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-required {
  color: var(--brand);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 1rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: var(--bg-2);
}
.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: var(--brand-light);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox-label a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.btn--full {
  width: 100%;
}
@media (max-width: 768px) {
  .form-row--two {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: var(--sp-5);
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: var(--sp-4);
  }
}

/* Contact sidebar layout adjustments */
.kontakt__form-col {
  min-width: 0;
}

/* Kontakt info items — HTML uses .kontakt__info-value as direct text/link, CSS has sub-elements */
/* These are already covered by existing .kontakt__info-* rules */

/* Map placeholder */
.map-placeholder {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: var(--sp-5);
  overflow: hidden;
}
.map-placeholder__inner {
  padding: var(--sp-7) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.9375rem;
}
.map-placeholder__inner svg {
  color: var(--brand);
  opacity: 0.5;
}
.map-placeholder .btn {
  margin: var(--sp-4) auto var(--sp-4);
  display: flex;
  width: fit-content;
}

/* Trust strip — HTML uses .trust-strip instead of .trust */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-5) 0;
}
.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  list-style: none;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}
.trust-strip__item:hover {
  color: var(--brand);
  transform: translateY(-2px);
}
.trust-strip__icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip__label {
  /* inline, nothing special needed */
}
@media (max-width: 480px) {
  .trust-strip__list {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer — HTML uses .footer__inner (not .footer__grid), .footer__brand, .footer__nav, .footer__nav-title, .footer__nav-list, .footer__nav-link, .footer__contact, .footer__tagline, .footer__phone, .footer__address, .footer__hours, .footer__legal-links */
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  color: rgba(255, 255, 255, .55);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  transition: color 220ms ease;
}
.footer__phone:hover {
  color: #fff;
}
.footer__phone svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.footer__nav-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
}
.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .5);
  transition: color 220ms ease, padding-left 220ms ease;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer__nav-link:hover {
  color: rgba(255, 255, 255, .85);
  padding-left: var(--sp-3);
}
.footer__contact {
  display: flex;
  flex-direction: column;
}
.footer__address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}
.footer__hours {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, .5);
}
.footer__hours svg {
  color: var(--brand-light);
  flex-shrink: 0;
}
.footer__map {
  margin-top: var(--sp-4);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--sp-5);
  }
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}
@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    padding-inline: var(--sp-5);
  }
}
html, body {
  overflow-x: hidden;
}

/* Toast — HTML uses .toast__message, CSS uses .toast__text */
.toast__message {
  flex: 1;
  line-height: 1.4;
}
/* Make the basic toast visible when .is-visible and no longer hidden */
.toast[hidden] {
  display: none !important;
}
.toast.is-visible {
  display: flex;
  background: linear-gradient(135deg, #065f46, #047857);
  color: #fff;
}

/* ── Topbar text alias ────────────────────────────────────────── */
.topbar__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
}

/* ── Topbar link icon alignment ──────────────────────────────── */
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ── btn--outline-white alias already in main CSS ────────────── */
/* ── hero__scroll bounce alias ───────────────────────────────── */
.hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
}
@media (max-width: 480px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
  }
}
@media (max-width: 1200px) {
  .hero__kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    max-width: 600px;
    margin-inline: auto;
  }
  .hero__ctas {
    justify-content: center;
  }
}

/* ── Print aliases ───────────────────────────────────────────── */
@media print {
  .header__burger,
  .cookie-banner,
  .trust-strip {
    display: none;
  }
  .hero__heading {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
  }
}

/* ============================================================
   CREATIVE OVERRIDES — Hand-crafted design layer
   ============================================================ */

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-mid), var(--brand-dark));
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* ── Selection Color ────────────────────────────────────────── */
::selection {
  background: var(--brand);
  color: #fff;
}
::-moz-selection {
  background: var(--brand);
  color: #fff;
}

/* ── Section divider dots ───────────────────────────────────── */
.section + .section::before,
.section--alt + .section::before,
.section + .section--alt::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0px,
    var(--border) 4px,
    transparent 4px,
    transparent 12px
  );
  margin-bottom: 0;
}

/* ── Hero — Cinematic heading split ─────────────────────────── */
.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: var(--sp-5);
}

.hero__heading-eyeline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.01em;
  line-height: 1.3;
  font-style: italic;
}

.hero__heading-punchline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.hero__heading-highlight {
  font-style: italic;
  background: linear-gradient(135deg, #FF9A5C 0%, #FFD580 50%, #FF7A45 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  font-weight: 900;
}

.hero__heading-location {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.6em;
}

/* ── CTA Button — Warm orange ───────────────────────────────── */
.btn--cta {
  background: linear-gradient(135deg, var(--cta), var(--cta-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 32px var(--cta-glow);
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--cta-light), var(--cta));
  box-shadow: 0 16px 48px var(--cta-glow);
  transform: translateY(-2px) scale(1.03);
}

/* ── Schnellcheck cards — distinct tints ────────────────────── */
.schnell-card--1 { background: linear-gradient(145deg, #fff 60%, rgba(59,95,204,.04)); }
.schnell-card--2 { background: linear-gradient(145deg, #fff 60%, rgba(232,82,26,.03)); }
.schnell-card--3 { background: linear-gradient(145deg, #fff 60%, rgba(16,185,129,.03)); }
.schnell-card--4 { background: linear-gradient(145deg, #fff 60%, rgba(245,158,11,.03)); }

/* ── Leistungen — Featured cards: diagonal top edge ─────────── */
.leistungen__card--featured {
  background: linear-gradient(135deg, #EEF2FF 0%, #F8F9FF 100%);
  border-color: rgba(42,77,181,.18);
  border-left: 4px solid var(--brand);
  position: relative;
  overflow: hidden;
}

.leistungen__card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light), var(--brand-dark));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

/* ── Ablauf — WhatsApp link ─────────────────────────────────── */
.ablauf__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-3);
  padding: 8px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}

.ablauf__whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ── Vorteile — Claim cards ─────────────────────────────────── */
.vorteile__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  justify-content: unset;
}

.vorteil-claim {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(.16,1,.3,1),
              box-shadow 350ms ease,
              border-color 300ms ease;
}

.vorteil-claim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.16,1,.3,1);
}

.vorteil-claim:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  border-color: rgba(42,77,181,.2);
}

.vorteil-claim:hover::before {
  transform: scaleX(1);
}

.vorteil-claim__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-pale);
  border: 1px solid rgba(42,77,181,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: var(--sp-4);
  transition: background 300ms ease, transform 350ms cubic-bezier(.34,1.56,.64,1);
}

.vorteil-claim:hover .vorteil-claim__icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.vorteil-claim__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}

.vorteil-claim__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Referenzen — Polaroid style ────────────────────────────── */
.ref-tile--polaroid {
  background: #fff;
  padding: 8px 8px 32px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(15,23,42,.1), 0 1px 4px rgba(15,23,42,.06);
  transition: transform 450ms cubic-bezier(.16,1,.3,1),
              box-shadow 450ms ease;
}

.ref-tile--polaroid:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.ref-tile--polaroid:nth-child(even) {
  transform: rotate(0.8deg);
}

.ref-tile--polaroid:hover {
  transform: rotate(0deg) scale(1.04) translateY(-6px) !important;
  box-shadow: 0 20px 56px rgba(15,23,42,.18), 0 4px 12px rgba(15,23,42,.08);
  z-index: 2;
}

.ref-tile--polaroid .ref-tile__img {
  border-radius: 2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-tile__sublabel {
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}

/* ── Testimonials — real-feel enhancements ───────────────────── */
.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-card__source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-left: var(--sp-3);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}

/* ── Kontakt — WhatsApp CTA block ───────────────────────────── */
.kontakt__whatsapp-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(37,211,102,.04));
  border: 1.5px solid rgba(37,211,102,.25);
  border-radius: var(--radius-lg);
}

.kontakt__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  white-space: nowrap;
}

.kontakt__wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}

.kontakt__wa-number {
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 500;
  margin-left: var(--sp-2);
  border-left: 1px solid rgba(255,255,255,.4);
  padding-left: var(--sp-3);
}

.kontakt__wa-divider {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* WhatsApp icon in sidebar */
.kontakt__info-icon--wa {
  background: rgba(37,211,102,.15) !important;
  border-color: rgba(37,211,102,.3) !important;
  color: #25D366;
}

/* ── Ablauf step WhatsApp micro link in dark context ─────────── */
.section--alt .ablauf__whatsapp {
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

/* ── Section title — italic variation ───────────────────────── */
.section--alt .section__title {
  font-style: normal;
}

/* ── Floating Werkstatt Badge ───────────────────────────────── */
.werkstatt-badge {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-lg);
  transition: transform 300ms ease, box-shadow 300ms ease, color 220ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.werkstatt-badge svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Hero word-stagger entrance ─────────────────────────────── */
@keyframes word-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__heading-eyeline {
  animation: word-in 0.7s cubic-bezier(.16,1,.3,1) 0.1s both;
}

.hero__heading-punchline {
  animation: word-in 0.8s cubic-bezier(.16,1,.3,1) 0.25s both;
}

.hero__heading-location {
  animation: word-in 0.7s cubic-bezier(.16,1,.3,1) 0.45s both;
}

.hero__subtext {
  animation: word-in 0.7s cubic-bezier(.16,1,.3,1) 0.55s both;
}

.hero__ctas {
  animation: word-in 0.7s cubic-bezier(.16,1,.3,1) 0.7s both;
}

.hero__chips {
  animation: word-in 0.7s cubic-bezier(.16,1,.3,1) 0.85s both;
}

/* ── Dark section blue tint ─────────────────────────────────── */
.section--dark {
  background: linear-gradient(160deg, #0D1829 0%, #0F172A 40%, #111D35 100%);
}

/* ── Responsive: vorteil-claim ──────────────────────────────── */
@media (max-width: 1200px) {
  .vorteile__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vorteile__grid {
    grid-template-columns: 1fr;
  }
  .werkstatt-badge {
    display: none;
  }
  .kontakt__whatsapp-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .kontakt__wa-btn {
    width: 100%;
    justify-content: center;
  }
  .ref-tile--polaroid:nth-child(odd),
  .ref-tile--polaroid:nth-child(even) {
    transform: none;
  }
  .hero__heading-punchline {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .vorteil-claim {
    padding: var(--sp-5);
  }
}

/* ============================================================
   NEW FEATURES — v6 additions
   ============================================================ */

/* ── Before/After Slider ────────────────────────────────────── */
.ba-slider-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: 1000px;
  margin: 0 auto var(--sp-5);
}

@media (max-width: 768px) {
  .ba-slider-container { grid-template-columns: 1fr; }
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: col-resize;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-slider__before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-slider__after { z-index: 1; }

.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider__label {
  position: absolute;
  top: var(--sp-4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.ba-slider__label--before {
  left: var(--sp-4);
  background: rgba(232, 96, 10, .85);
  color: #fff;
}

.ba-slider__label--after {
  right: var(--sp-4);
  background: rgba(34, 197, 94, .85);
  color: #fff;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider__handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
  border-radius: 2px;
}

.ba-slider__handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  pointer-events: auto;
  cursor: col-resize;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ba-slider__handle-circle:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.ba-slider__caption {
  text-align: center;
  font-size: var(--small);
  color: var(--muted);
  margin-top: var(--sp-3);
  font-style: italic;
}

.ba-slider__hint {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: var(--small);
  margin-top: var(--sp-4);
}

/* ── Price Cards ────────────────────────────────────────────── */
.preise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

@media (max-width: 1024px) { .preise__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .preise__grid { grid-template-columns: 1fr; } }

.preis-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms ease;
  position: relative;
}

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

.preis-card--popular {
  border-color: var(--brand);
  border-width: 2px;
  background: var(--brand-pale);
  box-shadow: var(--shadow-blue);
}

.preis-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.preis-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.preis-card--popular .preis-card__icon {
  background: rgba(255,255,255,.7);
}

.preis-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.preis-card__desc {
  font-size: var(--small);
  color: var(--muted);
  margin: 0;
}

.preis-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: var(--sp-2) 0;
}

.preis-card__from {
  font-size: var(--small);
  color: var(--muted);
  font-weight: 500;
}

.preis-card__amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  font-family: 'Inter', system-ui, sans-serif;
}
.preis-card__amount--anfrage {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.preis-card__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.preis-card__includes li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}

.preis-card__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--brand);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.preis-card .btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.preise__cta {
  text-align: center;
  margin: var(--sp-8) auto var(--sp-4);
  max-width: 600px;
}
.preise__cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
.preise__cta-buttons {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.btn--whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}

/* ── Nav highlight ──────────────────────────────────────────── */
.header__nav-link--highlight {
  color: var(--cta) !important;
  font-weight: 700;
}
.header__nav-link--highlight:hover {
  color: var(--brand) !important;
}

/* ── Unfallschaden Sektion ──────────────────────────────────── */
.unfall__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 960px) {
  .unfall__grid { grid-template-columns: 1fr; }
}

.unfall__leistungen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 640px) {
  .unfall__leistungen { grid-template-columns: 1fr; }
}

.unfall__item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.unfall__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(42,77,181,.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unfall__item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.unfall__item-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.unfall__cta-box {
  position: sticky;
  top: 100px;
}

.unfall__cta-inner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-blue);
}

.unfall__cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}

.unfall__cta-title {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.unfall__cta-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.unfall__trust {
  list-style: none;
  padding: 0;
  margin-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.unfall__trust li {
  font-size: 0.85rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.preise__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--small);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

.preise__note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

/* ── Damage Calculator ──────────────────────────────────────── */
.rechner {
  max-width: 700px;
  margin: 0 auto;
}

.rechner__step {
  margin-bottom: var(--sp-6);
}

.rechner__label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
  display: block;
}

.rechner__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-3);
}

.rechner__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 200ms, background 200ms, transform 200ms, box-shadow 200ms;
  text-align: center;
}

.rechner__option:hover {
  border-color: var(--brand);
  background: var(--brand-pale);
  transform: translateY(-2px);
}

.rechner__option.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.rechner__option.is-selected svg { stroke: #fff; }

.rechner__option-hint {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: .7;
  display: block;
}

.rechner__result-card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
  animation: scaleIn 400ms cubic-bezier(.16,1,.3,1);
}

@keyframes scaleIn { from { opacity:0; transform: scale(.92); } to { opacity:1; transform: scale(1); } }

.rechner__result-label {
  font-size: var(--small);
  opacity: .8;
  margin: 0 0 var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rechner__result-amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 var(--sp-2);
  font-family: 'Inter', system-ui, sans-serif;
}

.rechner__result-time {
  font-size: 1.05rem;
  opacity: .9;
  margin: 0 0 var(--sp-5);
}

.rechner__result-note {
  font-size: var(--small);
  opacity: .7;
  margin: 0 0 var(--sp-5);
}

.rechner__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

.rechner__result-actions .btn--cta {
  background: #fff;
  color: var(--brand);
}

.rechner__result-actions .btn--ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ── Google Reviews Badge ───────────────────────────────────── */
.google-reviews {
  padding: var(--sp-6) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.google-reviews__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.google-reviews__badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.google-reviews__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.google-reviews__stars strong {
  margin-left: 6px;
  font-size: 1.1rem;
  color: var(--text);
}

.google-reviews__count {
  font-size: var(--small);
  color: var(--muted);
}

/* ── Video CTA ──────────────────────────────────────────────── */
.video-cta {
  padding: var(--sp-9) 0;
  background: var(--bg-dark);
  color: #fff;
}

.video-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

@media (max-width: 768px) {
  .video-cta__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
}

.video-cta__title {
  font-size: var(--h2);
  font-weight: 800;
  margin: var(--sp-3) 0;
  color: #fff;
}

.video-cta__text {
  color: rgba(255,255,255,.7);
  margin: 0 0 var(--sp-5);
  line-height: 1.7;
}

.video-cta__placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-cta__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cta__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background 250ms ease;
}

.video-cta__placeholder:hover .video-cta__play {
  background: rgba(42,77,181,.55);
}

.video-cta__play svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  transition: transform 250ms ease;
}

.video-cta__placeholder:hover .video-cta__play svg {
  transform: scale(1.15);
}


/* ── MOBILE KOMPRIMIERUNG (max-width: 480px) ────────────────── */
@media (max-width: 480px) {

  /* Sektionen generell weniger Padding */
  .section {
    padding: var(--sp-7) 0;
  }

  /* Leistungen — kleine Karten 2-spaltig, kompakter */
  .leistungen__grid {
    gap: var(--sp-3);
  }
  .leistungen__card:not(.leistungen__card--featured) {
    padding: var(--sp-4);
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: var(--sp-3);
  }
  .leistungen__card:not(.leistungen__card--featured) .leistungen__icon {
    width: 36px;
    height: 36px;
  }
  .leistungen__card:not(.leistungen__card--featured) .leistungen__text {
    display: none;
  }
  .leistungen__card:not(.leistungen__card--featured) .leistungen__title {
    font-size: 0.95rem;
    margin: 0;
  }
  .leistungen__card--featured {
    padding: var(--sp-5);
  }
  .leistungen__card--featured .leistungen__text {
    font-size: 0.875rem;
  }

  /* Preise — kompaktere Karten */
  .preis-card {
    padding: var(--sp-4) var(--sp-4);
  }
  .preis-card__amount {
    font-size: 1.25rem;
  }
  .preis-card__includes {
    font-size: 0.85rem;
  }

  /* Unfallschaden — Beschreibungstext ausblenden */
  .unfall__item-text {
    display: none;
  }
  .unfall__item {
    gap: var(--sp-2);
  }
  .unfall__icon {
    width: 36px;
    height: 36px;
  }
  .unfall__leistungen {
    gap: var(--sp-3);
  }
  .unfall__cta-inner {
    padding: var(--sp-5);
  }

  /* Schnellcheck — 2 Spalten */
  .schnellcheck__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
  }
  .schnell-card {
    padding: var(--sp-4) var(--sp-3);
  }
  .schnell-card__text {
    display: none;
  }

  /* Vorteile — kompakter */
  .vorteile-list {
    gap: var(--sp-4);
  }
  .vorteil-claim__text {
    display: none;
  }

  /* Ablauf — kompakter */
  .ablauf__text {
    font-size: 0.875rem;
  }

  /* Section header kompakter */
  .section__header {
    margin-bottom: var(--sp-5);
  }
  .section__title {
    font-size: 1.6rem;
  }
}
