/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --c-bg:      #ffffff;
  --c-bg2:     #f8f8fa;
  --c-bg3:     #fbfbfd;
  --c-card:    #ffffff;
  --c-txt:     #0a0a0c;
  --c-txt2:    #58585e;
  --c-txt3:    #8e8e93;
  --c-bdr:     #ececef;
  --c-bdr-strong: #d8d8dc;
  --c-acc:     #2563eb;
  --c-acc-2:   #1d4ed8;
  --c-acc-bg:  #eff6ff;
  --c-acc-bdr: #bfdbfe;
  --c-success: #16a34a;
  --c-success-bg: #f0fdf4;
  --c-success-bdr: #bbf7d0;
  --c-amber:   #f59e0b;
  --c-whatsapp: #25D366;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --shadow-rest:  0 1px 2px rgba(10,10,12,0.04), 0 4px 16px rgba(10,10,12,0.05);
  --shadow-hover: 0 4px 12px rgba(10,10,12,0.08), 0 16px 36px rgba(10,10,12,0.10);
  --shadow-deep:  0 12px 48px rgba(10,10,12,0.16);
  --r-pill: 9999px;
  --r-card: 16px;
  --r-card-lg: 20px;
  --r-input: 12px;
}

/* ─── Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-txt);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0; }

/* ─── Section label ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-acc);
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--c-txt);
  color: #fff;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--r-pill);
  border: none;
  text-decoration: none;
  transition: background .15s, transform .15s;
  cursor: pointer;
  line-height: 1;
}
@media (hover: hover) {
  .btn-primary:hover { background: #1f1f24; }
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--c-bg2);
  color: var(--c-txt);
  padding: 12px 22px;
  min-height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-bdr);
  text-decoration: none;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
@media (hover: hover) {
  .btn-secondary:hover { background: #efeff2; border-color: var(--c-bdr-strong); }
}
.btn-secondary:active { transform: scale(0.97); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--c-acc);
  color: #fff;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--r-pill);
  border: none;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  cursor: pointer;
  line-height: 1;
}
@media (hover: hover) {
  .btn-accent:hover { opacity: 0.88; }
}
.btn-accent:active { transform: scale(0.97); }

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  min-height: 48px;
  border: 2px solid var(--c-bdr);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--c-txt);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  line-height: 1;
}
@media (hover: hover) {
  .btn-outline-pill:hover {
    border-color: var(--c-acc);
    color: var(--c-acc);
    background: var(--c-acc-bg);
  }
}
.btn-outline-pill:active {
  border-color: var(--c-acc);
  color: var(--c-acc);
  background: var(--c-acc-bg);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--c-whatsapp);
  color: #fff;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform .15s, opacity .15s;
  line-height: 1;
}
@media (hover: hover) {
  .btn-whatsapp:hover { transform: translateY(-1px); opacity: 0.92; }
}
.btn-whatsapp:active { transform: scale(0.97); }

/* ─── Badge ─────────────────────────────────────── */
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-acc);
  background: var(--c-acc-bg);
  border: 1px solid var(--c-acc-bdr);
  border-radius: var(--r-pill);
  padding: 6px 16px;
}

/* ─── Typewriter cursor ─────────────────────────── */
.typewriter-cursor {
  display: inline-block;
  width: 4px;
  height: 0.72em;
  margin-left: 4px;
  vertical-align: baseline;
  transform: translateY(0.04em);
  border-radius: 2px;
  animation: caret-blink 1s steps(2, end) infinite;
}
@keyframes caret-blink {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ─── Scroll progress ───────────────────────────── */
.scroll-progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-acc), #7c3aed);
  transition: width .12s linear;
  z-index: 10;
}

/* ─── Navbar ────────────────────────────────────── */
.dp-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(236,236,239,0.7);
}
.dp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 28px);
  gap: 16px;
}
.dp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-txt);
  flex-shrink: 0;
}
.dp-brand__logo { height: 48px; width: auto; display: block; }
.dp-brand__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-acc);
  padding-left: 12px;
  border-left: 1px solid var(--c-bdr);
  line-height: 1.3;
}
.dp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.dp-nav-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-txt2);
  padding: 7px 11px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
@media (hover: hover) {
  .dp-nav-link:hover { color: var(--c-acc); background: var(--c-acc-bg); }
}
.dp-nav-link:active { color: var(--c-acc); background: var(--c-acc-bg); }
.dp-nav-link.is-active {
  color: var(--c-acc);
  background: var(--c-acc-bg);
  font-weight: 600;
}
.dp-nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-acc);
}
.dp-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dp-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-txt2);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
@media (hover: hover) {
  .dp-nav-phone:hover { color: var(--c-acc); }
}
.dp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--c-txt);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
@media (hover: hover) {
  .dp-nav-cta:hover { background: #1f1f24; }
}
.dp-nav-cta:active { transform: scale(0.97); }

/* Mobile menu button */
.dp-nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--c-bdr);
  border-radius: 10px;
  background: none;
  color: var(--c-txt);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
@media (hover: hover) {
  .dp-nav-menu-btn:hover { background: var(--c-bg2); }
}

/* Mobile drawer */
.dp-nav-drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--c-bdr);
  padding: 12px 16px 20px;
  gap: 4px;
}
.dp-nav-drawer.is-open { display: flex; }
.dp-nav-drawer .dp-nav-link {
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  width: 100%;
  justify-content: flex-start;
}
.dp-nav-drawer__sep {
  border: none;
  border-top: 1px solid var(--c-bdr);
  margin: 8px 0;
}
.dp-nav-drawer__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.dp-nav-drawer__ctas .dp-nav-cta,
.dp-nav-drawer__ctas .dp-nav-phone {
  justify-content: center;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  width: 100%;
  text-align: center;
}
.dp-nav-drawer__ctas .dp-nav-phone {
  background: var(--c-bg2);
  border: 1px solid var(--c-bdr);
}

/* ─── Hero ──────────────────────────────────────── */
.dp-hero {
  position: relative;
  background: #0f0f11;
  overflow: hidden;
}
.dp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #0f0f11;
}
.dp-hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.dp-hero__mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(37,99,235,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 60%, rgba(37,99,235,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 85% 70%, rgba(124,58,237,0.04) 0%, transparent 60%);
}
.dp-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 100%);
}
.dp-hero__content {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px,5vw,48px) clamp(56px, 8vw, 96px);
  text-align: center;
}
.dp-hero__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--c-txt);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 24px;
}
.dp-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 19px);
  color: var(--c-txt2);
  max-width: 520px;
  margin: 0 auto 12px;
  line-height: 1.65;
}
.dp-hero__price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-txt2);
  opacity: 0.7;
  margin: 0 auto 28px;
}
.dp-hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dp-hero__cta-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-txt2);
  opacity: 0.7;
  margin: 12px 0 0;
}
.dp-hero__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.dp-hero__contact a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-txt2);
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (hover: hover) {
  .dp-hero__contact a:hover { color: var(--c-txt); }
}
.dp-hero__contact a:active { color: var(--c-txt); }
.dp-hero__whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-success);
  text-decoration: none;
  background: var(--c-success-bg);
  border: 1px solid var(--c-success-bdr);
  border-radius: var(--r-pill);
  padding: 6px 14px;
}

/* ─── Hero dark-video text overrides ────────────── */
.dp-hero__heading {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.dp-hero__sub {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.dp-hero__cta-sub { color: rgba(255,255,255,0.65); opacity: 1; }
.dp-hero__price   { color: rgba(255,255,255,0.65); opacity: 1; }
.dp-hero__contact a { color: rgba(255,255,255,0.75); }
@media (hover: hover) {
  .dp-hero__contact a:hover { color: #fff; }
}
.dp-hero__contact a:active { color: #fff; }
.dp-hero [data-typewriter] { color: #5b9aff; }
.dp-hero .badge-accent {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.dp-hero .dp-hero__whatsapp-pill {
  background: rgba(22,163,74,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(22,163,74,0.45);
  color: #4ade80;
}
.dp-hero .btn-outline-pill {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (hover: hover) {
  .dp-hero .btn-outline-pill:hover {
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    background: rgba(255,255,255,0.15);
  }
}
.dp-hero .btn-outline-pill:active {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* ─── Vertrauen-Bar ─────────────────────────────── */
.dp-vertrauen {
  background: var(--c-bg3);
  border-top: 1px solid var(--c-bdr);
  border-bottom: 1px solid var(--c-bdr);
  padding: 0;
  overflow: hidden;
}
.dp-vertrauen__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 30s linear infinite;
  padding: 18px 0;
}
@media (hover: hover) {
  .dp-vertrauen__track:hover { animation-play-state: paused; }
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.dp-vertrauen__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-txt);
  padding: 0 28px;
  white-space: nowrap;
  border-right: 1px solid var(--c-bdr);
}
.dp-vertrauen__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-acc-bg);
  border: 1px solid var(--c-acc-bdr);
  color: var(--c-acc);
  flex-shrink: 0;
}

/* ─── Process Steps ─────────────────────────────── */
.dp-process {
  background: var(--c-bg);
  border-top: 1px solid var(--c-bdr);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px);
}
.dp-process__inner { max-width: 1100px; margin: 0 auto; }
.dp-process__head { text-align: center; margin-bottom: 56px; }
.dp-process__head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--c-txt);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 12px 0 0;
}
.dp-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  position: relative;
}
.dp-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.dp-process__step + .dp-process__step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(-50% + 32px);
  right: calc(50% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-bdr), var(--c-acc-bdr), var(--c-bdr));
}
.dp-process__bubble {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-acc-bg);
  border: 2px solid var(--c-acc-bdr);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.dp-process__num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-acc);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.dp-process__step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-txt);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.dp-process__step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-txt2);
  line-height: 1.65;
  max-width: 260px;
  margin: 0;
}

/* ─── Text Reveal ───────────────────────────────── */
.dp-textreveal {
  background: var(--c-bg);
  border-top: 1px solid var(--c-bdr);
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 60px);
  text-align: center;
}
.dp-textreveal__msg {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 900px;
  margin: 18px auto 16px;
  color: var(--c-txt);
}
.dp-textreveal__msg .word {
  display: inline-block;
  margin-right: 0.25em;
  transition: color .4s ease;
}
.dp-textreveal__sub {
  font-family: var(--font-body);
  color: var(--c-txt2);
  font-size: 16px;
}

/* ─── Produkte Header ───────────────────────────── */
.dp-produkte-head {
  background: var(--c-bg);
  border-top: 1px solid var(--c-bdr);
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}
.dp-produkte-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.dp-produkte-head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  color: var(--c-txt);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 12px auto 14px;
  max-width: 640px;
}
.dp-produkte-head h2 .acc { color: var(--c-acc); }
.dp-produkte-head p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-txt2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ─── Produkt Preview Grid ──────────────────────── */
.dp-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.dp-preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-bg2);
  box-shadow: var(--shadow-rest);
  text-decoration: none;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .dp-preview-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover);
  }
}
.dp-preview-card:active { box-shadow: var(--shadow-hover); }
.dp-preview-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
@media (hover: hover) {
  .dp-preview-card:hover img { transform: scale(1.06); }
}
.dp-preview-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
}
.dp-preview-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.dp-preview-card__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.dp-preview-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .dp-preview-section__inner { overflow: visible; }
  .dp-preview-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 clamp(20px, 5vw, 60px) 4px;
    max-width: none;
  }
  .dp-preview-grid::-webkit-scrollbar { display: none; }
  .dp-preview-grid .dp-preview-card {
    flex: 0 0 clamp(160px, 38vw, 240px);
    min-width: 0;
    scroll-snap-align: start;
  }
  .dp-preview-grid .dp-preview-card:nth-child(4),
  .dp-preview-grid .dp-preview-card:nth-child(5) { display: block; }
}
@media (max-width: 600px) {
  .dp-preview-grid {
    gap: 8px;
    padding: 0 clamp(16px, 5vw, 24px) 4px;
  }
  .dp-preview-grid .dp-preview-card {
    flex: 0 0 clamp(140px, 52vw, 200px);
  }
  .dp-preview-grid .dp-preview-card:nth-child(3) { display: block; }
}

.dp-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.dp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-txt);
  background: var(--c-card);
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
@media (hover: hover) {
  .dp-chip:hover {
    background: var(--c-acc-bg);
    border-color: var(--c-acc-bdr);
    color: var(--c-acc);
    transform: translateY(-1px);
  }
}
.dp-chip:active {
  background: var(--c-acc-bg);
  border-color: var(--c-acc-bdr);
  color: var(--c-acc);
}

/* ─── Product Sections — Mobile First ───────────── */
.dp-product {
  position: relative;
  background: var(--c-bg);
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
  overflow: visible;
}
.dp-product__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── Mobile layout ── */
.dp-product__layout {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: none; /* versteckt auf Mobile */
}

/* Mobile sandwich wrapper */
.dp-product__mobile-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Sticky header: Titel + Beschreibung */
.dp-product__mob-header {
  position: sticky;
  top: 72px;
  z-index: 3;
  padding: 20px clamp(20px, 5vw, 28px) 14px;
  border-bottom: 1px solid var(--c-bdr);
}

/* Scrollbare Bilder in der Mitte */
.dp-product__mob-images {
  position: relative;
  z-index: 1;
}

/* Sticky CTA footer */
.dp-product__mob-footer {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 14px clamp(20px, 5vw, 28px);
  border-top: 1px solid var(--c-bdr);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

/* Text: normal flow auf Mobile — kein sticky, kein overlap */
.dp-product__text-sticky {
  display: flex;
  flex-direction: column;
  padding: 28px clamp(20px, 5vw, 28px) 20px;
  position: relative;
  z-index: 1;
}

.dp-product__text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--c-txt);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 8px 0 12px;
}
.dp-product__text p {
  font-family: var(--font-body);
  font-size: clamp(14px, 3.5vw, 16px);
  color: var(--c-txt2);
  line-height: 1.7;
  margin: 0 0 16px;
}
.dp-product__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.dp-product__feature { display: flex; gap: 12px; align-items: flex-start; }
.dp-product__feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dp-product__feature-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-txt);
  margin: 2px 0 2px;
}
.dp-product__feature-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-txt2);
  line-height: 1.5;
}

/* Images col: auf Mobile vertikale sticky-scroll Kolonne */
.dp-product__images-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Sticky card — Mobile: füllt Raum zwischen Header und Footer */
.dp-product__sticky-card {
  position: sticky;
  top: calc(72px + var(--mob-header-h, 160px));
  height: calc(100svh - 72px - var(--mob-header-h, 160px) - var(--mob-footer-h, 72px));
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(16px, 5vw, 24px);
}
.dp-product__sticky-card-inner {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform-origin: center;
}
.dp-product__sticky-card-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

/* ── Desktop: 2-column side-by-side ── */
@media (min-width: 769px) {
  .dp-product__mobile-wrap { display: none; }
  .dp-product__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(28px, 5vw, 60px);
    padding: 0 clamp(20px, 5vw, 60px);
    align-items: start;
  }
  .dp-product__layout.is-reverse {
    direction: rtl;
  }
  .dp-product__layout.is-reverse > * {
    direction: ltr;
  }
  .dp-product__text-sticky {
    position: sticky;
    top: 72px;
    height: calc(100svh - 72px);
    justify-content: center;
    padding: 32px 0;
    background: transparent !important;
    align-self: start;
  }
  .dp-product__text h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin: 12px 0 14px;
  }
  .dp-product__text p {
    font-size: clamp(14px, 1.5vw, 16px);
    margin: 0 0 28px;
    max-width: 460px;
  }
  .dp-product__features { gap: 16px; margin-bottom: 32px; }
  .dp-product__feature-icon { width: 42px; height: 42px; border-radius: 12px; font-size: 18px; }
  .dp-product__feature-label { font-size: 14px; }
  .dp-product__feature-desc { font-size: 13px; }

  /* Desktop: Images-Col wieder vertikal + sticky cards */
  .dp-product__images-col {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 0;
    padding: 0;
  }
  .dp-product__sticky-card {
    flex: none;
    max-width: none;
    scroll-snap-align: none;
    position: sticky;
    top: 72px;
    height: calc(100svh - 72px);
    min-height: unset;
    max-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 32px);
  }
  .dp-product__sticky-card-inner {
    aspect-ratio: 4/3;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.20), 0 2px 12px rgba(0,0,0,0.10);
  }
  .dp-product__blob { width: 400px; height: 400px; }
}

/* ─── USPs ──────────────────────────────────────── */
.dp-usps {
  background: var(--c-bg2);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px);
}
.dp-usps__inner { max-width: 1100px; margin: 0 auto; }
.dp-usps__head { margin-bottom: 32px; }
.dp-usps__head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--c-txt);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 12px 0 0;
  max-width: 600px;
}
.dp-usps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dp-usp {
  background: #fff;
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow-rest);
  transition: transform .25s, box-shadow .25s;
}
@media (hover: hover) {
  .dp-usp:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
}
.dp-usp:active { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.dp-usp__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--c-acc-bg);
  border: 1px solid var(--c-acc-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-acc);
  margin-bottom: 18px;
}
.dp-usp h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-txt);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.dp-usp p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-txt2);
  line-height: 1.6;
  margin: 0;
}

/* ─── Stats ─────────────────────────────────────── */
.dp-stats {
  position: relative;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px);
  background: var(--c-bg2);
  border-top: 1px solid var(--c-bdr);
  border-bottom: 1px solid var(--c-bdr);
  overflow: hidden;
}
.dp-stats__noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
}
.dp-stats__inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; }
.dp-stats__card {
  background: var(--c-bg);
  border: 1px solid var(--c-bdr);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 64px);
}
.dp-stats__label {
  display: block;
  text-align: center;
  color: var(--c-acc);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.dp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.dp-stat { text-align: center; }
.dp-stat__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-txt);
  font-variant-numeric: tabular-nums;
}
.dp-stat__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-txt2);
  margin-top: 10px;
}

/* ─── Bewertungen ───────────────────────────────── */
.dp-bewertungen {
  background: var(--c-bg);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px);
}
.dp-bewertungen__inner { max-width: 1100px; margin: 0 auto; }
.dp-bewertungen__head { margin-bottom: 32px; }
.dp-bewertungen__head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--c-txt);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 12px 0 0;
}
.dp-bewertungen__head h2 .acc { color: var(--c-acc); }
.dp-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.dp-review {
  background: #fff;
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-rest);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.dp-review::before {
  content: '"';
  position: absolute;
  top: -22px; right: 12px;
  font-family: var(--font-heading);
  font-size: 130px;
  font-weight: 800;
  color: var(--c-acc-bg);
  line-height: 1;
  pointer-events: none;
}
@media (hover: hover) {
  .dp-review:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
}
.dp-review:active { transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.dp-review__stars { display: flex; gap: 3px; color: var(--c-amber); position: relative; z-index: 1; }
.dp-review__quote {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--c-txt);
  line-height: 1.7;
  flex: 1;
  margin: 0;
  position: relative; z-index: 1;
}
.dp-review__author {
  border-top: 1px solid var(--c-bdr);
  padding-top: 14px;
  position: relative; z-index: 1;
}
.dp-review__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-txt);
  letter-spacing: -0.01em;
}
.dp-review__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-txt2);
  margin-top: 3px;
}
.dp-bewertungen__center {
  display: flex; justify-content: center; margin-bottom: 40px;
}
.dp-bewertungen__cta {
  background: var(--c-acc-bg);
  border: 1px solid var(--c-acc-bdr);
  border-radius: var(--r-card-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.dp-bewertungen__cta h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--c-txt);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}
.dp-bewertungen__cta p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-txt2);
  max-width: 380px;
  line-height: 1.6;
  margin: 0;
}

/* ─── Logo Bar ──────────────────────────────────── */
.dp-logobar {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-bdr);
  border-bottom: 1px solid var(--c-bdr);
  padding: 36px clamp(20px, 5vw, 60px);
  text-align: center;
}
.dp-logobar__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-txt3);
  margin-bottom: 22px;
}
.dp-logobar__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.dp-logobar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-txt2);
  opacity: 0.75;
  transition: opacity .15s;
}
@media (hover: hover) {
  .dp-logobar__item:hover { opacity: 1; }
}
.dp-logobar__emoji { font-size: 18px; }

/* ─── FAQ ───────────────────────────────────────── */
.dp-faq {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-bdr);
}
.dp-faq__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 48px);
}
.dp-faq__head { margin-bottom: clamp(36px, 5vw, 52px); }
.dp-faq__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-txt);
  margin: 14px 0 0;
}
.dp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp-faq__item {
  background: var(--c-card);
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
@media (hover: hover) {
  .dp-faq__item:hover { border-color: var(--c-bdr-strong); box-shadow: var(--shadow-rest); }
}
.dp-faq__item[open] { border-color: var(--c-acc-bdr); }
.dp-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  list-style: none;
}
.dp-faq__btn::-webkit-details-marker { display: none; }
.dp-faq__q {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-txt);
  line-height: 1.45;
}
.dp-faq__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-bg2);
  border: 1px solid var(--c-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-txt2);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.dp-faq__item[open] .dp-faq__toggle {
  background: var(--c-acc);
  border-color: var(--c-acc);
  color: #fff;
  transform: rotate(45deg);
}
.dp-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.dp-faq__item[open] .dp-faq__a { max-height: 400px; }
.dp-faq__a__inner {
  padding: 0 24px 20px;
}
.dp-faq__a p {
  color: var(--c-txt2);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.dp-faq__cta {
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--r-card);
  background: var(--c-card);
  border: 1px solid var(--c-bdr);
  text-align: center;
}
.dp-faq__cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--c-txt);
  margin: 0 0 10px;
}
.dp-faq__cta p {
  color: var(--c-txt2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 28px;
}
.dp-faq__cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact form ──────────────────────────────── */
.dp-anfrage {
  background: var(--c-bg2);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--c-bdr);
}
.dp-anfrage__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.dp-anfrage h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--c-txt);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 12px 0 14px;
}
.dp-anfrage__sub {
  font-family: var(--font-body);
  color: var(--c-txt2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 520px;
}
.dp-anfrage__form {
  background: #fff;
  border: 1px solid var(--c-bdr);
  border-radius: 20px;
  padding: clamp(20px, 3.5vw, 36px);
  box-shadow: var(--shadow-rest);
  text-align: left;
}
.dp-anfrage__chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.dp-anfrage__chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--c-txt2);
  cursor: pointer;
  transition: all .15s;
}
.dp-anfrage__chip.is-active {
  background: var(--c-acc);
  border-color: var(--c-acc);
  color: #fff;
}
.dp-anfrage__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.dp-anfrage textarea, .dp-anfrage input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-txt);
  background: var(--c-bg2);
  border: 1px solid var(--c-bdr);
  border-radius: var(--r-input);
  padding: 14px 16px;
  outline: none;
  transition: border-color .15s, background .15s;
  display: block;
}
.dp-anfrage textarea { min-height: 110px; resize: vertical; line-height: 1.55; margin-bottom: 12px; }
.dp-anfrage textarea:focus, .dp-anfrage input:focus {
  border-color: var(--c-acc);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.dp-anfrage__submit-row {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 6px;
}
.dp-anfrage__hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-success);
  margin-left: auto;
  white-space: nowrap;
}
.dp-anfrage__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.dp-anfrage__field { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.dp-anfrage input.is-invalid,
.dp-anfrage textarea.is-invalid {
  border-color: #dc2626;
  background: #fff5f5;
}
.dp-anfrage input.is-invalid:focus,
.dp-anfrage textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}
.dp-anfrage__error {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #dc2626;
  padding-left: 4px;
}
.dp-anfrage__status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--r-input);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
}
.dp-anfrage__status[data-kind="error"] {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.dp-anfrage__status[data-kind="success"] {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
button[data-submit][disabled] { opacity: .65; cursor: progress; }

/* ─── CTA Final ─────────────────────────────────── */
.dp-cta-final {
  position: relative;
  background: var(--c-bg);
  padding: clamp(64px, 9vw, 112px) clamp(24px, 5vw, 60px);
  border-top: 1px solid var(--c-bdr);
}
.dp-cta-final__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dp-cta-final__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-acc);
  margin-bottom: 20px;
}
.dp-cta-final h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--c-txt);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.dp-cta-final p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-txt2);
  line-height: 1.65;
  margin: 20px 0 32px;
}
.dp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1 / 1;
}
.dp-gallery > div {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--c-bg2);
  box-shadow: var(--shadow-rest);
  transition: transform .4s ease;
}
@media (hover: hover) {
  .dp-gallery > div:hover { transform: scale(1.03); }
}
.dp-gallery > div:active { transform: scale(1.02); }
.dp-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Footer ────────────────────────────────────── */
.dp-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-bdr);
  padding: 28px clamp(20px, 5vw, 48px);
}
.dp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.dp-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-txt2);
}
.dp-footer__links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.dp-footer__link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-txt2);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (hover: hover) {
  .dp-footer__link:hover { color: var(--c-txt); }
}
.dp-footer__link:active { color: var(--c-txt); }

/* ─── Floating WhatsApp ─────────────────────────── */
.dp-whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--c-txt);
  padding: 8px 20px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--c-bdr);
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 12px 32px -8px rgba(15,23,42,0.18),
    0 24px 64px -16px rgba(37,211,102,0.25);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.dp-whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: transform .3s ease, box-shadow .2s ease, border-color .2s ease, opacity .3s ease;
}
.dp-whatsapp-float__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--c-whatsapp);
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
}
.dp-whatsapp-float__label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  padding-right: 4px;
}
.dp-whatsapp-float__label small {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-txt2);
  letter-spacing: 0;
  margin-top: 2px;
}
@media (hover: hover) {
  .dp-whatsapp-float:hover {
    transform: translateY(-2px);
    border-color: rgba(37,211,102,0.4);
    box-shadow:
      0 1px 2px rgba(15,23,42,0.04),
      0 16px 40px -10px rgba(15,23,42,0.22),
      0 28px 72px -18px rgba(37,211,102,0.4);
  }
}

/* ─── Scroll-driven fade-in ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   MOBILE BREAKPOINTS
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .dp-brand__tag { display: none; }
  .dp-nav-links { display: none !important; }
  .dp-nav-phone { display: none !important; }
  .dp-nav-menu-btn { display: flex !important; }
}
@media (max-width: 900px) {
  .dp-process__grid { grid-template-columns: 1fr; gap: 32px; }
  .dp-process__step + .dp-process__step::before { display: none; }
  .dp-usps__grid { grid-template-columns: repeat(2, 1fr); }
  .dp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .dp-faq__btn { padding: 18px 20px; }
  .dp-faq__a__inner { padding: 0 20px 18px; }
  .dp-cta-final__inner { grid-template-columns: 1fr; gap: 40px; }
  .dp-gallery { aspect-ratio: auto; }
}
/* Kein product-grid Override nötig — dp-product__layout ist Mobile First */
@media (max-width: 768px) {
  .dp-anfrage__row { grid-template-columns: 1fr; }
  .dp-anfrage__submit-row { flex-direction: column; align-items: stretch; }
  .dp-anfrage__hint { margin-left: 0; text-align: center; }
  .dp-hero__cta-row .btn-outline-pill { display: none; }
  .dp-hero__video { object-position: center 20%; }
  .dp-hero__video-overlay {
    background:
      radial-gradient(ellipse 90% 60% at 50% 40%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  }
}
@media (max-width: 600px) {
  .dp-usps__grid { grid-template-columns: 1fr; }
  .dp-anfrage__row { grid-template-columns: 1fr; }
  .dp-whatsapp-float__label { display: none; }
  .dp-whatsapp-float { padding: 6px; border-radius: 50%; bottom: 20px; right: 20px; }
  .dp-whatsapp-float__icon { width: 52px; height: 52px; }
  .dp-vertrauen__item { font-size: 13px; padding: 0 18px; }
  .dp-faq__cta-row { flex-direction: column; }
  .dp-faq__cta-row .btn-primary,
  .dp-faq__cta-row .btn-whatsapp { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .dp-hero__heading { font-size: clamp(2.4rem, 12vw, 3rem); }
  .dp-hero__contact { gap: 12px; }
}

/* ─── 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;
  }
  /* Marquee läuft weiter, nur langsamer – bleibt für Lesbarkeit auf Mobile nötig */
  .dp-vertrauen__track {
    animation-duration: 60s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ─── Print stylesheet ───────────────────────────── */
@media print {
  .dp-nav-wrap, .dp-whatsapp-float, .scroll-progress-bar { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .dp-hero, .dp-product, .dp-process, .dp-faq, .dp-anfrage { page-break-inside: avoid; }
}

/* ─── Legal pages (Impressum/Datenschutz/AGB) ────── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; font-family: var(--font-body); color: var(--c-txt); line-height: 1.7; }
.legal-page h1 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: -0.03em; margin: 0 0 16px; }
.legal-page h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; margin: 40px 0 12px; }
.legal-page h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; margin: 24px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--c-txt2); }
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--c-acc); text-decoration: underline; text-underline-offset: 3px; }
.legal-page address { font-style: normal; }
.legal-page__back { display: inline-flex; align-items: center; gap: 6px; color: var(--c-txt2); text-decoration: none; font-size: 14px; margin-bottom: 24px; }
@media (hover: hover) {
  .legal-page__back:hover { color: var(--c-acc); }
}
.legal-page__back:active { color: var(--c-acc); }

